diff options
| author | Barry Warsaw | 2012-03-15 15:53:59 -0700 |
|---|---|---|
| committer | Barry Warsaw | 2012-03-15 15:53:59 -0700 |
| commit | eb0aaa06741675872b0244ce6f9f0c5748391a10 (patch) | |
| tree | 441a8e2b32de59f466a837f072120c36c92f60d4 /src/mailman/pipeline/acknowledge.py | |
| parent | 0589c867988dc70cbe83a53bc9d1e2bbf3108b82 (diff) | |
| parent | ac0f1c3916e797f3a2261e9a2631e496fb90a8f1 (diff) | |
| download | mailman-eb0aaa06741675872b0244ce6f9f0c5748391a10.tar.gz mailman-eb0aaa06741675872b0244ce6f9f0c5748391a10.tar.zst mailman-eb0aaa06741675872b0244ce6f9f0c5748391a10.zip | |
Diffstat (limited to 'src/mailman/pipeline/acknowledge.py')
| -rw-r--r-- | src/mailman/pipeline/acknowledge.py | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/mailman/pipeline/acknowledge.py b/src/mailman/pipeline/acknowledge.py index 8a0088ce4..0e0916337 100644 --- a/src/mailman/pipeline/acknowledge.py +++ b/src/mailman/pipeline/acknowledge.py @@ -69,20 +69,21 @@ class Acknowledge: else member.preferred_language) charset = language_manager[language.code].charset # Now get the acknowledgement template. - realname = mlist.real_name + display_name = mlist.display_name text = make('postack.txt', mailing_list=mlist, language=language.code, wrap=False, subject=oneline(original_subject, charset), - listname=realname, + list_name=mlist.list_name, + display_name=display_name, listinfo_url=mlist.script_url('listinfo'), optionsurl=member.options_url, ) # Craft the outgoing message, with all headers and attributes # necessary for general delivery. Then enqueue it to the outgoing # queue. - subject = _('$realname post acknowledgment') + subject = _('$display_name post acknowledgment') usermsg = UserNotification(sender, mlist.bounces_address, subject, text, language) usermsg.send(mlist) |
