summaryrefslogtreecommitdiff
path: root/Mailman/Autoresponder.py
diff options
context:
space:
mode:
authorbwarsaw2000-07-22 02:12:29 +0000
committerbwarsaw2000-07-22 02:12:29 +0000
commitbab84d36a4fda72b36ba267428db56fa5de3b5b4 (patch)
tree04e5e698d050d3cd775eefb9469b1a456a4687e5 /Mailman/Autoresponder.py
parent661d6c8e6312c71e251493039a60e800f754be84 (diff)
downloadmailman-bab84d36a4fda72b36ba267428db56fa5de3b5b4.tar.gz
mailman-bab84d36a4fda72b36ba267428db56fa5de3b5b4.tar.zst
mailman-bab84d36a4fda72b36ba267428db56fa5de3b5b4.zip
Diffstat (limited to 'Mailman/Autoresponder.py')
-rw-r--r--Mailman/Autoresponder.py9
1 files changed, 5 insertions, 4 deletions
diff --git a/Mailman/Autoresponder.py b/Mailman/Autoresponder.py
index 63dca94a1..17dfbd24e 100644
--- a/Mailman/Autoresponder.py
+++ b/Mailman/Autoresponder.py
@@ -53,6 +53,7 @@ the following key/value substitutions:
<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
@@ -67,11 +68,11 @@ box, or you can specify a file on your local system to upload as the text.""",
('autorespond_admin', mm_cfg.Toggle, ('No', 'Yes'), 0,
'''Should Mailman send an auto-response to emails sent to the
--admin address?'''),
+-admin and -owner addresses?'''),
('autoresponse_admin_text', mm_cfg.FileUpload,
(6, WIDTH), 0,
- 'Auto-response text to send to -admin emails.'),
+ 'Auto-response text to send to -admin and -owner emails.'),
('autorespond_requests', mm_cfg.Radio,
('No', 'Yes, w/discard', 'Yes, w/forward'), 0,
@@ -86,7 +87,7 @@ command.'''),
('autoresponse_graceperiod', mm_cfg.Number, 3, 0,
'''Number of days between auto-responses to either the mailing
-list or -admin address from the same poster. Set to zero (or negative) for
-no grace period (i.e. auto-respond to every message).'''),
+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).'''),
]