From: Jean-Marc Pigeon (Delson) Date: Thu, 26 Jun 2025 11:57:18 +0000 (-0400) Subject: Fix dovecot.conf problem X-Git-Tag: tag-0.10~13 X-Git-Url: https://jmp-git.ovh.safe.ca/?a=commitdiff_plain;h=e23f0aaf8eaa9250af0f2b2ab7b5c27f3f72c16e;p=jmp%2Fmailleur Fix dovecot.conf problem --- diff --git a/support/starting.sh b/support/starting.sh index 4134b3a..8949acf 100755 --- a/support/starting.sh +++ b/support/starting.sh @@ -104,7 +104,6 @@ BEFMAIL=/etc/dovecot/dovecot.conf.before.$APPNAME DOVMAIL=/etc/$APPNAME/dovecot/dovecot.conf if [ ! -f $BEFMAIL ] ; then - ln -nsf $DOVMAIL $DOVCONF ln -nsf \ /etc/$APPNAME/dovecot/dovecot-2.0-auth-sql.conf \ /etc/$APPNAME/dovecot/dovecot-auth-sql.conf @@ -118,6 +117,7 @@ if [ ! -f $BEFMAIL ] ; then cat /etc/$APPNAME/dovecot/dovecot-auth.conf >> $DOVCONF mv $DOVCONF $BEFMAIL + ln -nsf $DOVMAIL $DOVCONF fi }