From 1c6b6a689b421adb5de664f3710bced918630814 Mon Sep 17 00:00:00 2001 From: Peca Date: Fri, 22 Aug 2025 19:18:39 +0200 Subject: [PATCH] Temporary skip myvesta dovecot conf files --- install/vst-install-debian.sh | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/install/vst-install-debian.sh b/install/vst-install-debian.sh index 0d181ec0..69b23c28 100755 --- a/install/vst-install-debian.sh +++ b/install/vst-install-debian.sh @@ -1554,9 +1554,11 @@ fi if [ "$dovecot" = 'yes' ]; then echo "=== Configure Dovecot" gpasswd -a dovecot mail - cp -rf $vestacp/dovecot /etc/ - cp -f $vestacp/logrotate/dovecot /etc/logrotate.d/ - chown -R root:root /etc/dovecot* + if [ "$release" -lt 13 ]; then + cp -rf $vestacp/dovecot /etc/ + cp -f $vestacp/logrotate/dovecot /etc/logrotate.d/ + chown -R root:root /etc/dovecot* + fi # update-rc.d dovecot defaults currentservice='dovecot' ensure_startup $currentservice