summaryrefslogtreecommitdiff
path: root/Mailman/Deliverer.py
diff options
context:
space:
mode:
Diffstat (limited to 'Mailman/Deliverer.py')
-rw-r--r--Mailman/Deliverer.py18
1 files changed, 14 insertions, 4 deletions
diff --git a/Mailman/Deliverer.py b/Mailman/Deliverer.py
index 04a5c71d3..f177ba243 100644
--- a/Mailman/Deliverer.py
+++ b/Mailman/Deliverer.py
@@ -13,18 +13,19 @@ was successfully received by %s.
SUBSCRIBEACKTEXT = '''Welcome to the %s@%s mailing list!
If you ever want to unsubscribe or change your options (eg, switch to
-or from digest mode), visit the web page:
+or from digest mode, change your password, etc.), visit the web page:
%s
-You can also make these adjustments via email - send a message to
+You can also make these adjustments via email - send a message to:
%s-request@%s
with the text "help" in the subject or body, and you will get back a
message with instructions.
-You must know your password to change your options or unsubscribe. It is:
+You must know your password to change your options (including changing the
+password, itself) or to unsubscribe. It is:
%s
@@ -49,11 +50,19 @@ This is a reminder of how to unsubscribe or change your configuration
for the mailing list "%s". You need to have your password for
these things. YOUR PASSWORD IS:
-%s
+ %s
To make changes, use this password on the web site:
+
%s
+You can also make these adjustments via email - send a message to:
+
+ %s-request@%s
+
+with the text "help" in the subject or body, and you will get back a
+message with instructions.
+
Questions or comments? Send mail to Mailman-owner@%s
'''
@@ -175,4 +184,5 @@ class Deliverer:
% (self.real_name,
self.passwords[user],
self.GetScriptURL('listinfo'),
+ self.real_name, self.host_name,
self.host_name)))