diff options
| author | bwarsaw | 2000-03-03 04:18:57 +0000 |
|---|---|---|
| committer | bwarsaw | 2000-03-03 04:18:57 +0000 |
| commit | 7070b6641d41544d21d2780fac9f7e3fce6f21cd (patch) | |
| tree | cc2861126b6c53f71762af8942aef524aa1c6248 /Mailman/Autoresponder.py | |
| parent | 4affcc8d3a1b1da9b6f880468dfc41d92d71b079 (diff) | |
| download | mailman-7070b6641d41544d21d2780fac9f7e3fce6f21cd.tar.gz mailman-7070b6641d41544d21d2780fac9f7e3fce6f21cd.tar.zst mailman-7070b6641d41544d21d2780fac9f7e3fce6f21cd.zip | |
Diffstat (limited to 'Mailman/Autoresponder.py')
| -rw-r--r-- | Mailman/Autoresponder.py | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/Mailman/Autoresponder.py b/Mailman/Autoresponder.py index d21bfa10f..586f349fa 100644 --- a/Mailman/Autoresponder.py +++ b/Mailman/Autoresponder.py @@ -41,6 +41,8 @@ class Autoresponder: self.request_responses = {} def GetConfigInfo(self): + WIDTH = mm_cfg.TEXTFIELDWIDTH + return [ """Auto-responder characteristics.<p> @@ -59,14 +61,16 @@ box, or you can specify a file on your local system to upload as the text.""", ('autorespond_postings', mm_cfg.Toggle, ('No', 'Yes'), 0, 'Should Mailman send an auto-response to mailing list posters?'), - ('autoresponse_postings_text', mm_cfg.FileUpload, ('6', '30'), 0, + ('autoresponse_postings_text', mm_cfg.FileUpload, + (6, WIDTH), 0, 'Auto-response text to send to mailing list posters.'), ('autorespond_admin', mm_cfg.Toggle, ('No', 'Yes'), 0, '''Should Mailman send an auto-response to emails sent to the -admin address?'''), - ('autoresponse_admin_text', mm_cfg.FileUpload, ('6', '30'), 0, + ('autoresponse_admin_text', mm_cfg.FileUpload, + (6, WIDTH), 0, 'Auto-response text to send to -admin emails.'), ('autorespond_requests', mm_cfg.Radio, @@ -76,7 +80,8 @@ box, or you can specify a file on your local system to upload as the text.""", discard the original email, or forward it on to the system as a normal mail command.'''), - ('autoresponse_request_text', mm_cfg.FileUpload, ('6', '30'), 0, + ('autoresponse_request_text', mm_cfg.FileUpload, + (6, WIDTH), 0, 'Auto-response text to send to -request emails.'), ('autoresponse_graceperiod', mm_cfg.Number, 3, 0, |
