• Debian 11 is approaching its end-of-life (vendor EOL date - August 31, 2026). Plesk Obsidian 18.0.80 will be the last release to support it.
    If you are running Plesk Obsidian on Debian 11, we recommend you upgrade those servers to Debian 12 using our dist-upgrade tool.
  • We plan to deprecate and remove the support for XML RPC protocol versions earlier than 1.6.9.1 in Plesk Obsidian 18.0.82. We strongly recommend that you update all existing integrations using earlier versions of the XML RPC protocol to comply with the version 1.6.9.1 specification.

Resolved Turn on antivirus function vor all mail accounts

HMnet

Basic Pleskian
Hello @AlL!

Does anybody has a hint:

After a migration from Plesk 12.5.30 to 18.0.27 the antivirus funtion of all mailaccounts is disabled. Before my antivirus-setting was "in".

The server contains more than 1000 mailaccounts, so it's very heavy to get this setting back to "in".

The cli-command "plesk bin mail -u ***@***.** -antivirus in" is a solution for ONE account. I need this for all accounts. Is there a wildcard-function?

Yours Thomas
 
Yes - it worked with Obsidian 18.0.29 (Ubuntu), too.

First I tested with:
for i in `mysql -uadmin -p\`cat /etc/psa/.psa.shadow\` psa -Ns -e "select concat(mail.mail_name,\"@\",domains.name) as address from mail,domains,accounts where mail.dom_id=domains.id and mail.account_id=accounts.id order by address"`; do echo $i; done
The output shows all registered email addresses.

And then:
for i in `mysql -uadmin -p\`cat /etc/psa/.psa.shadow\` psa -Ns -e "select concat(mail.mail_name,\"@\",domains.name) as address from mail,domains,accounts where mail.dom_id=domains.id and mail.account_id=accounts.id order by address"`; do plesk bin mail -u $i -antivirus in; done

PERFECT!

Thanks!
 
Back
Top