Hi,
ich suche eine möglichst deutsche anleitung, wie ich mein postfix mit SMTP AUTH installiere, oder kennt jemand vielleicht schon ein fertiges tar.gz?
Die Suche habe ich natürlich schon verwendet, aber irgendwie nichts passendes Gefunden.
P.S.: Es handelt sich um ein debian OS
mfg
kruegerj
Postfix mit SMTP AUTH
-
dr. groovy
- Posts: 53
- Joined: 2002-05-21 23:10
- Location: Frankfurt am Main
- Contact:
Re: Postfix mit SMTP AUTH
Moin!
Im folgenden Thread, gibt es dafür eine passende Anleitung.
http://www.rootforum.org/forum/viewtopi ... t=libsasl2
gruß,
Dr. Groovy
Im folgenden Thread, gibt es dafür eine passende Anleitung.
http://www.rootforum.org/forum/viewtopi ... t=libsasl2
gruß,
Dr. Groovy
Re: Postfix mit SMTP AUTH
danke dir, aber es geht immer noch nicht... das ist doch zum heulen...
Hier meine main.cf
und die master.cf
und die relay_domains
So ueber die xxxxxx will ich mailen, hab das auch alles so schoen eingestellt, wenn ich mich nicht irre wie es in dem link den du geschickt hast stand...
Bekomme aber immer noch relay access denied
P.S. Vielleicht hilft noch die ausgabe von postconf -m:
Hier meine main.cf
Code: Select all
mydomain = xxxxxxxxx.net
myhostname = mail.$mydomain
smtpd_sasl_auth_enable = no
smtpd_sasl_security_options = noanonymous
smtpd_sasl_tls_security_options = $smtpd_sasl_security_options
smtpd_tls_auth_only = no
smtpd_sasl_local_domain = $myhostname
smtp_sasl_auth_enable = no
smtp_sasl_password_maps = hash:/etc/postfix/saslpass
smtp_sasl_security_options = noplaintext
smtp_sasl_tls_security_options = $smtp_sasl_security_options
smtp_sasl_tls_verified_security_options = $smtp_sasl_tls_security_options
tls_random_source = dev:/dev/urandom
command_directory = /usr/sbin
daemon_directory = /usr/lib/postfix
program_directory = /usr/lib/postfix
Code: Select all
smtp inet 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
flush unix n - - 1000? 0 flush
proxymap unix - - n - - proxymap
smtp unix - - - - - smtp
relay unix - - - - - smtp
showq unix n - - - - showq
error unix - - - - - error
local unix - n n - - local
virtual unix - n n - - virtual
lmtp unix - - n - - lmtp
maildrop unix - n n - - pipe
flags=DRhu user=vmail argv=/usr/local/bin/maildrop -d ${recipient}
cyrus unix - n n - - pipe
flags=R user=cyrus argv=/usr/sbin/cyrdeliver -e -m "${extension}" ${user}
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}
smtps inet n - n - - smtpd -o smtpd_tls_wrappermode=yes -o smtpd_sasl_auth_enable=yes
Code: Select all
#/etc/postfix/relay_domains
xxxxxxx.net ok
2te-domain.de ok
Bekomme aber immer noch relay access denied
P.S. Vielleicht hilft noch die ausgabe von postconf -m:
Code: Select all
root@debian~# postconf -m
static
nis
dbm
regexp
environ
proxy
btree
unix
hash
tcp
ldap
pcre
sdbm
root@debian~#
-
dr. groovy
- Posts: 53
- Joined: 2002-05-21 23:10
- Location: Frankfurt am Main
- Contact:
Re: Postfix mit SMTP AUTH
Folgendes in der Main.cf ändern:
Und in der Master.cf:
Und wenn es dann immer noch nicht geht, einfach mal in den Thread aus meinem ersten Post schauen.
gruß,
Dr. Groovy
Code: Select all
mydomain = xxxxxxxxx.net
smtpd_sasl_local_domain =
smtpd_sasl_auth_enable = yes
smtpd_sasl_security_options = noanonymous
broken_sasl_auth_clients = yes
smtpd_recipient_restrictions = permit_sasl_authenticated, permit_mynetworks, reject_unauth_destination
Code: Select all
smtp inet n - n - - smtpdUnd wenn es dann immer noch nicht geht, einfach mal in den Thread aus meinem ersten Post schauen.
gruß,
Dr. Groovy