VirtualTam's bookmarks
34 bookmarks found
-
- https://stackoverflow.com/questions/23931987/apache-proxy-no-protocol-handler-was-valid
- https://serverfault.com/questions/746810/enforcing-client-verification-in-apache-just-for-a-specific-client-certificate
- https://httpd.apache.org/docs/2.4/mod/mod_ssl.html
- https://serverfault.com/questions/639317/ah01896-unable-to-determine-list-of-acceptable-ca-certificates-for-client-authe#842857
- http://www.zeitoun.net/articles/configure-mod_proxy_ajp-with-tomcat/start
- https://wiki.apache.org/tomcat/FAQ/Connectors
- https://serverfault.com/questions/785652/how-do-i-configure-apache-to-proxy-tomcat-using-ajp
-
Publicly Available Spam Filter Training Sets
2017-05-05 - http://www.paulgraham.com/spamarchives.html
- http://untroubled.org/spam/
- https://spamassassin.apache.org/old/publiccorpus/
- https://github.com/dmitrynogin/SpamAssassin
- http://archive.ics.uci.edu/ml/datasets/Spambase + http://statweb.stanford.edu/~tibs/ElemStatLearn/
- https://inclass.kaggle.com/c/adcg-ss14-challenge-02-spam-mails-detection
- https://www.kaggle.com/rtatman/fraudulent-email-corpus
- https://www.kaggle.com/veleon/ham-and-spam-dataset
- https://www.kaggle.com/beatoa/spamassassin-public-corpus
- http://www.csmining.org/index.php/spam-assassin-datasets.html
- http://artinvoice.hu/spams/
- http://www2.aueb.gr/users/ion/data/enron-spam/
- https://security.stackexchange.com/questions/223731/spamassassin-public-corpus
-
Intro to Apache Spark | Databricks
2017-03-08 -
Apache Hadoop
2017-03-06 - https://hadoop.apache.org/docs/current/hadoop-project-dist/hadoop-common/SingleCluster.html
- https://hadoop.apache.org/docs/current/hadoop-project-dist/hadoop-common/ClusterSetup.html
- https://cloud.google.com/hadoop/setting-up-a-hadoop-cluster
- https://www-ssl.intel.com/content/dam/www/public/us/en/documents/white-papers/best-practices-for-implementing-apache-hadoop-paper.pdf
- https://www-ssl.intel.com/content/dam/doc/white-paper/cloud-computing-optimizing-hadoop-deployments-paper.pdf
-
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
-
Pro: no need to setup a DNS server to test virtualhosts Con: keep in mind that all "fake" hosts will point to 127.0.0.1!
- Use /etc/hosts to declare test hosts / domains / subdomains
#<ip-address> <hostname.domain.org> <hostname> 127.0.0.1 localhost.localdomain localhost 127.0.0.1 host.localdomain host 127.0.0.1 sub.host.localdomain sub.host ::1 localhost.localdomain localhost
- Allow per-user virtualhost definition in either (depending on your distro)
/etc/httpd/conf/httpd.conf
/etc/apache2/apache2.conf
Include
/home/albert/.httpd/*.conf
- Profit! Create virtualhosts with local hostnames :)