• Debian 11 has reached its end-of-life (vendor EOL date - August 31, 2026). Plesk Obsidian 18.0.81 is 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.

Disabling Catchall Server Wide

B

BradleyB

Guest
Hi,

I would like to know if there is a way to disable the catch all's server wide. I have several clients that have this enabled and it is causing some major mail queue flooding issues (flooding with spam). I would like to know if there is an ssh command that can be run to disable the catch all features for all clients.
 
Update your Plesk mailserver and domains

Update your blacklists at your mail-server at the server-pannel settings.
Also could you use sbl.spamhaus.org or zen.spamhaus.org to protect domains from spam.

And at the domain preferences could you reject your spam at your mail box.
 
Old post, but I was seeking the same and ended up writing the following one-liner;

for i in `mysql -uadmin -p\`cat /etc/psa/.psa.shadow\` psa -Ns -e "select name from domains"`; do /usr/local/psa/bin/subscription_settings -u $i -no_usr reject; done
 
Back
Top