1
0
mirror of https://github.com/Mailu/Mailu.git synced 2024-12-14 10:53:30 +02:00
Mailu/core/dovecot/conf/dovecot-sql.conf.ext

15 lines
415 B
Plaintext
Raw Normal View History

2016-02-17 23:56:40 +02:00
driver = sqlite
connect = /data/main.db
2016-02-17 23:56:40 +02:00
# Return the user hashed password
password_query = \
SELECT NULL as password, 'Y' as nopassword, '{{ FRONT_ADDRESS }}{% if WEBMAIL_ADDRESS %},{{ WEBMAIL_ADDRESS }}{% endif %}' as allow_nets \
FROM user \
WHERE user.email = '%u'
2016-02-17 23:56:40 +02:00
# Mostly get the user quota
user_query = \
SELECT '*:bytes=' || user.quota_bytes AS quota_rule \
FROM user \
WHERE user.email = '%u'