fix
This commit is contained in:
@@ -92,7 +92,7 @@ resource "kubernetes_config_map_v1" "webmail_config" {
|
||||
|
||||
[service]
|
||||
# email domain for new users
|
||||
domain="${var.domain-name}"
|
||||
domain="${var.domain_name}"
|
||||
# default quotas for new users
|
||||
quota=1024
|
||||
recipients=2000
|
||||
@@ -102,7 +102,7 @@ resource "kubernetes_config_map_v1" "webmail_config" {
|
||||
allowJoin=false
|
||||
enableSpecial=false # if true the allow creating addresses with special usernames
|
||||
# allowed domains for new addresses
|
||||
domains=["${var.domain-name}"]
|
||||
domains=["${var.domain_name}"]
|
||||
|
||||
generalNotification="" # static notification to show on top of the page
|
||||
|
||||
@@ -145,7 +145,7 @@ resource "kubernetes_config_map_v1" "webmail_config" {
|
||||
# set to false if not using HTTPS
|
||||
enabled=true
|
||||
# must be https url or use default
|
||||
appId="https://${var.domain-name}"
|
||||
appId="https://${var.domain_name}"
|
||||
|
||||
[log]
|
||||
level="silly"
|
||||
@@ -154,15 +154,15 @@ resource "kubernetes_config_map_v1" "webmail_config" {
|
||||
[setup]
|
||||
# these values are shown in the configuration help page
|
||||
[setup.imap]
|
||||
hostname="${var.sub-domain}.${var.domain-name}"
|
||||
hostname="${var.sub-domain}.${var.domain_name}"
|
||||
secure=true
|
||||
port=143
|
||||
[setup.pop3]
|
||||
hostname="${var.sub-domain}.${var.domain-name}"
|
||||
hostname="${var.sub-domain}.${var.domain_name}"
|
||||
secure=true
|
||||
port=110
|
||||
[setup.smtp]
|
||||
hostname="${var.sub-domain}.${var.domain-name}"
|
||||
hostname="${var.sub-domain}.${var.domain_name}"
|
||||
secure=true
|
||||
port=25
|
||||
EOF
|
||||
|
||||
Reference in New Issue
Block a user