User:BM/Assp

From ArchWiki

The Anti-Spam SMTP Proxy (ASSP) Server project aims to create an open source platform-independent SMTP Proxy server which implements auto-whitelists, self learning Bayesian, Greylisting, DNSBL, DNSWL, URIBL, SPF, SRS, Backscatter, Virus scanning, attachment blocking, Senderbase and multiple other filter methods. This page shows how to install ASSP v1 on a TrimSlice

Note: Current ASSP version 2 required at least a quad core CPU.

Installation

Basic

Install Perl Modules and there dependencies perl-mail-spf-query, perl-email-mime, perl-net-dns, perl-email-send, perl-io-socket-ssl, perl-io-socket-inet6, perl-authen-sasl, perl-berkeleydb, perl-net-cidr-lite available in the Official repositories.

Install unzip, net-snmp and clamav available in the Official repositories.

Download ASSP

here

Create necessary directories

# mkdir -p /usr/share/assp/{spam,notspam,errors/{spam,notspam}}

Install files in place

# cd /usr/share/
# unzip /path/to/ASSP_<version>_<build>_install.zip
# rm *.txt

CPAN

Install Perl Modules via CPAN

# perl -MCPAN -e shell
cpan> test File::Scan::ClamAV
cpan> look File::Scan::ClamAV

edit clamav.conf

Foreground true
ScanArchive true
[root@trim File-Scan-ClamAV-1.91-VHJd1I]# make install
Installing /usr/share/perl5/site_perl/File/Scan/ClamAV.pm
Installing /usr/share/man/man3/File::Scan::ClamAV.3pm
Appending installation info to /usr/lib/perl5/core_perl/perllocal.pod
[root@trim File-Scan-ClamAV-1.91-VHJd1I]# exit
exit
cpan> exit
Terminal does not support GetHistory.
Lockfile removed.
# perl -MCPAN -e 'install HTML::Entities'
# perl -MCPAN -e 'install Email::Valid'
# perl -MCPAN -e 'install Lingua::Stem::Snowball'
# perl -MCPAN -e 'install Sys::MemInfo'
# perl -MCPAN -e 'install Net::SMTP::TLS'
# perl -MCPAN -e 'install Convert::TNEF'
# perl -MCPAN -e 'install Compress::Zlib'
# perl -MCPAN -e 'install Net::IP::Match::Regexp'
# perl -MCPAN -e 'install Net::SenderBase'
# perl -MCPAN -e 'install Tie::RDBM'
# perl -MCPAN -e 'install Net::Syslog'
# perl -MCPAN -e 'install Time::HiRes'
# perl -MCPAN -e 'install File::ReadBackwards'
# perl -MCPAN -e 'install Email::MIME::Modifier'
# perl -MCPAN -e 'install Mail::SRS'
# perl -MCPAN -e 'install Sys::Syslog'
# perl -MCPAN -e 'install Net::LDAP'
# perl -MCPAN -e 'install Unicode::GCString'
# perl -MCPAN -e 'install Thread::State'
# perl -MCPAN -e 'install Schedule::Cron'

Configuration

Start script

/etc/rc.d/assp

#!/bin/bash

. /etc/rc.conf
. /etc/rc.d/functions

PATH=/bin:/usr/bin:/sbin:/usr/sbin

case "$1" in

        start)
                stat_busy 'Starting the Anti-Spam SMTP Proxy'
                cd /usr/share/assp
                perl assp.pl 2>&1 > /dev/null &
                if [[ $? -gt 0 ]]; then
                        stat_fail
                else
                        add_daemon assp
                        stat_done
                fi
        ;;

        stop)
                stat_busy 'Stopping the Anti-Spam SMTP Proxy'
                kill -9 `pidof perl assp.pl`
                if [[ $? -gt 0 ]]; then
                        stat_fail
                else
                        rm_daemon assp
                        stat_done
                fi
        ;;

        restart)
                $0 stop || true
                $0 start
        ;;
   
        *)
                echo "Usage: $0 {start|stop|restart}"
                exit 1
        ;;

esac
exit 0

Start ASSP

Manually

# cd /usr/share/assp/
# perl assp.pl

You can access the ASSP web interface via http://localhost:55555 with username "root" and password "nospam4me".

After successful login at web interface stop the ASSP with Ctrl+c. Please check /usr/share/assp/moduleLoadErrors.txt for