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.
17 lines
375 B
Plaintext
17 lines
375 B
Plaintext
driver = sqlite
|
|
connect = /data/freeposte.db
|
|
|
|
# Return the user hashed password
|
|
password_query = \
|
|
SELECT password \
|
|
FROM user \
|
|
WHERE user.domain_name = '%d' \
|
|
AND user.localpart = '%n'
|
|
|
|
# Mostly get the user quota
|
|
user_query = \
|
|
SELECT '*:bytes=' || user.quota_bytes AS quota_rule \
|
|
FROM user \
|
|
WHERE user.domain_name = '%d' \
|
|
AND user.localpart = '%n'
|