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

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" "spam@spam.com" "" < /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 spam@domain.tld. 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