QMail: Unterschied zwischen den Versionen

Aus crazylinux.de
Zur Navigation springen Zur Suche springen
(added more)
(added)
Zeile 72: Zeile 72:
http://www.fehcom.de/qmail/spamcontrol/README_spamcontrol.html<br>
http://www.fehcom.de/qmail/spamcontrol/README_spamcontrol.html<br>
http://www.nrg4u.com/<br>
http://www.nrg4u.com/<br>
[http://www.dt.e-technik.uni-dortmund.de/~ma/qmail-bugs.html Qmail Bugs and Wishlist]
[http://www.dt.e-technik.uni-dortmund.de/~ma/qmail-bugs.html Qmail Bugs and Wishlist]<br>
http://www.gentoo.org/doc/de/qmail-howto.xml<br>
http://www.gentoo.org/doc/de/qmail-howto.xml<br>
http://jclement.ca/docs/debian_qmail/debian_qmail/<br>
http://jclement.ca/docs/debian_qmail/debian_qmail/<br>
Zeile 78: Zeile 78:
http://www.cargal.org/downloads/HOW-TO/debianqmail/debianqmail.html<br>
http://www.cargal.org/downloads/HOW-TO/debianqmail/debianqmail.html<br>
http://www.enderunix.org/spamguard/<br>
http://www.enderunix.org/spamguard/<br>
http://www.chrishardie.com/tech/qmail/qmail-antispam.html
http://www.chrishardie.com/tech/qmail/qmail-antispam.html<br>
http://qmail-scanner.sourceforge.net/ und http://toribio.apollinare.org/qmail-scanner/

Version vom 14. November 2006, 22:11 Uhr

als Vorlage diente http://www.debianhowto.de/doku.php/de:howtos:sarge:qmail

Installation

apt-get install qmail-src ucspi-tcp-src

UCSPI-TLS (UCSPI-SSL patched)

Ein Ersatz für inetd

Qmail bauen

Qmail patchen mit Spamcontrol


Konfiguration

Supervise

/etc/tcp.smtp

127.0.0.1:allow,RELAYCLIENT="",QMAILQUEUE="/var/qmail/bin/qmail-scanner-queue.pl",QS_SPAMASSASSIN="1"
:allow,MFDNSCHECK="",SMTPAUTH="",BADMIMETYPE="",BADLOADERTYPE="M",QMAILQUEUE="/var/qmail/bin/qmail-scanner-queue.pl"

cdb neubauen:

tcprules /etc/tcp.smtp.cdb /etc/tcp.smtp.tmp < /etc/tcp.smtp

Qmail

Start-Config:

echo "meinhostname.domain.tld" > /etc/qmail/me

Maildrop

Maildrop ist ein Mail Delivery Agent (MDA), der zur serverseitigen Filterung von E-Mail Nachrichten verwendet wird. Er wird standardmäßig mit dem Courier Mail Transfer Agent (MTA) ausgeliefert, arbeitet jedoch auch mit anderen MTAs, wie qmail zusammen. (wikipedia.org)

um z.b. Spammails gleich in den Spamordner zu verschieben

.mailfilter

#logfile "/tmp/maildrop.log"

# If Spamassassin says the mail is spam, put it in the Spam folder.
##
if ( /^X-Spam-Status: *Yes/)
{
        to "Maildir/.Spam"
}
to Maildir

.qmail

|preline /usr/bin/maildrop .mailfilter

Betrieb

Logfiles

QMail schreibt seine Daten in dem im TAI64N-Format in seine Logfiles. Das mag zwar für die Auswertung der Logfiles sehr nützlich sein, lesbar ist es nicht.

cat /var/log/qmail/smtpd/current | tai64nlocal

Start/Stop/Status

qmailctl
Usage: /usr/sbin/qmailctl {start|stop|restart|doqueue|flush|reload|stat|pause|cont|cdb|queue|help}
mygretchen:/# qmailctl stat
/service/qmail-send: up (pid 5465) 151263 seconds
/service/qmail-send/log: up (pid 2106) 151373 seconds
/service/qmail-smtpd: up (pid 2109) 151373 seconds
/service/qmail-smtpd/log: up (pid 2111) 151373 seconds
messages in queue: 0
messages in queue but not yet preprocessed: 0

Links

http://www.lifewithqmail.org/lwq.html
http://www.fehcom.de/qmail/spamcontrol/README_spamcontrol.html
http://www.nrg4u.com/
Qmail Bugs and Wishlist
http://www.gentoo.org/doc/de/qmail-howto.xml
http://jclement.ca/docs/debian_qmail/debian_qmail/
http://www.debianhowto.de/doku.php/de:howtos:sarge:qmail
http://www.cargal.org/downloads/HOW-TO/debianqmail/debianqmail.html
http://www.enderunix.org/spamguard/
http://www.chrishardie.com/tech/qmail/qmail-antispam.html
http://qmail-scanner.sourceforge.net/ und http://toribio.apollinare.org/qmail-scanner/