diff options
| author | tkikuchi | 2006-12-03 12:38:59 +0000 |
|---|---|---|
| committer | tkikuchi | 2006-12-03 12:38:59 +0000 |
| commit | c163d2fedf7abacf1d743d14255f41c706d81a92 (patch) | |
| tree | 6a496190402259df116f6da2922c5c96ce26e871 /Mailman/Queue | |
| parent | 3bdd0dc5d86a9d64fd83edf1f66d342f69efa28d (diff) | |
| download | mailman-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.py | 1 |
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]) |
