summaryrefslogtreecommitdiff
path: root/src/mailman/handlers/replybot.py
diff options
context:
space:
mode:
authorBarry Warsaw2016-07-16 15:44:07 -0400
committerBarry Warsaw2016-07-16 15:44:07 -0400
commitdbde6231ec897379ed38ed4cd015b8ab20ed5fa1 (patch)
tree1226d06a238314262a1d04d0bbf9c4dc0b72c309 /src/mailman/handlers/replybot.py
parent3387791beb7112dbe07664041f117fdcc20df53d (diff)
downloadmailman-dbde6231ec897379ed38ed4cd015b8ab20ed5fa1.tar.gz
mailman-dbde6231ec897379ed38ed4cd015b8ab20ed5fa1.tar.zst
mailman-dbde6231ec897379ed38ed4cd015b8ab20ed5fa1.zip
Diffstat (limited to 'src/mailman/handlers/replybot.py')
-rw-r--r--src/mailman/handlers/replybot.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/mailman/handlers/replybot.py b/src/mailman/handlers/replybot.py
index 546bb1ec4..a86ccbbf3 100644
--- a/src/mailman/handlers/replybot.py
+++ b/src/mailman/handlers/replybot.py
@@ -100,12 +100,11 @@ class Replybot:
d = dict(
list_name=mlist.list_name,
display_name=display_name,
- listurl=mlist.script_url('listinfo'),
requestemail=mlist.request_address,
owneremail=mlist.owner_address,
)
# Interpolation and Wrap the response text.
- text = wrap(expand(response_text, d))
+ text = wrap(expand(response_text, mlist, d))
outmsg = UserNotification(msg.sender, mlist.bounces_address,
subject, text, mlist.preferred_language)
outmsg['X-Mailer'] = _('The Mailman Replybot')