Timo Sirainen schrieb:
On Fri, 2010-07-09 at 17:13 +0200, Leander S. wrote:

server postfix/pipe[1603]: 5A0BE7B6A9: to=<ad...@server.netocean>, relay=dovecot, delay=0.64, delays=0.02/0.15/0/0.47, dsn=4.3.0, status=deferred (temporary failure)

Make sure deliver can write to logs and look at its log files.
http://wiki.dovecot.org/LDA#logging



Thanks. I figured what I miss now-I just don't get where to merge this propper now. I would love to get a hint to get a reasonable config.



This is how my auth section currently looks like:



auth default {
 mechanisms = cram-md5

 passdb sql {
   args = /usr/local/etc/dovecot-sql.conf
 }

 userdb sql {
   args = /usr/local/etc/dovecot-sql.conf
 }

#  user = nobody

 socket listen {
   master {
     path = /var/run/dovecot/auth-master
     mode = 0600
   }

   client {
     path = /var/spool/postfix/private/auth
     mode = 0660
     user = postfix
     group = postfix
   }
 }
}






And apparently I need to add something like that now:

service auth {
 unix_listener auth-master {
   group =
   mode = 0600
   user =
 }
}

and apparently auth-master will be too much in that case since auth-userdb should do the job.




Thanks

Reply via email to