summaryrefslogtreecommitdiff
path: root/Mailman/Autoresponder.py
diff options
context:
space:
mode:
authorbwarsaw2001-07-18 22:14:17 +0000
committerbwarsaw2001-07-18 22:14:17 +0000
commitc25b14b37811e636d957fa1cc101620560395e48 (patch)
treef1428137ef7674e989857fd43ab8c11fb518544a /Mailman/Autoresponder.py
parent2bd68751c1e6c8820923d254a6f50901f87a057a (diff)
downloadmailman-c25b14b37811e636d957fa1cc101620560395e48.tar.gz
mailman-c25b14b37811e636d957fa1cc101620560395e48.tar.zst
mailman-c25b14b37811e636d957fa1cc101620560395e48.zip
Diffstat (limited to 'Mailman/Autoresponder.py')
-rw-r--r--Mailman/Autoresponder.py53
1 files changed, 0 insertions, 53 deletions
diff --git a/Mailman/Autoresponder.py b/Mailman/Autoresponder.py
index 94c2d2622..64ec18f19 100644
--- a/Mailman/Autoresponder.py
+++ b/Mailman/Autoresponder.py
@@ -41,56 +41,3 @@ class Autoresponder:
self.admin_responses = {}
self.request_responses = {}
- def GetConfigInfo(self):
- WIDTH = mm_cfg.TEXTFIELDWIDTH
-
- return [
- _("""\
-Auto-responder characteristics.<p>
-
-In the text fields below, Python %(string)s interpolation is performed with
-the following key/value substitutions:
-<p><ul>
- <li><b>%(listname)s</b> - <em>gets the name of the mailing list</em>
- <li><b>%(listurl)s</b> - <em>gets the list's listinfo URL</em>
- <li><b>%(requestemail)s</b> - <em>gets the list's -request address</em>
- <li><b>%(adminemail)s</b> - <em>gets the list's -admin address</em>
- <li><b>%(owneremail)s</b> - <em>gets the list's -owner address</em>
-</ul>
-
-<p>For each text field, you can either enter the text directly into the text
-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, 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 and -owner addresses?''')),
-
- ('autoresponse_admin_text', mm_cfg.FileUpload,
- (6, WIDTH), 0,
- _('Auto-response text to send to -admin and -owner emails.')),
-
- ('autorespond_requests', mm_cfg.Radio,
- (_('No'), _('Yes, w/discard'), _('Yes, w/forward')), 0,
- _('''Should Mailman send an auto-response to emails sent to the
- -request address? If you choose yes, decide whether you want
- Mailman to discard the original email, or forward it on to the
- system as a normal mail command.''')),
-
- ('autoresponse_request_text', mm_cfg.FileUpload,
- (6, WIDTH), 0,
- _('Auto-response text to send to -request emails.')),
-
- ('autoresponse_graceperiod', mm_cfg.Number, 3, 0,
- _('''Number of days between auto-responses to either the mailing
- list or -admin/-owner address from the same poster. Set to zero
- (or negative) for no grace period (i.e. auto-respond to every
- message).''')),
- ]