aboutsummaryrefslogtreecommitdiffstats
path: root/Mailman/Gui
diff options
context:
space:
mode:
authorMark Sapiro <msapiro@value.net>2013-03-10 20:27:18 -0700
committerMark Sapiro <msapiro@value.net>2013-03-10 20:27:18 -0700
commitb056d1850e44ab2cb6827e2b1a4f0d451459e9eb (patch)
tree4a2ff54708a9a1dc894a7f22ef48749dc2be12c8 /Mailman/Gui
parentce42aaef80d28b0d847d2fa44a3b05eb5b0634bd (diff)
downloadmailman2-b056d1850e44ab2cb6827e2b1a4f0d451459e9eb.tar.gz
mailman2-b056d1850e44ab2cb6827e2b1a4f0d451459e9eb.tar.xz
mailman2-b056d1850e44ab2cb6827e2b1a4f0d451459e9eb.zip
Setting digest_size_threshhold to zero now means no digests will be
sent based on size instead of a digest being sent with every post.
Diffstat (limited to 'Mailman/Gui')
-rw-r--r--Mailman/Gui/Digest.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/Mailman/Gui/Digest.py b/Mailman/Gui/Digest.py
index f7722019..77691aee 100644
--- a/Mailman/Gui/Digest.py
+++ b/Mailman/Gui/Digest.py
@@ -1,4 +1,4 @@
-# Copyright (C) 1998,1999,2000,2001,2002 by the Free Software Foundation, Inc.
+# Copyright (C) 1998-2013 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
@@ -56,8 +56,8 @@ class Digest(GUIBase):
_('When receiving digests, which format is default?')),
('digest_size_threshhold', mm_cfg.Number, 3, 0,
- _('How big in Kb should a digest be before it gets sent out?')),
- # Should offer a 'set to 0' for no size threshhold.
+ _('How big in Kb should a digest be before it gets sent out?'
+ ' 0 implies no maximum size.')),
('digest_send_periodic', mm_cfg.Radio, (_('No'), _('Yes')), 1,
_('Should a digest be dispatched daily when the size threshold '