You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
mailu/dovecot/conf/dovecot-sql.conf.ext

15 lines
294 B
Plaintext

driver = sqlite
connect = /data/main.db
# Return the user hashed password
password_query = \
SELECT password \
FROM user \
WHERE user.email = '%u'
# Mostly get the user quota
user_query = \
SELECT '*:bytes=' || user.quota_bytes AS quota_rule \
FROM user \
WHERE user.email = '%u'