On 22.10.2019 10.33, Steve Matzura via dovecot wrote:
> Sorry for having lost the original chain of this problem. It's been a
> very long day.
>
>

<snip/>


> There is no user 'rock', it's just a Postfix mailbox.
>

You problem stems from dovecot doing user lookup using
'[email protected]' which is why it breaks.

So, to fix this, and retain what you have configured you need to do bit
silly config (this is hopefully getting fixed in 2.3 series at some point).


passdb {
   driver = static
   args = noauthenticate temp_user=%u user=%Ln
}

passdb {
   driver  = pam
}

passdb {
   driver = static
   args = noautenticate user=%{passdb:temp_user}
   skip = unauthenticated
}


Aki

Reply via email to