From 8a55643a1b09e3276f23f2619d692602e908c3df Mon Sep 17 00:00:00 2001 From: viega Date: Fri, 12 Jun 1998 09:58:47 +0000 Subject: Skip lists where send_reminders is 0. --- cron/mailpasswds | 2 ++ 1 file changed, 2 insertions(+) diff --git a/cron/mailpasswds b/cron/mailpasswds index 018fe1866..ebdc8dd2f 100755 --- a/cron/mailpasswds +++ b/cron/mailpasswds @@ -90,6 +90,8 @@ def main(): list = maillist.MailList(name) list_name = list.real_name reminders_to_admins = list.reminders_to_admins + if not list.send_reminders: + continue for user, password in list.passwords.items(): url = list.GetOptionsURL(user) if reminders_to_admins: -- cgit v1.3.1