summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbwarsaw2001-07-19 03:31:05 +0000
committerbwarsaw2001-07-19 03:31:05 +0000
commit900dee75103624544dcd01779018a2f06ad5d95c (patch)
tree428fad0b91fff97ac99c25c6e70bb9f4ca7bdf07
parent0514d063ab0f06f0e98c32ba21419cbbb4fa1686 (diff)
downloadmailman-900dee75103624544dcd01779018a2f06ad5d95c.tar.gz
mailman-900dee75103624544dcd01779018a2f06ad5d95c.tar.zst
mailman-900dee75103624544dcd01779018a2f06ad5d95c.zip
-rwxr-xr-xcron/mailpasswds4
1 files changed, 2 insertions, 2 deletions
diff --git a/cron/mailpasswds b/cron/mailpasswds
index e12db07f9..d172acf32 100755
--- a/cron/mailpasswds
+++ b/cron/mailpasswds
@@ -125,10 +125,10 @@ def main():
badaddrs = []
for addr, passwd in mlist.passwords.items():
# The user may have disabled password reminders for this list
- if mlist.GetUserOption(addr, mm_cfg.SuppressPasswordReminder):
+ if mlist.getMemberOption(addr, mm_cfg.SuppressPasswordReminder):
continue
url = mlist.GetOptionsURL(addr, absolute=1)
- realaddr = mlist.GetUserSubscribedAddress(addr)
+ realaddr = mlist.getMemberCPAddress(addr)
if not realaddr:
badaddrs.append(addr)
continue