diff options
author | tkikuchi <> | 2004-10-03 06:00:32 +0000 |
---|---|---|
committer | tkikuchi <> | 2004-10-03 06:00:32 +0000 |
commit | 3b90e75081f508f9fcdf1764f83e6a416216e079 (patch) | |
tree | 6834a8a99f6e09ca1fd4499eacc81963163b8268 /Mailman/Gui/NonDigest.py | |
parent | 56e41649e44be99ee7c6ac5a0421adad3d67df12 (diff) | |
download | mailman2-3b90e75081f508f9fcdf1764f83e6a416216e079.tar.gz mailman2-3b90e75081f508f9fcdf1764f83e6a416216e079.tar.xz mailman2-3b90e75081f508f9fcdf1764f83e6a416216e079.zip |
Merging SF patches:
[ 904850 ] Scrubber in regular delivery per list
[ 1027882 ] filter attachments by filename extensions
and a patch in mailman-dev mailing list
http://mail.python.org/pipermail/mailman-developers/2004-September/017246.html
Diffstat (limited to 'Mailman/Gui/NonDigest.py')
-rw-r--r-- | Mailman/Gui/NonDigest.py | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/Mailman/Gui/NonDigest.py b/Mailman/Gui/NonDigest.py index b66c5c4f..6926632d 100644 --- a/Mailman/Gui/NonDigest.py +++ b/Mailman/Gui/NonDigest.py @@ -134,6 +134,15 @@ and footers: _('''Text appended to the bottom of every immediately-delivery message. ''') + headfoot + extra), ]) + + info.extend([ + ('scrub_nondigest', mm_cfg.Toggle, (_('No'), _('Yes')), 0, + _('Scrub attachments of regular delivery message?'), + _('''When you scrub attachments, they are stored in archive + area and links are made in the message so that the member can + access via web browser. If you want the attachments totally + disappear, you can use content filter options.''')), + ]) return info def _setValue(self, mlist, property, val, doc): |