Keine Beschreibung

dovecot-sql.conf.ext 404B

123456789
  1. ## Uncomment and specify the driver
  2. driver = mysql
  3. ## Uncomment and set connection information
  4. connect = host={{ db_host }} dbname={{ db_name }} user={{ db_user }} password={{ db_password }}
  5. ## Uncomment and set the encryption format for passwords
  6. default_pass_scheme = SHA512-CRYPT
  7. ## Uncomment and set password query
  8. password_query = SELECT email as user, password FROM virtual_users WHERE email='%u';