diff options
| author | mailman | 1998-04-08 05:39:33 +0000 |
|---|---|---|
| committer | mailman | 1998-04-08 05:39:33 +0000 |
| commit | e9d3613a3962e47840d2b4c547c41411c8493b6c (patch) | |
| tree | a929a9d8ec663016197e93052517be0be8e7d4a5 | |
| parent | 62512ddbe453d263792a60ab00b3e01f91e9cdfb (diff) | |
| download | mailman-e9d3613a3962e47840d2b4c547c41411c8493b6c.tar.gz mailman-e9d3613a3962e47840d2b4c547c41411c8493b6c.tar.zst mailman-e9d3613a3962e47840d2b4c547c41411c8493b6c.zip | |
Call to SendTextToUser() requires "add_headers" instead of "add_to_headers"
| -rw-r--r-- | Mailman/Bouncer.py | 4 | ||||
| -rw-r--r-- | modules/mm_bouncer.py | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/Mailman/Bouncer.py b/Mailman/Bouncer.py index 171e07a4c..4e1984a63 100644 --- a/Mailman/Bouncer.py +++ b/Mailman/Bouncer.py @@ -164,8 +164,8 @@ class Bouncer: negative, did)), recipient = recipient, sender = mm_cfg.MAILMAN_OWNER, - add_to_headers = ["Errors-To: %s" - % mm_cfg.MAILMAN_OWNER], + add_headers = ["Errors-To: %s" + % mm_cfg.MAILMAN_OWNER], text = text) def DisableBouncingAddress(self, addr): if not self.IsMember(addr): diff --git a/modules/mm_bouncer.py b/modules/mm_bouncer.py index 171e07a4c..4e1984a63 100644 --- a/modules/mm_bouncer.py +++ b/modules/mm_bouncer.py @@ -164,8 +164,8 @@ class Bouncer: negative, did)), recipient = recipient, sender = mm_cfg.MAILMAN_OWNER, - add_to_headers = ["Errors-To: %s" - % mm_cfg.MAILMAN_OWNER], + add_headers = ["Errors-To: %s" + % mm_cfg.MAILMAN_OWNER], text = text) def DisableBouncingAddress(self, addr): if not self.IsMember(addr): |
