summaryrefslogtreecommitdiff
path: root/Mailman/Queue
diff options
context:
space:
mode:
authortkikuchi2006-12-03 12:38:59 +0000
committertkikuchi2006-12-03 12:38:59 +0000
commitc163d2fedf7abacf1d743d14255f41c706d81a92 (patch)
tree6a496190402259df116f6da2922c5c96ce26e871 /Mailman/Queue
parent3bdd0dc5d86a9d64fd83edf1f66d342f69efa28d (diff)
downloadmailman-c163d2fedf7abacf1d743d14255f41c706d81a92.tar.gz
mailman-c163d2fedf7abacf1d743d14255f41c706d81a92.tar.zst
mailman-c163d2fedf7abacf1d743d14255f41c706d81a92.zip
Support for VERP and personalization.
Diffstat (limited to 'Mailman/Queue')
-rw-r--r--Mailman/Queue/LMTPRunner.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/Mailman/Queue/LMTPRunner.py b/Mailman/Queue/LMTPRunner.py
index 3e6e6f46b..d7a2617a2 100644
--- a/Mailman/Queue/LMTPRunner.py
+++ b/Mailman/Queue/LMTPRunner.py
@@ -77,6 +77,7 @@ smtpd.__version__ = 'Python LMTP queue runner 1.0'
def getlistq(address):
localpart, domain = address.split('@', 1)
+ localpart = localpart.split(config.VERP_DELIMITER, 1)[0]
l = localpart.split(DASH)
if l[-1] in subqnames:
listname = DASH.join(l[:-1])