summaryrefslogtreecommitdiff
path: root/Mailman/Digester.py
diff options
context:
space:
mode:
authorbwarsaw2000-03-03 04:18:57 +0000
committerbwarsaw2000-03-03 04:18:57 +0000
commit7070b6641d41544d21d2780fac9f7e3fce6f21cd (patch)
treecc2861126b6c53f71762af8942aef524aa1c6248 /Mailman/Digester.py
parent4affcc8d3a1b1da9b6f880468dfc41d92d71b079 (diff)
downloadmailman-7070b6641d41544d21d2780fac9f7e3fce6f21cd.tar.gz
mailman-7070b6641d41544d21d2780fac9f7e3fce6f21cd.tar.zst
mailman-7070b6641d41544d21d2780fac9f7e3fce6f21cd.zip
Diffstat (limited to 'Mailman/Digester.py')
-rw-r--r--Mailman/Digester.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/Mailman/Digester.py b/Mailman/Digester.py
index ce9b907c5..c6c033130 100644
--- a/Mailman/Digester.py
+++ b/Mailman/Digester.py
@@ -38,6 +38,8 @@ class Digester:
self.next_digest_number = 1
def GetConfigInfo(self):
+ WIDTH = mm_cfg.TEXTFIELDWIDTH
+
return [
"Batched-delivery digest characteristics.",
@@ -61,13 +63,13 @@ class Digester:
'Should a digest be dispatched daily when the size threshold '
"isn't reached?"),
- ('digest_header', mm_cfg.Text, (4, 55), 0,
+ ('digest_header', mm_cfg.Text, (4, WIDTH), 0,
'Header added to every digest',
"Text attached (as an initial message, before the table"
" of contents) to the top of digests.<p>"
+ Errors.MESSAGE_DECORATION_NOTE),
- ('digest_footer', mm_cfg.Text, (4, 55), 0,
+ ('digest_footer', mm_cfg.Text, (4, WIDTH), 0,
'Footer added to every digest',
"Text attached (as a final message) to the bottom of digests.<p>"
+ Errors.MESSAGE_DECORATION_NOTE),