mirror of
https://github.com/mail-in-a-box/mailinabox.git
synced 2025-04-20 02:52:11 +00:00
fixed a logical error with the handling of DISABLE_NEXTCLOUD env variable
This commit is contained in:
parent
9e2fd98848
commit
a02657e99c
@ -127,7 +127,7 @@ cat > $RCM_CONFIG <<EOF;
|
|||||||
\$config['des_key'] = '$SECRET_KEY';
|
\$config['des_key'] = '$SECRET_KEY';
|
||||||
EOF
|
EOF
|
||||||
|
|
||||||
if [ "${DISABLE_NEXTCLOUD}" != "1" ]; then
|
if [ "${DISABLE_NEXTCLOUD}" == "1" ]; then
|
||||||
cat >> $RCM_CONFIG <<EOF;
|
cat >> $RCM_CONFIG <<EOF;
|
||||||
\$config['plugins'] = array('html5_notifier', 'archive', 'zipdownload', 'password', 'managesieve', 'jqueryui', 'persistent_login');
|
\$config['plugins'] = array('html5_notifier', 'archive', 'zipdownload', 'password', 'managesieve', 'jqueryui', 'persistent_login');
|
||||||
\$config['skin'] = 'larry';
|
\$config['skin'] = 'larry';
|
||||||
|
Loading…
Reference in New Issue
Block a user