search for: f2o5xodgfoykfgcg

Displaying 4 results from an estimated 4 matches for "f2o5xodgfoykfgcg".

2017 Dec 22
2
Lua Auth
...' ] = '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,<f2O5xOdgFoYKFGcg>): > No password returned (and no nopassword) > > Replacing that return statement with this: > > return dovecot.auth.PASSDB_RESULT_OK, 'password=test user=test1 at test.com' > > authenticates successfully. Fixed in https://github.com/dovecot/core/commit/e5fb6b3b7...
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
...able = {} 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,<f2O5xOdgFoYKFGcg>): No password returned (and no nopassword) Replacing that return statement with this: return dovecot.auth.PASSDB_RESULT_OK, 'password=test user=test1 at test.com' authenticates successfully.
2017 Dec 22
0
Lua Auth
...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,<f2O5xOdgFoYKFGcg>): > > No password returned (and no nopassword) > > > > Replacing that return statement with this: > > > > return dovecot.auth.PASSDB_RESULT_OK, 'password=test user=test1 at test.com > ' > > > > authenticates successfully. > > Fixed in h...