Am Samstag, 30. August 2003 21:04 schrieb J. Schirmacher:
Bei mir läuft AMAVIS in Verbindung mit ANTIVIR (normal, nicht AVMailgate). Ich dachte, Amavis prüft alle eingehende E-Mails und nicht, wie oben beschrieben, die ausgehenden E-Mails.
Amavis kann beides. Ich habe das vor kurzem mal in Verbindung mit spamassassin und fetchmail hier diskutiert. Siehe Archiv. In Kürze meine Einstellungen: .fetchmailrc legst du manuell an oder benutzt fetchmailconf. Ich habe mit fetchmailconf begonnen und dann lieber manuell weiter editiert. # Configuration created Sun Jun 22 11:06:15 2003 by fetchmailconf #set logfile "fetchmaillog.txt" set postmaster "fetchmailuser" set nobouncemail set no spambounce set properties "" poll pop.gmx.net with proto POP3 auth password uidl user '123' there with password '--' is user here Dann legst du eine Datei .forward an cat .forward "|IFS=' ' && exec /usr/bin/procmail -f- || exit 75 #user" Damit sollte postfix die Mail transportieren und dadurch auf Viren prüfen. Du leitest also das Mail an den selben User weiter. Wenn du was anderes als antivir verwenden möchtest, zB f-prot, dem ich mittlerweile knapp den Vorzug gebe, dann mußt du in /usr/sbin/amavis einen Eintrag machen. Postfix ist eventuell entsprechend zu konfigurieren, das erspare ich mir jetzt. Weiters legst du eine Datei .procmailrc an, wenn du auf Spam prüfen möchtest. Ich habe zB cat .procmailrc # SpamAssassin sample procmailrc # # Pipe the mail through spamassassin (replace 'spamassassin' with 'spamc' # if you use the spamc/spamd combination) # # The condition line ensures that only messages smaller than 250 kB # (250 * 1024 = 256000 bytes) are processed by SpamAssassin. Most spam # isn't bigger than a few k and working with big messages can bring # SpamAssassin to its knees. # # The lock file ensures that only 1 spamassassin invocation happens # at 1 time, to keep the load down. # :0fw: spamc.lock * < 256000 | spamc # Mails with a score of 15 or higher are almost certainly spam (with 0.05% # false positives according to rules/STATISTICS.txt). Let's put them in a # different mbox. (This one is optional.) #:0: #* ^X-Spam-Level: \*\*\*\*\*\*\*\*\*\*\*\*\*\*\* #almost-certainly-spam # All mail tagged as spam (eg. with a score higher than the set threshold) # is moved to "probably-spam". #:0: #* ^X-Spam-Status: Yes #probably-spam # Work around procmail bug: any output on stderr will cause the "F" in "From" # to be dropped. This will re-add it. :0 * ^^rom[ ] { LOG="*** Dropped F off From_ header! Fixing up. " :0 fhw | sed -e '1s/^/F/' } Al