1
0
mirror of https://github.com/Mailu/Mailu.git synced 2025-01-18 03:21:36 +02:00

Use the latest reply_enabled and forward_enabled variables

This commit is contained in:
Pierre Jaury 2016-05-29 15:56:18 +02:00
parent b0a1848bb7
commit e3afa469e3
2 changed files with 18 additions and 4 deletions

View File

@ -3,8 +3,8 @@
###############
log_path = /dev/stderr
protocols = imap lmtp sieve
postmaster_address = %{env:POSTMASTER}@%{env:DOMAIN}
hostname = %{env:HOSTNAME}
postmaster_address = {{ POSTMASTER }}@{{ DOMAIN }}
hostname = {{ HOSTNAME }}
mail_plugins = $mail_plugins quota
submission_host = smtp

View File

@ -1,5 +1,12 @@
connect = /data/freeposte.db
map {
pattern = priv/reply_enabled
table = user
username_field = email
value_field = reply_enabled
}
map {
pattern = priv/reply_subject
table = user
@ -15,8 +22,15 @@ map {
}
map {
pattern = priv/forward
pattern = priv/forward_enabled
table = user
username_field = email
value_field = forward
value_field = forward_enabled
}
map {
pattern = priv/forward_destination
table = user
username_field = email
value_field = forward_destination
}