summaryrefslogtreecommitdiff
path: root/Mailman/Handlers/ToOutgoing.py
diff options
context:
space:
mode:
Diffstat (limited to 'Mailman/Handlers/ToOutgoing.py')
-rw-r--r--Mailman/Handlers/ToOutgoing.py3
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: