Postfix verbindet sich unerwünschterweise mit Amavis

Postfix, QMail, Sendmail, Dovecot, Cyrus, Courier, Anti-Spam
me_2
Posts: 33
Joined: 2006-03-05 11:29
 

Postfix verbindet sich unerwünschterweise mit Amavis

Post by me_2 »

Hallo,

Ich habe ein kleines Problem.
Emails kann ich versenden und auch empfangen, nur ist in der mails.warn folgender Eintrag minütlich zu finden:

Code: Select all

warning: connect to transport amavis: Connection refused
Aber ich habe Amavis schon längst deinstalliert und die Einträge davon in Postfix herausgenommen.

master.cf

Code: Select all

#
# ==========================================================================
# service type  private unpriv  chroot  wakeup  maxproc command + args
#               (yes)   (yes)   (yes)   (never) (100)
# ==========================================================================
smtp      inet  n       -       -       -       -       smtpd -v
# submission inet n      -       -       -       -       smtpd
#	-o smtpd_etrn_restrictions=reject
#628      inet  n       -       -       -       -       qmqpd
pickup    fifo  n       -       -       60      1       pickup
cleanup   unix  n       -       -       -       0       cleanup
qmgr      fifo  n       -       -       300     1       qmgr
#qmgr     fifo  n       -       -       300     1       oqmgr
rewrite   unix  -       -       -       -       -       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       -       -       proxymap
smtp      unix  -       -       -       -       -       smtp -v
relay     unix  -       -       -       -       -       smtp
#       -o smtp_helo_timeout=5 -o smtp_connect_timeout=5
showq     unix  n       -       -       -       -       showq
error     unix  -       -       -       -       -       error
local     unix  -       n       n       -       -       local
virtual   unix  -       n       n       -       -       virtual
lmtp      unix  -       -       n       -       -       lmtp
anvil     unix  -       -       n       -       1       anvil

maildrop  unix  -       n       n       -       -       pipe
  flags=DRhu user=vmail argv=/usr/local/bin/maildrop -d ${recipient}
uucp      unix  -       n       n       -       -       pipe
  flags=Fqhu user=uucp argv=uux -r -n -z -a$sender - $nexthop!rmail ($recipient)
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 -d -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}
#only used by postfix-tls
tlsmgr	  unix	-	-	n	300	1	tlsmgr
smtps	  inet	n	-	n	-	-	smtpd -o smtpd_tls_wrappermode=yes -o smtpd_sasl_auth_enable=yes
587	  inet	n	-	n	-	-	smtpd -o smtpd_enforce_tls=yes -o smtpd_sasl_auth_enable=yes

discard   unix  -       -       -       -       -       discard
scache	  unix	-	-	n	-	1	scache


postconf -n

Code: Select all

alias_database = hash:/etc/mail/aliases
alias_maps = hash:/etc/mail/aliases
append_dot_mydomain = no
biff = no
broken_sasl_auth_clients = yes
config_directory = /etc/postfix
home_mailbox = Maildir/
inet_interfaces = all
mailbox_size_limit = 0
mydestination = $myhostname $mydomain localhost localhost.$mydomain
mydomain = xxx.de
myhostname = mail.xxx.de
mynetworks = 127.0.0.0/8
myorigin = $mydomain
receive_override_options = no_address_mappings
recipient_delimiter = +
relay_domains = $mydomain $mydestination
relayhost =
smtpd_banner = $myhostname ESMTP Exchange Server 2003 (Microsoft Windows 2003)
smtpd_client_restrictions = reject_invalid_hostname
smtpd_helo_required = yes
smtpd_helo_restrictions = reject_invalid_hostname
smtpd_recipient_restrictions = permit_mynetworks,  permit_sasl_authenticated  reject_invalid_hostname,  reject_non_fqdn_hostname,  reject_non_fqdn_recipient,  reject_unknown_recipient_domain,  check_recipient_mx_access cidr:/etc/postfix/mx_access,  reject_unauth_destination,  permit
smtpd_sasl_auth_enable = yes
smtpd_sasl_local_domain = xxx.de
smtpd_sasl_path = private/auth
smtpd_sasl_security_options = noanonymous
smtpd_sasl_type = dovecot
smtpd_sender_restrictions = reject_unknown_address
smtpd_tls_CAfile = /etc/postfix/ssl/mail-xxx-de.crt
smtpd_tls_CApath = /etc/postfix/ssl
smtpd_tls_auth_only = yes
smtpd_tls_dcert_file = /etc/postfix/ssl/mail-xxx-de.crt
smtpd_tls_dkey_file = /etc/postfix/ssl/mail-xxxde.key
smtpd_tls_received_header = yes
smtpd_tls_security_level = may
smtpd_tls_session_cache_database = btree:/var/run/smtpd_tls_session_cache
smtpd_use_tls = yes
strict_rfc821_envelopes = yes

habt ihr eine Idee, warum dennoch amavis gestartet werden will?



LG
User avatar
nyxus
Posts: 626
Joined: 2002-09-13 08:41
Location: Lübeck
 

Re: Postfix verbindet sich unerwünschterweise mit Amavis

Post by nyxus »

vermutlich hast Du noch Mails in der Queue, die diesen Transport verwenden wollen:

Code: Select all

postqueue -p
Lösen kann man das Problem auf jeden Fall durch erneutes korrektes installieren von Amavis (vermutlich gibt es aber auch einfachere Wege ... ;-) ).
me_2
Posts: 33
Joined: 2006-03-05 11:29
 

Re: Postfix verbindet sich unerwünschterweise mit Amavis

Post by me_2 »

Es war tatsächlich so, ich danke!