There are exim4 users stored in mysql passwords in MD5
CREATE TABLE mailboxes ( id INT(10) NOT NULL AUTO_INCREMENT PRIMARY KEY, domain_id INT(10) NOT NULL, local_part VARCHAR(250) NOT NULL, password VARCHAR(100) NULL, description VARCHAR(250) NULL, active TINYINT(1) NOT NULL DEFAULT 0, created TIMESTAMP NOT NULL DEFAULT NOW(), modified TIMESTAMP NULL ); I set the password like this
INSERT INTO mailboxes VALUES(NULL,1,'joe',MD5('password'),'My account for joe@mydomain.com',1,NOW(),NOW()); Accordingly, what needs to be registered in 20_exim4-config_mysql-authenticator for authentication to work?