summaryrefslogtreecommitdiff
path: root/src/mailman/queue/docs/outgoing.txt
diff options
context:
space:
mode:
authorBarry Warsaw2009-07-18 22:31:45 -0400
committerBarry Warsaw2009-07-18 22:31:45 -0400
commitd9ad19e86ff658a74870fb488cd74e5002b63bc3 (patch)
tree29a7e53c290a95d6280772d6aa52a8b160649596 /src/mailman/queue/docs/outgoing.txt
parent422a6757e6aafbd12c220aa8dfdc33f8c377718c (diff)
downloadmailman-d9ad19e86ff658a74870fb488cd74e5002b63bc3.tar.gz
mailman-d9ad19e86ff658a74870fb488cd74e5002b63bc3.tar.zst
mailman-d9ad19e86ff658a74870fb488cd74e5002b63bc3.zip
De-u-literal-ify our doctests.
Diffstat (limited to '')
-rw-r--r--src/mailman/queue/docs/outgoing.txt15
1 files changed, 8 insertions, 7 deletions
diff --git a/src/mailman/queue/docs/outgoing.txt b/src/mailman/queue/docs/outgoing.txt
index 1c9d89041..b8cf25033 100644
--- a/src/mailman/queue/docs/outgoing.txt
+++ b/src/mailman/queue/docs/outgoing.txt
@@ -1,3 +1,4 @@
+=====================
Outgoing queue runner
=====================
@@ -11,16 +12,16 @@ recipient set will be batched, whether messages will be personalized and
VERP'd, etc. The outgoing runner doesn't itself support retrying but it can
move messages to the 'retry queue' for handling delivery failures.
- >>> mlist = create_list(u'test@example.com')
+ >>> mlist = create_list('test@example.com')
>>> from mailman.app.membership import add_member
>>> from mailman.interfaces.member import DeliveryMode
- >>> add_member(mlist, u'aperson@example.com', u'Anne Person',
- ... u'password', DeliveryMode.regular, u'en')
- >>> add_member(mlist, u'bperson@example.com', u'Bart Person',
- ... u'password', DeliveryMode.regular, u'en')
- >>> add_member(mlist, u'cperson@example.com', u'Cris Person',
- ... u'password', DeliveryMode.regular, u'en')
+ >>> add_member(mlist, 'aperson@example.com', 'Anne Person',
+ ... 'password', DeliveryMode.regular, 'en')
+ >>> add_member(mlist, 'bperson@example.com', 'Bart Person',
+ ... 'password', DeliveryMode.regular, 'en')
+ >>> add_member(mlist, 'cperson@example.com', 'Cris Person',
+ ... 'password', DeliveryMode.regular, 'en')
By setting the mailing list to personalize messages, each recipient will get a
unique copy of the message, with certain headers tailored for that recipient.