diff options
| author | Barry Warsaw | 2009-12-04 22:51:04 -0500 |
|---|---|---|
| committer | Barry Warsaw | 2009-12-04 22:51:04 -0500 |
| commit | fb940c1c0362a30d42abb412eece9b3fd1049584 (patch) | |
| tree | 234baab6e5e08002c29d057188e3a655b94f8883 /src/mailman/docs | |
| parent | 3915339314239e281a204c7adea3e3977bb6c679 (diff) | |
| download | mailman-fb940c1c0362a30d42abb412eece9b3fd1049584.tar.gz mailman-fb940c1c0362a30d42abb412eece9b3fd1049584.tar.zst mailman-fb940c1c0362a30d42abb412eece9b3fd1049584.zip | |
The delivery agent requires that the message object have a .original_size
attribute. Add this for UserNotifications.
Diffstat (limited to 'src/mailman/docs')
| -rw-r--r-- | src/mailman/docs/registration.txt | 1 | ||||
| -rw-r--r-- | src/mailman/docs/requests.txt | 9 |
2 files changed, 10 insertions, 0 deletions
diff --git a/src/mailman/docs/registration.txt b/src/mailman/docs/registration.txt index 6b1ff0c18..a66544fc7 100644 --- a/src/mailman/docs/registration.txt +++ b/src/mailman/docs/registration.txt @@ -158,6 +158,7 @@ message is sent to the user in order to verify the registered address. >>> dump_msgdata(qdata) _parsemsg : False nodecorate : True + original_size : ... recipients : [u'aperson@example.com'] reduced_list_headers: True version : 3 diff --git a/src/mailman/docs/requests.txt b/src/mailman/docs/requests.txt index 5dcfa922a..1bf981859 100644 --- a/src/mailman/docs/requests.txt +++ b/src/mailman/docs/requests.txt @@ -299,6 +299,7 @@ The message can be rejected, meaning it is bounced back to the sender. _parsemsg : False listname : alist@example.com nodecorate : True + original_size : ... recipients : [u'aperson@example.org'] reduced_list_headers: True version : 3 @@ -404,6 +405,7 @@ moderators. _parsemsg : False listname : alist@example.com nodecorate : True + original_size : ... recipients : [u'zperson@example.com'] reduced_list_headers: True version : 3 @@ -474,6 +476,7 @@ queue when the message is held. _parsemsg : False listname : alist@example.com nodecorate : True + original_size : ... recipients : [u'alist-owner@example.com'] reduced_list_headers: True tomoderators : True @@ -529,6 +532,7 @@ subscriber. _parsemsg : False listname : alist@example.com nodecorate : True + original_size : ... recipients : [u'cperson@example.org'] reduced_list_headers: True version : 3 @@ -573,6 +577,7 @@ subscription and the fact that they may need to approve it. _parsemsg : False listname : alist@example.com nodecorate : True + original_size : ... recipients : [u'alist-owner@example.com'] reduced_list_headers: True tomoderators : True @@ -646,6 +651,7 @@ The welcome message is sent to the person who just subscribed. _parsemsg : False listname : alist@example.com nodecorate : True + original_size : ... recipients : [u'fperson@example.org'] reduced_list_headers: True verp : False @@ -752,6 +758,7 @@ unsubscription holds can send the list's moderators an immediate notification. _parsemsg : False listname : alist@example.com nodecorate : True + original_size : ... recipients : [u'alist-owner@example.com'] reduced_list_headers: True tomoderators : True @@ -810,6 +817,7 @@ and the person remains a member of the mailing list. _parsemsg : False listname : alist@example.com nodecorate : True + original_size : ... recipients : [u'hperson@example.com'] reduced_list_headers: True version : 3 @@ -865,6 +873,7 @@ The goodbye message... _parsemsg : False listname : alist@example.com nodecorate : True + original_size : ... recipients : [u'gperson@example.com'] reduced_list_headers: True verp : False |
