So. I get an email every 30 minutes like this:
ERROR: Dr.Web Updater: key file not found !
See Dr.Web Updater log file for details
My Web host referred me to this article:
https://kb.plesk.com/en/118058
It's actually wrong - the crontab file does not look like the one in the article. Mine (Plesk 12.5.30) looks like this:
#!/bin/sh
update_scr="/opt/drweb/update.pl"
outfile=`mktemp /tmp/drweb-update.XXXXXX`
[ -x "${update_scr}" ] || exit 0
trap 'rm -f $outfile;' TERM INT EXIT
"${update_scr}" >$outfile >/dev/null 2>&1
rc=$?
[ $rc -eq 0 ] || cat $outfile
exit $rc
The /dev/null part 5 lines up from the bottom was added by me based on the out of date article.
I still get the emails.
Does anyone from Plesk know how you stop these?
I find it slightly surprising that the product is shipped in a state where it sends emails which are bound to cause problems (the same problem on my client's server has triggered it seems a Hotmail spam response) and then it is not straightforward to turn them off.
ERROR: Dr.Web Updater: key file not found !
See Dr.Web Updater log file for details
My Web host referred me to this article:
https://kb.plesk.com/en/118058
It's actually wrong - the crontab file does not look like the one in the article. Mine (Plesk 12.5.30) looks like this:
#!/bin/sh
update_scr="/opt/drweb/update.pl"
outfile=`mktemp /tmp/drweb-update.XXXXXX`
[ -x "${update_scr}" ] || exit 0
trap 'rm -f $outfile;' TERM INT EXIT
"${update_scr}" >$outfile >/dev/null 2>&1
rc=$?
[ $rc -eq 0 ] || cat $outfile
exit $rc
The /dev/null part 5 lines up from the bottom was added by me based on the out of date article.
I still get the emails.
Does anyone from Plesk know how you stop these?
I find it slightly surprising that the product is shipped in a state where it sends emails which are bound to cause problems (the same problem on my client's server has triggered it seems a Hotmail spam response) and then it is not straightforward to turn them off.