Attachment 'mpo_lmtp_patch.txt'
Download 1 # lmtp.py patch
2
3 --- git/mailman/src/mailman/runners/lmtp.py 2016-06-05 16:58:06.255217017 -0400
4 +++ mailman-bundler/venv-3.4/lib/python3.4/site-packages/mailman-3.1.0-py3.4.egg/mailman/runners/lmtp.py 2016-06-21 00:47:29.497817768 -0400
5 @@ -118,6 +118,9 @@
6 subaddress may be None if this is the list's posting address.
7 """
8 localpart, domain = address.split('@', 1)
9 + # Kludge for x.python.org <-> python.org
10 + if domain == 'x.python.org':
11 + domain = 'python.org'
12 localpart = localpart.split(config.mta.verp_delimiter, 1)[0]
13 parts = localpart.split(DASH)
14 if parts[-1] in SUBADDRESS_NAMES:
Attached Files
To refer to attachments on a page, use attachment:filename, as shown below in the list of files. Do NOT use the URL of the [get] link, since this is subject to change and can break easily.You are not allowed to attach a file to this page.