diff options
Diffstat (limited to 'src/mailman/queue/docs')
| -rw-r--r-- | src/mailman/queue/docs/digester.txt | 18 | ||||
| -rw-r--r-- | src/mailman/queue/docs/incoming.txt | 16 |
2 files changed, 12 insertions, 22 deletions
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> |
