• Our team is looking to connect with folks who use email services provided by Plesk, or a premium service. If you'd like to be part of the discovery process and share your experiences, we invite you to complete this short screening survey. If your responses match the persona we are looking for, you'll receive a link to schedule a call at your convenience. We look forward to hearing from you!
  • The BIND DNS server has already been deprecated and removed from Plesk for Windows.
    If a Plesk for Windows server is still using BIND, the upgrade to Plesk Obsidian 18.0.70 will be unavailable until the administrator switches the DNS server to Microsoft DNS. We strongly recommend transitioning to Microsoft DNS within the next 6 weeks, before the Plesk 18.0.70 release.
  • The Horde component is removed from Plesk Installer. We recommend switching to another webmail software supported in Plesk.

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