浏览代码

Must remove " from hostname

andryyy 8 年之前
父节点
当前提交
9abb5f5e4c
共有 1 个文件被更改,包括 2 次插入2 次删除
  1. 2 2
      generate_config.sh

+ 2 - 2
generate_config.sh

@@ -22,7 +22,7 @@ cat << EOF > mailcow.conf
 # example.org is _not_ a valid hostname, use a fqdn here.
 # Default admin user is "admin"
 # Default password is "moohoo"
-MAILCOW_HOSTNAME="${MAILCOW_HOSTNAME}"
+MAILCOW_HOSTNAME=${MAILCOW_HOSTNAME}
 
 # ------------------------------
 # SQL database configuration
@@ -49,5 +49,5 @@ POPS_PORT=995
 SIEVE_PORT=4190
 
 # Your timezone
-TZ="${TZ}"
+TZ=${TZ}
 EOF