This commit is contained in:
2022-09-20 01:23:54 +02:00
parent 68e7e0e174
commit f80772ed42
98 changed files with 4127 additions and 89 deletions

View File

@ -12,7 +12,7 @@
_HOSTNAME={{ hostname }}
_IPV4='{{ ipv4_address | default(omit) }}'
_IPV6='{{ ipv6_address | default(omit) }}'
_ADMIN_EMAIL=argus@oopen.de
_ADMIN_EMAIL="{{ admin_email }}"
_SASL_AUTH_ENABLED="{{ sasl_auth_enable | default('no') }}"
_SASL_USER='{{ sasl_user | default(omit) }}'
_SASL_PASS='{{ sasl_pass | default(omit) }}'

View File

@ -234,9 +234,13 @@ POSTFIX_DB_TYPE="mysql"
# - Example:
# - POSTFIX_DB_HOST_PGSQL='/var/run/postgresql'
# -
# - Defaults to '/var/run/postgresql'
# - Defaults to '/run/postgresql'
# -
{% if (postfix_db_host is defined) and postfix_db_host %}
POSTFIX_DB_HOST_PGSQL="{{ postfix_db_host }}"
{% else %}
#POSTFIX_DB_HOST_PGSQL=""
{% endif %}
# - Name of Postfix Database
# -

View File

@ -36,7 +36,7 @@ systemd_support="true"
# - Example:
# - postmaster_address="admin\@warenform.net"
# -
postmaster_address="admin\@oopen.de"
postmaster_address="{{ admin_email | split('@') | first }}\@{{ admin_email | split('@') | last }}"
# - hostname

View File

@ -143,7 +143,11 @@ DB_TYPE="{{ roundcube_db_type | default(omit) }}"
# -
# - Defaults to 'localhost'
# -
DB_HOST="{{ roundcube_db_host | default(omit) }}"
{% if (roundcube_db_host is defined) and roundcube_db_host %}
DB_HOST="{{ roundcube_db_host }}"
{% else %}
#DB_HOST=""
{% endif %}
# - Name of Roundcube Database
# -
@ -239,7 +243,11 @@ POSTFIX_DB_TYPE="mysql"
# -
# - Defaults to 'localhost'
# -
POSTFIX_DB_HOST="{{ postfix_db_host | default(omit) }}"
{% if (postfix_db_host is defined) and postfix_db_host %}
POSTFIX_DB_HOST_PGSQL="{{ postfix_db_host }}"
{% else %}
#POSTFIX_DB_HOST_PGSQL=""
{% endif %}
# - Name of Postfix Database
# -
@ -247,7 +255,11 @@ POSTFIX_DB_HOST="{{ postfix_db_host | default(omit) }}"
# -
# - Defaults to 'postfix'
# -
POSTFIX_DB_NAME="{{ postfix_db_name | default(omit) }}"
{% if (postfix_db_name is defined) and postfix_db_name %}
POSTFIX_DB_NAME="{{ postfix_db_name }}"
{% else %}
#POSTFIX_DB_NAME=""
{% endif %}
# - User of Postfix Database
# -
@ -255,7 +267,11 @@ POSTFIX_DB_NAME="{{ postfix_db_name | default(omit) }}"
# -
# - Defaults to 'postfix'
# -
POSTFIX_DB_USER="{{ postfix_db_user | default(omit) }}"
{% if (postfix_db_name is defined) and postfix_db_name %}
POSTFIX_DB_USER="{{ postfix_db_user }}"
{% else %}
#POSTFIX_DB_USER=""
{% endif %}
# - Password of Postfix Database
# -