diff options
| author | bwarsaw | 2003-02-04 04:17:42 +0000 |
|---|---|---|
| committer | bwarsaw | 2003-02-04 04:17:42 +0000 |
| commit | 03eb149b2f7385c2b45d8b6cfd529a19515f9a3b (patch) | |
| tree | 3c2c34612ea774af6acc3af9d4be783998e88b46 /cron | |
| parent | 77c39a02b15c0b6cee1253f7fced8cbe82f4fe1a (diff) | |
| download | mailman-03eb149b2f7385c2b45d8b6cfd529a19515f9a3b.tar.gz mailman-03eb149b2f7385c2b45d8b6cfd529a19515f9a3b.tar.zst mailman-03eb149b2f7385c2b45d8b6cfd529a19515f9a3b.zip | |
Diffstat (limited to 'cron')
| -rwxr-xr-x | cron/mailpasswds | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/cron/mailpasswds b/cron/mailpasswds index 2c36313d1..348ca3363 100755 --- a/cron/mailpasswds +++ b/cron/mailpasswds @@ -136,6 +136,10 @@ def main(): for mlist in byhost[host]: listaddr = mlist.GetListEmail() for member in mlist.getMembers(): + # The user may have disabled reminders for this list + if mlist.getMemberOption(member, + mm_cfg.SuppressPasswordReminder): + continue # Group by the lower-cased address, since Mailman always # treates person@dom.ain the same as PERSON@dom.ain. password = mlist.getMemberPassword(member) |
