• Introducing WebPros Cloud - a fully managed infrastructure platform purpose-built to simplify the deployment of WebPros products !  WebPros Cloud enables you to easily deliver WebPros solutions — without the complexity of managing the infrastructure.
    Join the pilot program today!
  • Support for BIND DNS has been removed from Plesk for Windows due to security and maintenance risks.
    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.

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