diff options
author | Mark Sapiro <mark@msapiro.net> | 2019-06-05 16:39:30 -0700 |
---|---|---|
committer | Mark Sapiro <mark@msapiro.net> | 2019-06-05 16:39:30 -0700 |
commit | 9c512c07b877fe8c218295c9515c32a2cb4c544a (patch) | |
tree | 63b7fa46d28d31d65c9fb96fcccc849e5808ca78 /Mailman | |
parent | e924228ee33e529f4a9d63b9bdf88ff0d187c76f (diff) | |
download | mailman2-9c512c07b877fe8c218295c9515c32a2cb4c544a.tar.gz mailman2-9c512c07b877fe8c218295c9515c32a2cb4c544a.tar.xz mailman2-9c512c07b877fe8c218295c9515c32a2cb4c544a.zip |
Fixed missing <> in List-ID with invalid char in description.
Diffstat (limited to 'Mailman')
-rw-r--r-- | Mailman/Handlers/CookHeaders.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/Mailman/Handlers/CookHeaders.py b/Mailman/Handlers/CookHeaders.py index e36c5291..41645d6c 100644 --- a/Mailman/Handlers/CookHeaders.py +++ b/Mailman/Handlers/CookHeaders.py @@ -328,6 +328,12 @@ def process(mlist, msg, msgdata): # 2047 encoded. i18ndesc = uheader(mlist, mlist.description, 'List-Id', maxlinelen=998) listid_h = formataddr((str(i18ndesc), listid)) + # With some charsets (utf-8?) and some invalid chars, str(18ndesc) can + # be empty. + if str(i18ndesc): + listid_h = formataddr((str(i18ndesc), listid)) + else: + listid_h = '<%s>' % listid else: # without desc we need to ensure the MUST brackets listid_h = '<%s>' % listid |