diff options
| author | Barry Warsaw | 2009-02-07 23:10:55 -0500 |
|---|---|---|
| committer | Barry Warsaw | 2009-02-07 23:10:55 -0500 |
| commit | 4c6c95a847f440242e9133a39f0b96a5d7a9d4e3 (patch) | |
| tree | 55bc2107f49a918e340a9a4ce54ec8e44ba41371 /src/mailman/queue | |
| parent | 6b606152899eed65933d5c54def37a07608225a6 (diff) | |
| download | mailman-4c6c95a847f440242e9133a39f0b96a5d7a9d4e3.tar.gz mailman-4c6c95a847f440242e9133a39f0b96a5d7a9d4e3.tar.zst mailman-4c6c95a847f440242e9133a39f0b96a5d7a9d4e3.zip | |
Remove the Mailman.Mailbox module; use the standard Python mailbox module.
Diffstat (limited to 'src/mailman/queue')
| -rw-r--r-- | src/mailman/queue/docs/incoming.txt | 16 |
1 files changed, 12 insertions, 4 deletions
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> |
