11 Aug
2021
11 Aug
'21
11:48 p.m.
On 08-11-2021 5:39 pm, Joseph D Wagner wrote: dovecot[51153]: dict(51395): Panic: lib-sql: Too many bind args (2) for statement: SELECT attr_name FROM attributes WHERE attr_name LIKE AND username = ?
No idea if this is the only problem, but the sql query has invalid syntax.
SELECT attr_name FROM attributes WHERE attr_name LIKE AND username
= ?
Did you replace the "?" or is that the real query? That is invalid. And there is nothing after "LIKE", should at minimum have 'quotes'.
SELECT attr_name FROM attributes WHERE attr_name LIKE 'something%'
AND username = '?'
Would be at least syntax valid.