diff options
author | Mark Sapiro <mark@msapiro.net> | 2017-03-15 20:39:27 -0700 |
---|---|---|
committer | Mark Sapiro <mark@msapiro.net> | 2017-03-15 20:39:27 -0700 |
commit | bb0383b9174e1afb5939928539bfd9c20c8829f2 (patch) | |
tree | d1a4ccae12e97b64be9ed8cdf952abed56266a43 /Mailman/Handlers/ToDigest.py | |
parent | 94a83e81638064e6d70fafe02a9b14b8866635e3 (diff) | |
download | mailman2-bb0383b9174e1afb5939928539bfd9c20c8829f2.tar.gz mailman2-bb0383b9174e1afb5939928539bfd9c20c8829f2.tar.xz mailman2-bb0383b9174e1afb5939928539bfd9c20c8829f2.zip |
Treat message and digest headers and footers as empty if they contain
only whitespace.
Diffstat (limited to '')
-rw-r--r-- | Mailman/Handlers/ToDigest.py | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/Mailman/Handlers/ToDigest.py b/Mailman/Handlers/ToDigest.py index 02965f82..046cbaba 100644 --- a/Mailman/Handlers/ToDigest.py +++ b/Mailman/Handlers/ToDigest.py @@ -1,4 +1,4 @@ -# Copyright (C) 1998-2016 by the Free Software Foundation, Inc. +# Copyright (C) 1998-2017 by the Free Software Foundation, Inc. # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License @@ -215,8 +215,8 @@ def send_i18n_digests(mlist, mboxfp): # RFC 1153 print >> plainmsg, mastheadtxt print >> plainmsg - # Now add the optional digest header - if mlist.digest_header: + # Now add the optional digest header but only if more than whitespace. + if re.sub('\s', '', mlist.digest_header): headertxt = decorate(mlist, mlist.digest_header, _('digest header')) # MIME header = MIMEText(headertxt, _charset=lcset) @@ -365,8 +365,8 @@ def send_i18n_digests(mlist, mboxfp): print >> plainmsg, payload if not payload.endswith('\n'): print >> plainmsg - # Now add the footer - if mlist.digest_footer: + # Now add the footer but only if more than whitespace. + if re.sub('\s', '', mlist.digest_footer): footertxt = decorate(mlist, mlist.digest_footer, _('digest footer')) # MIME footer = MIMEText(footertxt, _charset=lcset) |