We configure postfix even when main.cf don't exist. Fixes #1009

This commit is contained in:
Benjamin Sonntag 2007-08-23 08:01:01 +00:00
parent 6bad3e9495
commit e05aece60e
2 changed files with 2 additions and 1 deletions

1
debian/changelog vendored
View File

@ -1,5 +1,6 @@
alternc (0.9.6.4) stable; urgency=low 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) * Fixed the 'view' link issues (no urlencode) (#690)
* Change "move" to "move to" (ergonomic) (#787) * Change "move" to "move to" (ergonomic) (#787)
* Confirm file deletion in the browser (#659) * Confirm file deletion in the browser (#659)

View File

@ -26,7 +26,7 @@ if [ -e /etc/courier/authdaemonrc ]; then
CONFIG_FILES="$CONFIG_FILES etc/courier/authdaemonrc CONFIG_FILES="$CONFIG_FILES etc/courier/authdaemonrc
etc/courier/authmysqlrc" etc/courier/authmysqlrc"
fi 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 CONFIG_FILES="$CONFIG_FILES etc/postfix/main.cf etc/postfix/myalias.cf
etc/postfix/mydomain.cf etc/postfix/mygid.cf etc/postfix/mydomain.cf etc/postfix/mygid.cf
etc/postfix/myvirtual.cf etc/postfix/sasl/smtpd.conf" etc/postfix/myvirtual.cf etc/postfix/sasl/smtpd.conf"