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

15 lines
299 B
Plaintext
Raw Normal View History

2016-02-17 23:56:40 +02:00
driver = sqlite
connect = /data/freeposte.db
2016-02-17 23:56:40 +02:00
# Return the user hashed password
password_query = \
2016-02-20 14:57:26 +02:00
SELECT password \
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'