Problem mit smtp (postfix + sasl, debian etch)

Dizzy

New Member
Hi,

ich habe das Problem, dass ich immer den Fehler 554 (Relay access denied) bekomme, wenn ich Mails verschicke, deren Postfächer nicht auf dem gleichen Server liegen.

Die mail.err ist leer, die mali.warn existiert nicht mehr.

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

###SASL START####
smtpd_sasl_local_domain=
smtpd_sasl_auth_enable=yes
smtpd_sasl_security_options=noanonymous
broken_sasl_auth_clients=yes
smtpd_recipient_restrictions=permit_mynetworks, permit_sasl_authenticated, reject_unauth_destination

# 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 = 217-20-115-149.internetserviceteam.com
alias_maps = hash:/etc/aliases
alias_database = hash:/etc/aliases
myorigin = /etc/mailname
mydestination = 217-20-115-149.internetserviceteam.com, localhost.internetserviceteam.com, , localhost
relayhost =
mynetworks = 127.0.0.0/8
mailbox_command = /usr/bin/procmail
mailbox_size_limit = 0
recipient_delimiter = +
inet_interfaces = all

### CONFIXX POSTFIX ENTRY ###

virtual_maps = hash:/etc/postfix/confixx_virtualUsers, hash:/etc/postfix/confixx_localDomains

### /CONFIXX POSTFIX ENTRY ###

Bei der Problembehebung habe ich mich vorallem an diesen Thread gehalten: Confixx + Postfix + SASL2 - WHL Community Foren

Habe neben diesem Thread auch etliche andere Foren und Seiten vergebens besucht.

Bitte um Hilfe.

Gruß
Dizzy
 
Hallo,

myhostname = 217-20-115-149.internetserviceteam.com
dieser Hostname ist gefundenes Fressen für viele Spamfilter. :D

Code:
cat /etc/postfix/sasl/smtpd.conf
ps aux
ls -al /var/spool/postfix/var/run/saslauthd
 
Back
Top