Quote:
|
Originally Posted by binjured
Near as I can tell, I did! What else am I missing? I can connect and authorize with the pop3d-ssl server perfectly fine, I just can't send mail...
The thing that pisses me off more than anything is that secure SMTP was working perfectly fine before I had to restart the server, now suddenly only plain/TLS works.
|
What about
:
/etc/postfix/sasl/smtpd.conf:
pwcheck_method: saslauthd auxprop
mech_list: plain login
allow_plaintext: true
auxprop_plugin: sql
sql_engine: mysql
sql_hostnames: localhost
sql_user: ***
sql_passwd: ***
sql_database: ***
sql_select: select password from users where email = '%u'
sql_verbose: yes
and:
/etc/default/saslauthd:
# This needs to be uncommented before saslauthd will be run automatically
START=yes
# You must specify the authentication mechanisms you wish to use.
# This defaults to "pam" for PAM support, but may also include
# "shadow" or "sasldb", like this:
# MECHANISMS="pam shadow"
MECHANISMS="pam"
PARAMS="/var/spool/postfix/var/run/saslauthd -r"
Just give it a try, don't know if it will solve the problem