Hello!
I got the password plugin working. The problem I have is that the SASL-users are also located in a MySQL-table named sasl.
Now when a user changes her password I want to change also the password in the SASL-table.
I tried with two password_queries
$rcmail_config['password_query'] = 'UPDATE mailbox SET password=%p WHERE username=%u AND password=%o LIMIT 1'; $rcmail_config['password_query'] = 'UPDATE sasl SET password=%p WHERE username=%u AND password=%o LIMIT 1';
but that does not work. Then I tried the following but that also did not work.
$rcmail_config['password_query'] = 'UPDATE mailbox, sasl SET password=%p WHERE username=%u AND password=%o LIMIT 1';
I don't know how to join or concatenate this two queris to one.
Can somebody help?
Greetings
Andreas