24 lines
522 B
Plaintext
24 lines
522 B
Plaintext
|
|
# This file is commonly accessed via dict {} section in dovecot.conf
|
||
|
|
|
||
|
|
#connect = host=localhost dbname=mails user=testuser password=pass
|
||
|
|
|
||
|
|
# CREATE TABLE quota (
|
||
|
|
# username varchar(100) not null,
|
||
|
|
# bytes bigint not null default 0,
|
||
|
|
# messages integer not null default 0,
|
||
|
|
# primary key (username)
|
||
|
|
# );
|
||
|
|
|
||
|
|
map {
|
||
|
|
pattern = priv/quota/storage
|
||
|
|
table = quota
|
||
|
|
username_field = username
|
||
|
|
value_field = bytes
|
||
|
|
}
|
||
|
|
map {
|
||
|
|
pattern = priv/quota/messages
|
||
|
|
table = quota
|
||
|
|
username_field = username
|
||
|
|
value_field = messages
|
||
|
|
}
|