From e05aece60e36fff4f608cc0ef1e7ee3c48db4942 Mon Sep 17 00:00:00 2001 From: Benjamin Sonntag Date: Thu, 23 Aug 2007 08:01:01 +0000 Subject: [PATCH] We configure postfix even when main.cf don't exist. Fixes #1009 --- debian/changelog | 1 + install/alternc.install | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/debian/changelog b/debian/changelog index 5ee49214..646d1532 100644 --- a/debian/changelog +++ b/debian/changelog @@ -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) diff --git a/install/alternc.install b/install/alternc.install index 3dfb7472..413c7173 100644 --- a/install/alternc.install +++ b/install/alternc.install @@ -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"