fix(fetchmail): fix cron job so it runs

the command was set to echo instead of run.

MR !1
This commit is contained in:
2022-02-14 10:15:08 +09:30
parent eb43442bb7
commit 1fe3598a54

View File

@ -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