diff options
| author | Barry Warsaw | 2009-02-04 14:47:25 -0500 |
|---|---|---|
| committer | Barry Warsaw | 2009-02-04 14:47:25 -0500 |
| commit | d0ee12c62f0a2df437d6cd25ddf50be485a32248 (patch) | |
| tree | 39f5c2050f7de8b3442d51224f8d1fdedc535d83 | |
| parent | 6b606152899eed65933d5c54def37a07608225a6 (diff) | |
| download | mailman-d0ee12c62f0a2df437d6cd25ddf50be485a32248.tar.gz mailman-d0ee12c62f0a2df437d6cd25ddf50be485a32248.tar.zst mailman-d0ee12c62f0a2df437d6cd25ddf50be485a32248.zip | |
| -rw-r--r-- | docs/ALPHA.txt | 2 | ||||
| -rw-r--r-- | src/mailman/queue/docs/digester.txt | 18 | ||||
| -rw-r--r-- | src/mailman/queue/docs/incoming.txt | 16 |
3 files changed, 13 insertions, 23 deletions
diff --git a/docs/ALPHA.txt b/docs/ALPHA.txt index 1cfefb012..dec6a01a7 100644 --- a/docs/ALPHA.txt +++ b/docs/ALPHA.txt @@ -65,7 +65,7 @@ USING THE ALPHA ini-style configuration system. Eventually all configuration will be converted to lazr.config. - For now though, start by looking through mailman/config/schema.cfg. + For now though, start by looking through src/mailman/config/schema.cfg. Create a file for your overrides; it can be called anything and can live anywhere, but I like to call it 'mailman.cfg'. For any value in schema.cfg you want to override, just add a section header (the diff --git a/src/mailman/queue/docs/digester.txt b/src/mailman/queue/docs/digester.txt index 487549e90..c9aa79a06 100644 --- a/src/mailman/queue/docs/digester.txt +++ b/src/mailman/queue/docs/digester.txt @@ -416,24 +416,6 @@ French and Japanese characters. Content-Transfer-Encoding: base64 <BLANKLINE> RW52b... - Y29tC... - Ly9sa... - dXJya... - cyBvd... - dmV6I... - dGVzd... - ZGUgY... - Zmlxd... - ZXMgZ... - LS0tL... - LS0tL... - c3RAZ... - d2RvZ... - LWpwC... - X19fX... - dEBle... - cGxlL... - KioqK... <BLANKLINE> The content can be decoded to see the actual digest text. diff --git a/src/mailman/queue/docs/incoming.txt b/src/mailman/queue/docs/incoming.txt index deb340e71..d150cf3cf 100644 --- a/src/mailman/queue/docs/incoming.txt +++ b/src/mailman/queue/docs/incoming.txt @@ -69,8 +69,12 @@ And now the message is in the pipeline queue. <BLANKLINE> First post! <BLANKLINE> - >>> sorted(item.msgdata.items()) - [...('envsender', u'noreply@example.com')...('tolist', True)...] + >>> dump_msgdata(item.msgdata) + _parsemsg : False + envsender : noreply@example.com + ... + tolist : True + ... Held messages @@ -190,8 +194,12 @@ tests above. <BLANKLINE> --===============... - >>> sorted(item.msgdata.items()) - [...('recips', [u'aperson@example.com'])...] + >>> dump_msgdata(item.msgdata) + _parsemsg : False + ... + recips : [u'aperson@example.com'] + ... + >>> fp.seek(file_pos) >>> print 'LOG:', fp.read() LOG: ... REJECT: <first> |
