Displaying 2 results from an estimated 2 matches for "dovecot_auth_user_dunno_what".
2020 Oct 10
2
LMTP Authentication Error
I wish someone could help me. I?m trying to track auth in the lmtp code. Nice code base but I?m having trouble tracking the call stack for the error
Sent from my iPhone
> On Oct 9, 2020, at 08:00, David Morsberger <david at mmpcrofton.com> wrote:
>
> ?Alexander,
>
> Do you see anything wrong in my config?
>
> David
>
> Sent from my iPhone
>
>> On
2020 Oct 11
0
LMTP Authentication Error
...o use
/var/spool/postfix/private/auth/auth-userdb-postfix (i.e. same last
component as the argument to 'unix_listener')
So you'd end up with something like:
service auth {
unix_listener auth-userdb {
path = /var/run/dovecot
mode = 0660 (or whatever the default is)
user = $dovecot_auth_user_dunno_what
group = $dovecot_auth_group_dunno_what
}
unix_listener auth-userdb-postfix {
path = /var/spool/postfix/private/auth
mode = 0660
user = postfix
group = postfix
}
}
And then postfix would have /var/spool/postfix/private/auth/auth-userdb-postfix
for its dovecot-related socke...