• 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.

Redirect SPAM mail - solution

yOyO-

New Pleskian
Hi.

I found a way to send a spam mail to another mailbox (with save or delete original message). Its very simple.
We must create one bash script. Ex. /usr/bin/spamus

- cut -

#!/bin/bash

/usr/bin/spamc $* > /tmp/spamus$$
cat /tmp/spamus$$
grep "^X-Spam-Status: Yes" /tmp/spamus$$ >/dev/null 2>&1
ret=$?
if [ $ret -eq 0 ] ; then
/var/qmail/bin/qmail-local "popuser" "/var/qmail/mailnames/domain.tld/spam" "spam" "" "" "domain.tld" "[email protected]" "" < /tmp/spamus$$
rm /tmp/spamus$$
exit 1
else
rm /tmp/spamus$$
exit 0
fi

- cut -

And chmod oug+x /usr/bin/spamus

Now, we must change one line in /usr/local/psa/bin/psa-spamc

SPAMC=/usr/bin/spamc
to
SPAMC=/usr/bin/spamus

And all mails tagged as spam will be send to localy mailbox [email protected]. I don`t tested this with remote mailbox, but I think it would work without any problem.
Its very useful, becouse we don`t edit any qmail config files, and plesk don`t overwrite it.



Btw. Sorry for my Eng ;>
 
Is there any solution to make this script work with multiple domains?
Where do I need to change it?
Thanks in advance.
 
Back
Top