Initial commit: mail server configuration
This commit is contained in:
23
dovecot/dovecot-dict-sql.conf.ext
Normal file
23
dovecot/dovecot-dict-sql.conf.ext
Normal file
@@ -0,0 +1,23 @@
|
||||
# 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
|
||||
}
|
||||
Reference in New Issue
Block a user