Ich quäle mich schon seit Tagen durch verschiedene Howto's aus diesem und anderen Foren, aber es will einfach nicht klappen, dass Emailadressen funktionieren, die ich per Confixx 3.0.5 anlege:
Die Fehlermeldung in /var/log/mail.log sieht folgend aus:
Code: Select all
Jan 19 17:00:59 eco3027 postfix/smtpd[28954]: NOQUEUE: reject: RCPT from host177-135.pool80105.interbusiness.it[80.105.135.177]: 550 <info@eine-email-adresse.at>: Recipient address rejected: User unknown in virtual alias table; from=<ligouri@24.com> to=<info@eine-email-adresse.at> proto=SMTP helo=<host177-135.pool80105.interbusiness.it>Ich habe "Dovcot" als POP3/IMAP-Mailserver installiert und für Postfix aus diversen Howtos ein "Smtp-Auth" über SASL zusammen geflickt:
Demnach sehen meine Konfigurationsdateien so aus:
/etc/postfix/main.cf:
Code: Select all
# See /usr/share/postfix/main.cf.dist for a commented, more complete version
smtpd_banner = $myhostname ESMTP
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 = 2h
alias_maps = hash:/etc/aliases
alias_database = hash:/etc/aliases
myorigin = /etc/mailname
mydestination = echo3027.netclusive.de, localhost
myhostname = eco3027netclusive.de
mynetworks = 127.0.0.0/8
mailbox_command = /usr/bin/procmail
mailbox_size_limit = 0
recipient_delimiter = +
home_mailbox = Maildir/
smtpd_sasl_auth_enable = yes
smtpd_sasl_local_domain = $myhostname
smtpd_sasl_security_options = noanonymous
broken_sasl_auth_clients = yes
smtpd_recipient_restrictions = permit_mynetworks, permit_sasl_authenticated, reject_unauth_destination
disable_vrfy_command = yes
smtpd_use_tls = yes
smtpd_tls_cert_file = /etc/postfix/smtpd.cert
smtpd_tls_key_file = /etc/postfix/smtpd.key
smtpd_helo_restrictions = permit_mynetworks, permit
#Virenscanner
content_filter = amavis:
# confixx postfix entry
virtual_maps = hash:/etc/postfix/confixx_virtualUsers, hash:/etc/postfix/confixx_localDomainsCode: Select all
# ==========================================================================
# service type private unpriv chroot wakeup maxproc command + args
# (yes) (yes) (yes) (never) (100)
# ==========================================================================
smtp inet n - n - - smtpd
pickup fifo n - - 60 1 pickup
cleanup unix n - - - 0 cleanup
qmgr fifo n - - 300 1 qmgr
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
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
#
# Interfaces to non-Postfix software. Be sure to examine the manual
# pages of the non-Postfix software to find out what options it wants.
#
# maildrop. See the Postfix MAILDROP_README file for details.
#
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 fifo - - 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
# Amavis #
localhost:10025 inet n - n - - smtpd -o content_filter=
amavis unix - n n - 4 pipe user=amavis argv=/usr/sbin/amavisd $sender $recipient
#amavis unix - n n - - pipe user=amavis argv=/usr/sbin/amavis ${sender} ${recipie
#localhost:10025 inet n - n - 10 smtpd -o content_filter=Liebe Grüsse
Jürgen[/quote]