Assp: Difference between revisions
From DWIKI
(Created page with "Anti-Spam SMTP Proxy =Links= *[https://sourceforge.net/apps/mediawiki/assp/ Homepage] =Notes= ==Installing perl modules== *http://sourceforge.net/projects/assp/files/ASSP%20V2%...") |
|||
(36 intermediate revisions by the same user not shown) | |||
Line 2: | Line 2: | ||
=Links= | =Links= | ||
*[https://sourceforge.net/apps/mediawiki/assp/ | *[http://sourceforge.net/projects/assp/ Homepage] | ||
*[http://linux.justinhartman.com/ASSP_Anti-Spam_Proxy_Setup_using_Postfix ASSP on Debian] | |||
*[https://vorkbaard.nl/assp-on-debian-8/ ASSP on Debian 8/Ubuntu 16.04] | |||
=Documentation= | |||
*[http://sourceforge.net/apps/mediawiki/assp/ Assp Wiki] | |||
*[http://wiki.linuxservertech.com/faq/index.php?action=artikel&cat=16&id=20&artlang=en Creating a Proxy Server with ASSP] | |||
=Notes= | =Notes= | ||
==Mysql database== | |||
create database assp; | |||
grant all on assp.* to 'assp'@'localhost identified by 'somepass'; | |||
flush privileges; | |||
And then set myuser and mypassword in the configuration interface of assp | |||
==Installing perl modules== | ==Installing perl modules== | ||
*http://sourceforge.net/projects/assp/files/ASSP%20V2%20multithreading/ASSP%20V2%20module%20installation/mod_inst.pl.1.46.zip | *http://sourceforge.net/projects/assp/files/ASSP%20V2%20multithreading/ASSP%20V2%20module%20installation/mod_inst.pl.1.46.zip | ||
=Perl modules on Debian= | |||
apt-get install libauthen-sasl-perl libberkeleydb-perl libtie-dbi-perl libregexp-optimizer-perl libmail-srs-perl libemail-sender-perl | |||
apt-get install spf-tools-perl libsnmp-perl libtie-dbi-perl libsys-meminfo-perl libmime-types-perl | |||
apt-get install libnet-dns-perl libregexp-optimizer-perl libnet-cidr-lite-perl libarchive-extract-perl | |||
apt-get install libconvert-tnef-perl libconvert-scalar-perl libnet-ip-xs-perl liblingua-stem-snowball-perl liblingua-identify-perl | |||
apt-get install libfile-readbackwards-perl libarchive-zip-perl | |||
apt-get install libnet-cidr-lite-perl | |||
apt-get install libmail-dkim-perl | |||
apt-get install libnet-ldap-perl | |||
apt-get install libnet-smtp-tls-perl | |||
apt-get install libemail-send-perl ?? | |||
apt-get install libmail-spf-perl | |||
apt-get install libemail-mime-modifier-perl libemail-mime-perl | |||
apt-get install libthreads-perl | |||
apt-get install libthreads-shared-perl | |||
apt-get install libschedule-cron-perl | |||
apt-get install libmime-types-perl | |||
apt-get install libhtml-parser-perl | |||
apt-get install libwww-perl libclamav-client-perl libdigest-sha-perl | |||
TODO out of cpan: libemail-valid-perl libnet-cidr-lite-perl libmail-dkim-perl libemail-send-perl libmail-spf-perl libschedule-cron-perl libmime-types-perl | |||
CPAN | |||
File::Scan::ClamAV | |||
Email::Send no long in packages??? | |||
Digest::SHA1 | |||
Convert::Scalar ? | |||
?? libpbkdf2-tiny-perl | |||
Mail::SPF::Query (reluctantly) | |||
ASSP_WordStem | |||
Net::SenderBase | |||
Thread::State | |||
= FAQ = | |||
== Perl modules == | |||
/usr/share/assp/moduleLoadErrors.txt | |||
| |||
== penalty trap address/User unknown == | |||
Account ended up spam trap, see #PBTrapInterval Show Invalid Addresses | |||
== Relaying not allowed == | |||
acceptAllMail | |||
| |||
== Error: Worker_1 accept to client failed IO::Socket::SSL=GLOB(0x7f1875d32488) (timeout: 20 s) : Bad file descriptor == | |||
This probably means you're trying to connect using starttls. Even though it claims to know starttls, i haven't found out how. User 465 with ssl/tls instead. | |||
| |||
== module ASSP_FC could not be loaded == | |||
Get from [http://sourceforge.net/projects/assp/files/ASSP%20V2%20multithreading/filecommander/ http://sourceforge.net/projects/assp/files/ASSP%20V2%20multithreading/filecommander/] | |||
== Memory usage == |
Latest revision as of 21:24, 12 September 2023
Anti-Spam SMTP Proxy
Links
Documentation
Notes
Mysql database
create database assp; grant all on assp.* to 'assp'@'localhost identified by 'somepass'; flush privileges;
And then set myuser and mypassword in the configuration interface of assp
Installing perl modules
Perl modules on Debian
apt-get install libauthen-sasl-perl libberkeleydb-perl libtie-dbi-perl libregexp-optimizer-perl libmail-srs-perl libemail-sender-perl apt-get install spf-tools-perl libsnmp-perl libtie-dbi-perl libsys-meminfo-perl libmime-types-perl apt-get install libnet-dns-perl libregexp-optimizer-perl libnet-cidr-lite-perl libarchive-extract-perl apt-get install libconvert-tnef-perl libconvert-scalar-perl libnet-ip-xs-perl liblingua-stem-snowball-perl liblingua-identify-perl apt-get install libfile-readbackwards-perl libarchive-zip-perl apt-get install libnet-cidr-lite-perl apt-get install libmail-dkim-perl apt-get install libnet-ldap-perl apt-get install libnet-smtp-tls-perl apt-get install libemail-send-perl ?? apt-get install libmail-spf-perl apt-get install libemail-mime-modifier-perl libemail-mime-perl apt-get install libthreads-perl apt-get install libthreads-shared-perl apt-get install libschedule-cron-perl apt-get install libmime-types-perl apt-get install libhtml-parser-perl apt-get install libwww-perl libclamav-client-perl libdigest-sha-perl TODO out of cpan: libemail-valid-perl libnet-cidr-lite-perl libmail-dkim-perl libemail-send-perl libmail-spf-perl libschedule-cron-perl libmime-types-perl
CPAN
File::Scan::ClamAV Email::Send no long in packages??? Digest::SHA1 Convert::Scalar ?
?? libpbkdf2-tiny-perl
Mail::SPF::Query (reluctantly) ASSP_WordStem Net::SenderBase Thread::State
FAQ
Perl modules
/usr/share/assp/moduleLoadErrors.txt
penalty trap address/User unknown
Account ended up spam trap, see #PBTrapInterval Show Invalid Addresses
Relaying not allowed
acceptAllMail
Error: Worker_1 accept to client failed IO::Socket::SSL=GLOB(0x7f1875d32488) (timeout: 20 s) : Bad file descriptor
This probably means you're trying to connect using starttls. Even though it claims to know starttls, i haven't found out how. User 465 with ssl/tls instead.
module ASSP_FC could not be loaded
Get from http://sourceforge.net/projects/assp/files/ASSP%20V2%20multithreading/filecommander/