> On 23/06/2020 12:19 Joe Wong <joewong99@gmail.com> wrote:
>
>
>
>
> On Tue, Jun 23, 2020 at 5:17 PM Aki Tuomi <aki.tuomi@open-xchange.com> wrote:
> >
> > > On 23/06/2020 12:15 Joe Wong <joewong99@gmail.com> wrote:
> > >
> > >
> > > Hello, I have added 'y' as nodelay in my passdb query and I see the following in log:
> > >
> > > dovecot: imap-login: Debug: Ignoring unknown passdb extra field: nodelay
> > >
> > > does it mean this option is no longer supported in 2.3.10 ?
> > >
> > > - Joe
> > >
> >
> > It is supported in 2.3.10. The extra field is ignored by imap-login process.
> >
> > Aki
>
> I see. how can I not to delay the login on failure condition ? I have specific needs for doing so.
If you want it to work for unknown users as well, try adding this before other passdbs:
passdb {
driver = static
args = noauthenticate nodelay
}
Aki
Thanks Aki, it works! :)