Displaying 4 results from an estimated 4 matches for "passdb_tabl".
Did you mean:
passdb_table
2017 Dec 22
2
Lua Auth
...> >
>
> I'm on rc1, so I appear to already have that git commit (as part of rc1).
>
> # /usr/sbin/dovecot --version
> 2.3.0.rc1 (12aba5948)
>
> For testing this, I tried replacing my passdb lookup with this:
>
> function auth_passdb_lookup(req)
> passdb_table = {}
> passdb_table[ 'password' ] = 'test'
> passdb_table[ 'user' ] = 'test1 at test.com'
>
> return dovecot.auth.PASSDB_RESULT_OK, passdb_table
> end
>
> and still get:
>
> Dec 22 01:17:17 auth-worker(9711): Inf...
2017 Dec 22
2
Lua Auth
> On December 22, 2017 at 6:43 AM Mark Moseley <moseleymark at gmail.com> wrote:
>
>
> >
> >
> >
> >
> > 2) Is there an appropriate way to return data with spaces in it (or
> > presumably other non-alphanum chars. My quota name had a space in it,
> > which
> > somehow got interpreted as 'yes' , i.e.:
> >
> > imap:
2017 Dec 22
0
Lua Auth
...7ceac802e6#diff-83374eeaee91d90e848390ba3c7b264a
>
>
I'm on rc1, so I appear to already have that git commit (as part of rc1).
# /usr/sbin/dovecot --version
2.3.0.rc1 (12aba5948)
For testing this, I tried replacing my passdb lookup with this:
function auth_passdb_lookup(req)
passdb_table = {}
passdb_table[ 'password' ] = 'test'
passdb_table[ 'user' ] = 'test1 at test.com'
return dovecot.auth.PASSDB_RESULT_OK, passdb_table
end
and still get:
Dec 22 01:17:17 auth-worker(9711): Info:
lua(test1 at test.com,10.20.103.32,<f2O...
2017 Dec 22
0
Lua Auth
...so I appear to already have that git commit (as part of rc1).
> >
> > # /usr/sbin/dovecot --version
> > 2.3.0.rc1 (12aba5948)
> >
> > For testing this, I tried replacing my passdb lookup with this:
> >
> > function auth_passdb_lookup(req)
> > passdb_table = {}
> > passdb_table[ 'password' ] = 'test'
> > passdb_table[ 'user' ] = 'test1 at test.com'
> >
> > return dovecot.auth.PASSDB_RESULT_OK, passdb_table
> > end
> >
> > and still get:
> >
> &...