Skip to content

Commit af696f1

Browse files
author
Kristan Kenney
committed
Fix webmail detection routine
Detect if Dovecot IMAP server is specified to be installed instead of checking against Exim.
1 parent 7c56635 commit af696f1

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

install/hst-install-debian.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1503,7 +1503,7 @@ fi
15031503
# Configure Roundcube #
15041504
#----------------------------------------------------------#
15051505

1506-
if [ "$exim" = 'yes' ] && [ "$mysql" = 'yes' ]; then
1506+
if [ "$dovecot" = 'yes' ] && [ "$mysql" = 'yes' ]; then
15071507
if [ "$apache" = 'yes' ]; then
15081508
cp -f $hestiacp/roundcube/apache.conf /etc/roundcube/
15091509
ln -s /etc/roundcube/apache.conf /etc/apache2/conf.d/roundcube.conf

install/hst-install-ubuntu.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1457,7 +1457,7 @@ fi
14571457
# Configure Roundcube #
14581458
#----------------------------------------------------------#
14591459

1460-
if [ "$exim" = 'yes' ] && [ "$mysql" = 'yes' ]; then
1460+
if [ "$dovecot" = 'yes' ] && [ "$mysql" = 'yes' ]; then
14611461
if [ "$apache" = 'yes' ]; then
14621462
cp -f $hestiacp/roundcube/apache.conf /etc/roundcube/
14631463
ln -s /etc/roundcube/apache.conf /etc/apache2/conf.d/roundcube.conf

0 commit comments

Comments
 (0)