diff options
author | tkikuchi <> | 2004-10-10 13:14:30 +0000 |
---|---|---|
committer | tkikuchi <> | 2004-10-10 13:14:30 +0000 |
commit | 9892299e4618d54da33b7243568bcd3975e71c93 (patch) | |
tree | d27c6e3d59f6625bbdea92bf6b02c55d82818d5a /Mailman/Handlers | |
parent | 8ce66b056a968d1fe7ec739173b076c8c066ffc3 (diff) | |
download | mailman2-9892299e4618d54da33b7243568bcd3975e71c93.tar.gz mailman2-9892299e4618d54da33b7243568bcd3975e71c93.tar.xz mailman2-9892299e4618d54da33b7243568bcd3975e71c93.zip |
I18N autorespondToSender()
Diffstat (limited to 'Mailman/Handlers')
-rw-r--r-- | Mailman/Handlers/Hold.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Mailman/Handlers/Hold.py b/Mailman/Handlers/Hold.py index 0a6a7d31..13b86895 100644 --- a/Mailman/Handlers/Hold.py +++ b/Mailman/Handlers/Hold.py @@ -232,7 +232,7 @@ def hold_for_approval(mlist, msg, msgdata, exc): # bounce processing that might be needed. cookie = mlist.pend_new(Pending.HELD_MESSAGE, id) if not fromusenet and ackp(msg) and mlist.respond_to_post_requests and \ - mlist.autorespondToSender(sender): + mlist.autorespondToSender(sender, mlist.getMemberLanguage(sender)): # Get a confirmation cookie d['confirmurl'] = '%s/%s' % (mlist.GetScriptURL('confirm', absolute=1), cookie) |