mirror of
https://github.com/Mailu/Mailu.git
synced 2024-12-14 10:53:30 +02:00
15 lines
303 B
Plaintext
15 lines
303 B
Plaintext
driver = sqlite
|
|
connect = /data/freeposte.db
|
|
|
|
# Return the user hashed password
|
|
password_query = \
|
|
SELECT password \
|
|
FROM user \
|
|
WHERE user.address = '%u'
|
|
|
|
# Mostly get the user quota
|
|
user_query = \
|
|
SELECT '*:bytes=' || user.quota_bytes AS quota_rule \
|
|
FROM user \
|
|
WHERE user.address = '%u'
|