From 1808ae4e41d45e403d6fc12a88c8be930ceff131 Mon Sep 17 00:00:00 2001 From: bwarsaw Date: Fri, 19 Apr 2002 22:19:43 +0000 Subject: Don't set the digest type (plaintext or MIME) through this mechanism, since this is already settable via the Digest option mime_is_default_digest. --- Mailman/Gui/General.py | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) (limited to 'Mailman') diff --git a/Mailman/Gui/General.py b/Mailman/Gui/General.py index 51a9002df..ff260fd8d 100644 --- a/Mailman/Gui/General.py +++ b/Mailman/Gui/General.py @@ -25,7 +25,7 @@ from Mailman.Gui.GUIBase import GUIBase # BAW: bogus! This should be in a separate module (Utils?) from Mailman.MailCommandHandler import option_info -OPTIONS = ('hide', 'ack', 'notmetoo', 'plain', 'nodupes') +OPTIONS = ('hide', 'ack', 'notmetoo', 'nodupes') @@ -42,15 +42,12 @@ class General(GUIBase): bitfields = {'hide' : mm_cfg.ConcealSubscription, 'ack' : mm_cfg.AcknowledgePosts, 'notmetoo' : mm_cfg.DontReceiveOwnPosts, - 'plain' : mm_cfg.DisableMime, 'nodupes' : mm_cfg.DontReceiveDuplicates } bitdescrs = { 'hide' : _("Conceal the member's address"), 'ack' : _("Acknowledge the member's posting"), 'notmetoo' : _("Do not send a copy of a member's own post"), - 'plain' : - _('Get plain text digests (RFC 1153) rather than MIME digests'), 'nodupes' : _('Filter out duplicate messages to list members (if possible)'), } -- cgit v1.3.1