traced
Registered User
Hallo Ihr,
ich habe hier auf einem Testsystem ein Mailgateway mit Mailscanner in Verbindung mit Postfix, Spamassassin und ClamAV am laufen, funktioniert auch alles wunderbar.
Wenn die Mails durch das Greylisting durchkommen werden sie durch Postfix im "hold" Verzeichnis abgelegt, wo sich Mailscanner alle 6 Sekunden die Mails rausholt und auf Spam und Viren prüft. Danach werden sie weiterverschickt. Alles kein Thema
Jetzt wollte ich aber noch ein wenig zusätzliche Sicherheit, und habe mir eine Testversion von Kaspersky4Mailserver beschafft. Das würde im Prinzip auch wunderbar funktionieren, aber:
Jetzt tauchen im Mailwatch die Mails doppelt auf, und auch gehen sie anscheinend zwei mal durch Spamassassin, auch im Header der Mails taucht der Spamassassin jetzt zweimal auf.
Hattet Ihr dieses Setup schonmal und könnt mir Tips geben?
Alternativ könnte ich natürlich Kaspersky4Mailserver auf einem extra Server laufen lassen, und dann nur saubere Mails an das Mailgateway per SMTP weiterschicken. Das wäre aber eine Notlösung...
Danke schonmal,
viele Grüße
Basti
PS: Hier mal meine Config Files für Postfix, dann seht Ihr wie alles eingebunden ist:
/etc/postfix/main.cf
und /etc/postfix/master.cf
Falls Ihr noch mehr Infos braucht bitte bescheid sagen
ich habe hier auf einem Testsystem ein Mailgateway mit Mailscanner in Verbindung mit Postfix, Spamassassin und ClamAV am laufen, funktioniert auch alles wunderbar.
Wenn die Mails durch das Greylisting durchkommen werden sie durch Postfix im "hold" Verzeichnis abgelegt, wo sich Mailscanner alle 6 Sekunden die Mails rausholt und auf Spam und Viren prüft. Danach werden sie weiterverschickt. Alles kein Thema
Jetzt wollte ich aber noch ein wenig zusätzliche Sicherheit, und habe mir eine Testversion von Kaspersky4Mailserver beschafft. Das würde im Prinzip auch wunderbar funktionieren, aber:
Jetzt tauchen im Mailwatch die Mails doppelt auf, und auch gehen sie anscheinend zwei mal durch Spamassassin, auch im Header der Mails taucht der Spamassassin jetzt zweimal auf.
Hattet Ihr dieses Setup schonmal und könnt mir Tips geben?
Alternativ könnte ich natürlich Kaspersky4Mailserver auf einem extra Server laufen lassen, und dann nur saubere Mails an das Mailgateway per SMTP weiterschicken. Das wäre aber eine Notlösung...
Danke schonmal,
viele Grüße
Basti
PS: Hier mal meine Config Files für Postfix, dann seht Ihr wie alles eingebunden ist:
/etc/postfix/main.cf
Code:
# See /usr/share/postfix/main.cf.dist for a commented, more complete version
#############
# Debian specific: Specifying a file name will cause the first
# line of that file to be used as the name. The Debian default
# is /etc/mailname.
#myorigin = /etc/mailname
smtpd_banner = $myhostname ESMTP $mail_name (Debian/GNU)
biff = no
# appending .domain is the MUA's job.
append_dot_mydomain = no
# Uncomment the next line to generate "delayed mail" warnings
#delay_warning_time = 4h
##################
# TLS parameters
############
smtpd_tls_cert_file=/etc/ssl/certs/ssl-cert-snakeoil.pem
smtpd_tls_key_file=/etc/ssl/private/ssl-cert-snakeoil.key
smtpd_use_tls=yes
smtpd_tls_session_cache_database = btree:${queue_directory}/smtpd_scache
smtp_tls_session_cache_database = btree:${queue_directory}/smtp_scache
############
# See /usr/share/doc/postfix/TLS_README.gz in the postfix-doc package for
# information on enabling SSL in the smtp client.
##################
myhostname = mail.xpear.de
alias_maps = hash:/etc/aliases
alias_database = hash:/etc/aliases
myorigin = /etc/mailname
mydestination = mail.xxx.de, localhost.xxx.de, localhost
relayhost =
# Für diese Domains ist das Relay erlaubt:
#####
#relay_domains = hash:/etc/postfix/relay_domains
relay_domains = mysql:/etc/postfix/mysql-relay_domains.cf
# Hier ist die Zuweisung Mailempfänger -> Weiterleitung an z.B. Mailserver
#####
#transport_maps = hash:/etc/postfix/transport
transport_maps = mysql:/etc/postfix/mysql-transport.cf
# Nur für die hier angelegten User werden mails angenommen / weitergeleitet
#####
#relay_recipient_maps = hash:/etc/postfix/relay_recipients
relay_recipient_maps = mysql:/etc/postfix/mysql-relay_recipients.cf
mynetworks = 127.0.0.0/8
mailbox_size_limit = 0
recipient_delimiter = +
inet_interfaces = all
# Mailscanner integration
header_checks = regexp:/etc/postfix/header_checks
# Dadurch landen die Mails automatisch im /hold/ Verzeichnis,
# aus welchem sich Mailscanner die Mails holt, scannt, und
# dann automatisch weiterschickt.
# Hier noch ein paar Restrictions, um nicht alle Mails anzunehmen:
smtpd_helo_required = yes
smtpd_client_restrictions =
smtpd_helo_restrictions =
smtpd_sender_restrictions =
smtpd_recipient_restrictions =
permit_mynetworks,
reject_unauth_destination,
reject_invalid_hostname,
reject_non_fqdn_sender,
reject_unknown_sender_domain,
reject_non_fqdn_recipient,
reject_unknown_recipient_domain,
reject_unlisted_recipient,
check_policy_service inet:127.0.0.1:60000
## test
strict_rfc821_envelopes = yes
und /etc/postfix/master.cf
Code:
#
# Postfix master process configuration file. For details on the format
# of the file, see the master(5) manual page (command: "man 5 master").
#
# ==========================================================================
# service type private unpriv chroot wakeup maxproc command + args
# (yes) (yes) (yes) (never) (100)
# ==========================================================================
smtp inet n - - - 3 smtpd
##<KIS55> ## Added by Kaspersky Anti-Virus Installer ##
-o content_filter=lmtp:127.0.0.1:10030
## Added by Kaspersky Anti-Virus Installer ##<KIS55>
#submission inet n - - - - smtpd
# -o smtpd_enforce_tls=yes
# -o smtpd_sasl_auth_enable=yes
# -o smtpd_client_restrictions=permit_sasl_authenticated,reject
#smtps inet n - - - - smtpd
# -o smtpd_tls_wrappermode=yes
# -o smtpd_sasl_auth_enable=yes
# -o smtpd_client_restrictions=permit_sasl_authenticated,reject
#628 inet n - - - - qmqpd
pickup fifo n - - 60 1 pickup
##<KIS55> ## Added by Kaspersky Anti-Virus Installer ##
-o content_filter=lmtp:127.0.0.1:10030
## Added by Kaspersky Anti-Virus Installer ##<KIS55>
cleanup unix n - - - 0 cleanup
qmgr fifo n - n 300 1 qmgr
#qmgr fifo n - - 300 1 oqmgr
tlsmgr unix - - - 1000? 1 tlsmgr
rewrite unix - - - - 3 trivial-rewrite
bounce unix - - - - 0 bounce
defer unix - - - - 0 bounce
trace unix - - - - 0 bounce
verify unix - - - - 1 verify
flush unix n - - 1000? 0 flush
proxymap unix - - n - 3 proxymap
smtp unix - - - - 3 smtp
# When relaying mail as backup MX, disable fallback_relay to avoid MX loops
relay unix - - - - - smtp
-o fallback_relay=
# -o smtp_helo_timeout=5 -o smtp_connect_timeout=5
showq unix n - - - 3 showq
error unix - - - - 3 error
discard unix - - - - 3 discard
local unix - n n - 3 local
virtual unix - n n - 3 virtual
lmtp unix - - - - 3 lmtp
anvil unix - - - - 1 anvil
scache unix - - - - 1 scache
#
# ====================================================================
# Interfaces to non-Postfix software. Be sure to examine the manual
# pages of the non-Postfix software to find out what options it wants.
#
# Many of the following services use the Postfix pipe(8) delivery
# agent. See the pipe(8) man page for information about ${recipient}
# and other message envelope options.
# ====================================================================
#
# maildrop. See the Postfix MAILDROP_README file for details.
# Also specify in main.cf: maildrop_destination_recipient_limit=1
#
maildrop unix - n n - - pipe
flags=DRhu user=vmail argv=/usr/bin/maildrop -d ${recipient}
#
# See the Postfix UUCP_README file for configuration details.
#
uucp unix - n n - - pipe
flags=Fqhu user=uucp argv=uux -r -n -z -a$sender - $nexthop!rmail ($recipient)
#
# Other external delivery methods.
#
ifmail unix - n n - - pipe
flags=F user=ftn argv=/usr/lib/ifmail/ifmail -r $nexthop ($recipient)
bsmtp unix - n n - - pipe
flags=Fq. user=bsmtp argv=/usr/lib/bsmtp/bsmtp -t$nexthop -f$sender $recipient
scalemail-backend unix - n n - 2 pipe
flags=R user=scalemail argv=/usr/lib/scalemail/bin/scalemail-store ${nexthop} ${user} ${extension}
mailman unix - n n - - pipe
flags=FR user=list argv=/usr/lib/mailman/bin/postfix-to-mailman.py
${nexthop} ${user}
#<KIS55>
127.0.0.1:10030 inet n n n - 20 spawn
user=kluser argv=/opt/kav/5.5/kav4mailservers/bin/smtpscanner
127.0.0.1:10031 inet n - n - 21 smtpd
-o content_filter=
-o local_recipient_maps=
-o relay_recipient_maps=
-o smtpd_restriction_classes=
-o smtpd_client_restrictions=
-o smtpd_helo_restrictions=
-o smtpd_sender_restrictions=
-o mynetworks=127.0.0.0/8
-o strict_rfc821_envelopes=yes
-o smtpd_error_sleep_time=0
-o smtpd_soft_error_limit=1001
-o smtpd_hard_error_limit=1000
-o myhostname=mail.xpear.de
#<KIS55>
Falls Ihr noch mehr Infos braucht bitte bescheid sagen