View previous topic :: View next topic |
Author |
Message |
zykes n00b
Joined: 27 Nov 2006 Posts: 8
|
Posted: Wed Feb 28, 2007 10:28 am Post subject: Postfix Cyrus-SASL Courier-IMAP Courier-AuthLib |
|
|
I am trying to get the mail system to work, but the stuff my logs turn up are getting me to pull my hair.
Code: |
Feb 28 11:14:42 mariachi postfix/master[2434]: warning: /usr/lib/postfix/smtpd: bad command startup -- throttling
Feb 28 11:19:40 mariachi postfix/postfix-script: stopping the Postfix mail system
Feb 28 11:19:40 mariachi postfix/master[2434]: terminating on signal 15
Feb 28 11:19:41 mariachi postfix/postfix-script: starting the Postfix mail system
Feb 28 11:19:41 mariachi postfix/master[3530]: daemon started -- version 2.3.6, configuration /etc/postfix
Feb 28 11:20:12 mariachi postfix/smtpd[3916]: warning: database /etc/mail/aliases.db is older than source file /etc/mail/aliases
Feb 28 11:20:12 mariachi postfix/smtpd[3916]: warning: SASL: Connect to smtpd failed: No such file or directory
Feb 28 11:20:12 mariachi postfix/smtpd[3916]: fatal: no SASL authentication mechanisms
Feb 28 11:20:13 mariachi postfix/master[3530]: warning: process /usr/lib/postfix/smtpd pid 3916 exit status 1
Feb 28 11:20:13 mariachi postfix/master[3530]: warning: /usr/lib/postfix/smtpd: bad command startup -- throttling
|
It doesn't recieve any mails so, I guess it has something to do with sasl.
smtpd.conf
Code: |
pwcheck_method: authdaemond
log_level: 3
mech_list: PLAIN LOGIN
authdaemond_path:/var/lib/courier/authdaemon/socket
|
Courier-AuthLib and everything is running. so I really dunno what is wrong. |
|
Back to top |
|
|
magic919 Advocate
Joined: 17 Jun 2005 Posts: 2182 Location: Berkshire, UK
|
Posted: Wed Feb 28, 2007 5:24 pm Post subject: |
|
|
Quote: | warning: database /etc/mail/aliases.db is older than source file /etc/mail/aliases |
Why guess? Just read the log. What to do is left as an exercise for the reader. |
|
Back to top |
|
|
Mr.C. n00b
Joined: 25 Feb 2007 Posts: 35
|
Posted: Wed Feb 28, 2007 6:50 pm Post subject: |
|
|
You have several problems:
Feb 28 11:14:42 mariachi postfix/master[2434]: warning: /usr/lib/postfix/smtpd: bad command startup -- throttling
this means there is something wrong starting the smtpd service. You need to discover why postfix is not starting properly. This can be a bad command line in master.cf, improper main.cf settings, or other.
Feb 28 11:20:12 mariachi postfix/smtpd[3916]: warning: database /etc/mail/aliases.db is older than source file /etc/mail/aliases
This one means the aliases database has been updated, but no postalias has been run to update the .db file.
Don't ignore these or any warnings. |
|
Back to top |
|
|
|