summaryrefslogtreecommitdiff
path: root/Mailman/Digester.py
diff options
context:
space:
mode:
authorklm1998-04-07 04:44:42 +0000
committerklm1998-04-07 04:44:42 +0000
commitb48bae50fdfb4936b4335019c1d00b86830fec7d (patch)
treeacddbab7e5eee76e33b390ba5630b6c63ab74271 /Mailman/Digester.py
parentf78b3b27a8c5739638d421e4e33af13fcbf64fd8 (diff)
downloadmailman-b48bae50fdfb4936b4335019c1d00b86830fec7d.tar.gz
mailman-b48bae50fdfb4936b4335019c1d00b86830fec7d.tar.zst
mailman-b48bae50fdfb4936b4335019c1d00b86830fec7d.zip
Diffstat (limited to 'Mailman/Digester.py')
-rw-r--r--Mailman/Digester.py19
1 files changed, 11 insertions, 8 deletions
diff --git a/Mailman/Digester.py b/Mailman/Digester.py
index 3c392943b..e76bb582c 100644
--- a/Mailman/Digester.py
+++ b/Mailman/Digester.py
@@ -19,6 +19,7 @@ class Digester:
def GetConfigInfo(self):
return [
+ "Batched-delivery digest characteristics.",
('digestable', mm_cfg.Toggle, ('No', 'Yes'), 1,
'Can list members choose to receive list traffic '
@@ -34,22 +35,24 @@ class Digester:
('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.
('digest_send_periodic', mm_cfg.Number, 3, 0,
'Should a digest be dispatched daily when the size threshold '
"isn't reached?"),
- ('digest_header', mm_cfg.Text, (4, 65), 0,
- 'Header added to every digest'),
- # See msg_header option note.
+ ('digest_header', mm_cfg.Text, (4, 55), 0,
+ 'Header added to every digest',
+ "Text attached (as an initial message, before the table"
+ " of contents) to the top of digests.<p>"
+ + mm_cfg.MESSAGE_DECORATION_NOTE),
- ('digest_footer', mm_cfg.Text, (4, 65), 0,
- 'Footer added to every digest'),
- # See msg_header option note.
+ ('digest_footer', mm_cfg.Text, (4, 55), 0,
+ 'Footer added to every digest',
+ "Text attached (as a final message) to the bottom of digests.<p>"
+ + mm_cfg.MESSAGE_DECORATION_NOTE),
]
-
-
def SetUserDigest(self, sender, value):
self.IsListInitialized()
addr = self.FindUser(sender)