We configure postfix even when main.cf don't exist. Fixes #1009
This commit is contained in:
parent
6bad3e9495
commit
e05aece60e
|
@ -1,5 +1,6 @@
|
|||
alternc (0.9.6.4) stable; urgency=low
|
||||
|
||||
* we configure postfix even if main.cf don't currently exist (#1009)
|
||||
* Fixed the 'view' link issues (no urlencode) (#690)
|
||||
* Change "move" to "move to" (ergonomic) (#787)
|
||||
* Confirm file deletion in the browser (#659)
|
||||
|
|
|
@ -26,7 +26,7 @@ if [ -e /etc/courier/authdaemonrc ]; then
|
|||
CONFIG_FILES="$CONFIG_FILES etc/courier/authdaemonrc
|
||||
etc/courier/authmysqlrc"
|
||||
fi
|
||||
if [ -e /etc/postfix/main.cf ]; then
|
||||
if [ -d /etc/postfix ]; then
|
||||
CONFIG_FILES="$CONFIG_FILES etc/postfix/main.cf etc/postfix/myalias.cf
|
||||
etc/postfix/mydomain.cf etc/postfix/mygid.cf
|
||||
etc/postfix/myvirtual.cf etc/postfix/sasl/smtpd.conf"
|
||||
|
|
Loading…
Reference in New Issue