Initial commit: mail server configuration

This commit is contained in:
root
2025-09-17 17:46:16 +00:00
commit 54b608625b
47 changed files with 4959 additions and 0 deletions

View 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
}