diff options
| author | Barry Warsaw | 2007-10-10 00:16:12 -0400 |
|---|---|---|
| committer | Barry Warsaw | 2007-10-10 00:16:12 -0400 |
| commit | 15f9e73fdb96a145632e5916cc0073472c014c99 (patch) | |
| tree | d5bf1b81d4945e20586d17a5bd2002c8ce6d986c /Mailman/Handlers/ToOutgoing.py | |
| parent | 28f41bc768390f11cf817534cca67a1683f235a7 (diff) | |
| download | mailman-15f9e73fdb96a145632e5916cc0073472c014c99.tar.gz mailman-15f9e73fdb96a145632e5916cc0073472c014c99.tar.zst mailman-15f9e73fdb96a145632e5916cc0073472c014c99.zip | |
Diffstat (limited to 'Mailman/Handlers/ToOutgoing.py')
| -rw-r--r-- | Mailman/Handlers/ToOutgoing.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Mailman/Handlers/ToOutgoing.py b/Mailman/Handlers/ToOutgoing.py index 15ceb8311..9c8650a98 100644 --- a/Mailman/Handlers/ToOutgoing.py +++ b/Mailman/Handlers/ToOutgoing.py @@ -23,6 +23,7 @@ recipient should just be placed in the out queue directly. """ from Mailman.configuration import config +from Mailman.interfaces import Personalization from Mailman.queue import Switchboard @@ -39,7 +40,7 @@ def process(mlist, msg, msgdata): # VERP_PASSWORD_REMINDERS. Preserve any existing verp flag. if 'verp' in msgdata: pass - elif mlist.personalize: + elif mlist.personalize <> Personalization.none: if config.VERP_PERSONALIZED_DELIVERIES: msgdata['verp'] = True elif interval == 0: |
