Hi -
I want to send out emails via my isp's smtp server. I added these lines
to my /etc/postfix/main.cf:
relayhost = smtp.sbcglobal.yahoo.com
smtpd_sasl_auth_enable = yes
smtp_sasl_password_maps = hash:/etc/postfix/sasl_passwd
Then I created the /etc/postfix/sasl_passwd file:
smtp.sbcglobal.yahoo.com xxx:xxxxxxx
Then I restarted the postfix server.
I tried to send out an email, and it looks like postfix is not even
trying to do authentication. Here are some lines from
/var/log/mail/info:
Nov 24 14:22:21 frank postfix/master[8647]: terminating on signal 15
Nov 24 14:22:22 frank postfix/postfix-script: starting the Postfix mail
system
Nov 24 14:22:22 frank postfix/master[8832]: daemon started -- version
2.0.13
Nov 24 14:23:04 frank postfix/pickup[8837]: E93726EDEC: uid=501
from=<waxmop>
Nov 24 14:23:04 frank postfix/cleanup[8849]: E93726EDEC:
message-id=<20031124192304.GA8839@frank.overlook.homelinux .net>
Nov 24 14:23:05 frank postfix/nqmgr[8838]: E93726EDEC:
from=<waxmop@overlook.homelinux.net>, size=516, nrcpt=1 (queue active)
Nov 24 14:23:05 frank postfix/smtp[8851]: E93726EDEC:
to=<matthew.wilson@clev.frb.org>,
relay=smtp-sbc.mail.yahoo.com[66.163.171.137], delay=1, status=bounced
(host smtp-sbc.mail.yahoo.com[66.163.171.137] said: 530 authentication
required - for help go to
http://help.yahoo.com/help/us/sbc/ds...op/pop-11.html (in reply to
MAIL FROM command))
Nov 24 14:23:05 frank postfix/cleanup[8849]: B5A216EDEB:
message-id=<20031124192305.B5A216EDEB@frank.overlook.homel inux.net>
Nov 24 14:23:05 frank postfix/nqmgr[8838]: B5A216EDEB: from=<>,
size=2566, nrcpt=1 (queue active)
Nov 24 14:23:05 frank postfix/local[8854]: B5A216EDEB:
to=<waxmop@overlook.homelinux.net>, relay=local, delay=0, status=sent
("|/usr/bin/procmail -Y -a $DOMAIN")
What am I missing?