summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbwarsaw1999-12-02 23:22:10 +0000
committerbwarsaw1999-12-02 23:22:10 +0000
commit411af912a9accb707c09d3c0a9d251751934c18e (patch)
treea9ced7badc79e3871845b9c11b1194367b102cf1
parent8bffaa985ef885f2d79c336ce7211eb367c31aca (diff)
downloadmailman-411af912a9accb707c09d3c0a9d251751934c18e.tar.gz
mailman-411af912a9accb707c09d3c0a9d251751934c18e.tar.zst
mailman-411af912a9accb707c09d3c0a9d251751934c18e.zip
Oops, got order of addrs backwards in UserNotification() ctor.
-rwxr-xr-xcron/mailpasswds2
1 files changed, 1 insertions, 1 deletions
diff --git a/cron/mailpasswds b/cron/mailpasswds
index e589f2bb2..e256a423d 100755
--- a/cron/mailpasswds
+++ b/cron/mailpasswds
@@ -79,7 +79,7 @@ def mail_passwords(mlist, hosts):
})
# add this to the end so it doesn't get wrapped/filled
text = text + header + '\n' + string.join(table, '\n')
- msg = Message.UserNotification(mailman_owner, addr, subj, text)
+ msg = Message.UserNotification(addr, mailman_owner, subj, text)
msg['X-No-Archive'] = 'yes'
HandlerAPI.DeliverToUser(mlist, msg)