diff options
Diffstat (limited to 'cron')
| -rwxr-xr-x | cron/mailpasswds | 4 |
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 |
