diff options
| author | Barry Warsaw | 2008-03-27 05:14:14 -0400 |
|---|---|---|
| committer | Barry Warsaw | 2008-03-27 05:14:14 -0400 |
| commit | 17f286de64cb3373d68c4fefba6d9369b4e3f960 (patch) | |
| tree | 5078531044f0574dfa340a389bd6d0bb9eea717f /mailman/pipeline/smtp_direct.py | |
| parent | de9deb660c5d48a083f0c56916cca6aa0cb010b3 (diff) | |
| download | mailman-17f286de64cb3373d68c4fefba6d9369b4e3f960.tar.gz mailman-17f286de64cb3373d68c4fefba6d9369b4e3f960.tar.zst mailman-17f286de64cb3373d68c4fefba6d9369b4e3f960.zip | |
Diffstat (limited to 'mailman/pipeline/smtp_direct.py')
| -rw-r--r-- | mailman/pipeline/smtp_direct.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mailman/pipeline/smtp_direct.py b/mailman/pipeline/smtp_direct.py index d79510cb0..74eaa5aad 100644 --- a/mailman/pipeline/smtp_direct.py +++ b/mailman/pipeline/smtp_direct.py @@ -110,7 +110,7 @@ def process(mlist, msg, msgdata): envsender = msgdata.get('envsender') if envsender is None: if mlist: - envsender = mlist.GetBouncesEmail() + envsender = mlist.bounces_address else: envsender = Utils.get_site_noreply() # Time to split up the recipient list. If we're personalizing or VERPing @@ -183,7 +183,7 @@ def process(mlist, msg, msgdata): 'size' : len(msg.as_string()), '#recips' : len(recips), '#refused': len(refused), - 'listname': mlist.internal_name(), + 'listname': mlist.fqdn_listname, 'sender' : origsender, }) # We have to use the copy() method because extended call syntax requires a |
