Hello, everybody, is've install ISPConfig and it work perfectly. I need some help with SPAM Filtering. I wont to install squirrelmail plugin Spam Buttons but i can't make it work. Can you help me with that? And other question about spam. How can i make spamassassin move martket as spam mail to trash folder or other one. Thank You!
In ISPConfig you can specify wheter spam should be deleted immediately or be delivered to the recipient. Have a look at chapter 2.2.5 here: http://ispconfig.org/downloads/manual_en/manual_kunde_en_src.htm#4_2_2
POP and SMTP Hello again Falko, Thank You for Your help. I run everything fine, i think that ISPConfig is great. I've some question about mail server: I neet to use pop and smtp, but not for any locations, but only by 2 ip. Can You tell me hot to block all other ip to login with pop and smtp? I neet use SMTP and POP only by localhost and 2 other ip. How to do this? Thank You!
iptables? I don't know about ispconfig, but iptables would handle this easily... iptables -A INPUT -p tcp -m tcp --dport 110 -s ip.you.want.to.allow -j ACCEPT will allow pop3-access for a specific ip, just allow those you want to allow iptables -A INPUT -p tcp -m tcp --dport 110 -j DENY then deny all others.... Limpalot
Thank You! Thank You for help Limpalot But i'm not sure what to do. If i do this maybe i will ruin somthing else! I realy don't know what to do, but i realy thank You for help!
iptables I don't know what kind of firewall you are running, but you can for example use webmin to administer iptables (www.webmin.com) and then set it to allow connections to port 110 from the ip you want to use and as the next rule deny from all. Iptables runs the list and uses the first rule that apply, so if you first allow the one ip, then deny all others you should get the functionality you want.. Good luck Limpalot