From 1fe3598a545044327026f44038be53eeb5f06182 Mon Sep 17 00:00:00 2001 From: Jon Lockwood Date: Mon, 14 Feb 2022 10:15:08 +0930 Subject: [PATCH] fix(fetchmail): fix cron job so it runs the command was set to echo instead of run. MR !1 --- include/etc/cron.d/fetchmail | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/include/etc/cron.d/fetchmail b/include/etc/cron.d/fetchmail index 010990f..a20d98a 100644 --- a/include/etc/cron.d/fetchmail +++ b/include/etc/cron.d/fetchmail @@ -2,6 +2,5 @@ # SpamAssassin Bayes learning from mailboxes # # m h dom mon dow user command -#1,31 * * * * root if [ "0$USE_FETCHMAIL_PL" != "0" ]; then /bin/fetchmail.pl 2>&1; fi -1,31 * * * * root if [ "0$USE_FETCHMAIL_PL" != "0" ]; then echo /bin/fetchmail.pl 2>&1; fi +#20,50 * * * * root if [ "0$USE_FETCHMAIL_PL" != "0" ]; then /bin/fetchmail.pl 2>&1; fi