VirtualTam's bookmarks
34 bookmarks found
-
Mind maps
2017-08-22 -
Postfix / Dovecot / ClamAV / Spamassassin
2016-12-12 A whole buncha' links with contradictory information on how to properly set up a mail server ;-)
Disclaimer - My primary goal is to add proper Spamassassin (SA) filtering to an existing Postfix / Dovecot / roundcube installation, i.e.:
- use SA as a milter (mail filter) to attribute a spam score to incoming mail
- keep SA up-to-date
- train SA with spam/ham from the users' virtual mailboxes
- train SA according to user decisions (actual user or trained mail client with automatic/trained spam detection)
Here we go!
Most useful links; I stumbled upon them as soon as I knew what to look for:
- https://workaround.org/ispmail/jessie/spamassassin
- https://lelutin.ca/posts/installing_postfix_-_clamav_-_spamassassin_-_dovecot_-_postfixadmin_on_debian_squeeze/
Official:
- https://spamassassin.apache.org
- https://spamassassin.apache.org/gtube/
- https://wiki.apache.org/spamassassin/FrequentlyAskedQuestions
Debian:
- https://wiki.debian.org/DebianSpamAssassin
- http://www.stefan-seelmann.de/wiki/mailserver-postfix-dovecot (wheezy)
- https://www.christianroessler.net/tech/2015/spamassassin-dovecot-postfix.html
- https://www.digitalocean.com/community/tutorials/how-to-configure-a-mail-server-using-postfix-dovecot-mysql-and-spamassassin
CentOS:
- https://www.rosehosting.com/blog/how-to-install-and-integrate-spamassassin-with-postfix-on-a-centos-6-vps/
- https://www.rosehosting.com/blog/how-to-set-up-server-side-email-filtering-with-dovecot-sieve-and-roundcube-on-a-centos-6-vps/
- http://shisaa.jp/postset/mailserver-1.html - a bit outdated but plenty of useful information regarding how components interact with each other
- http://wiki2.dovecot.org/HowTo
RHEL:
- https://access.redhat.com/documentation/en-US/Red_Hat_Enterprise_Linux/7/html/System_Administrators_Guide/ch-Mail_Servers.html
- https://access.redhat.com/documentation/en-US/Red_Hat_Enterprise_Linux/7/html/System_Administrators_Guide/s1-email-mta.html
- https://access.redhat.com/documentation/en-US/Red_Hat_Enterprise_Linux/7/html/System_Administrators_Guide/s1-email-mda.html
-
Jenkins - Display Information About Nodes
2016-04-12 1for (agent in hudson.model.Hudson.instance.slaves) { 2 println('===================='); 3 println('Name: ' + agent.name); 4 println('getLabelString: ' + agent.getLabelString()); 5 println('getNumExectutors: ' + agent.getNumExecutors()); 6 println('getRemoteFS: ' + agent.getRemoteFS()); 7 println('getMode: ' + agent.getMode()); 8 println('getRootPath: ' + agent.getRootPath()); 9 println('getDescriptor: ' + agent.getDescriptor()); 10 println('getComputer: ' + agent.getComputer()); 11 println('\tcomputer.isAcceptingTasks: ' + agent.getComputer().isAcceptingTasks()); 12 println('\tcomputer.isLaunchSupported: ' + agent.getComputer().isLaunchSupported()); 13 println('\tcomputer.getConnectTime: ' + agent.getComputer().getConnectTime()); 14 println('\tcomputer.getDemandStartMilliseconds: ' + agent.getComputer().getDemandStartMilliseconds()); 15 println('\tcomputer.isOffline: ' + agent.getComputer().isOffline()); 16 println('\tcomputer.countBusy: ' + agent.getComputer().countBusy()); 17 //if (agent.name == 'NAME OF NODE TO DELETE') { 18 // println('Shutting down node!!!!'); 19 // agent.getComputer().setTemporarilyOffline(true,null); 20 // agent.getComputer().doDoDelete(); 21 //} 22 println('\tcomputer.getLog: ' + agent.getComputer().getLog()); 23 println('\tcomputer.getBuilds: ' + agent.getComputer().getBuilds()); 24}
-
Comment j'ai pourri le web
2014-04-07