From 9a00880a20965551f133b7b9eb7217e427d5c52e Mon Sep 17 00:00:00 2001 From: Crag-Monkey <brandon@quigs.com> Date: Fri, 24 Nov 2023 09:10:22 -0600 Subject: [PATCH] Update webmail.sh Add code which would allow customizations to persist between updates by including a configuration override file, if it exists. --- setup/webmail.sh | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/setup/webmail.sh b/setup/webmail.sh index 97fa24cb..9600f18f 100755 --- a/setup/webmail.sh +++ b/setup/webmail.sh @@ -145,6 +145,9 @@ cat > $RCM_CONFIG <<EOF; \$config['session_path'] = '/mail/'; /* prevent CSRF, requires php 7.3+ */ \$config['session_samesite'] = 'Strict'; +/* Persist Customizations */ +\$file = __DIR__.'/config_override.inc.php'; +\if(file_exists($file)) { include $file; } ?> EOF @@ -166,6 +169,9 @@ cat > ${RCM_PLUGIN_DIR}/carddav/config.inc.php <<EOF; 'preemptive_auth' => '1', 'hide' => false, ); +/* Persist Customizations */ +\$file = __DIR__.'/config_override.inc.php'; +\if(file_exists($file)) { include $file; } ?> EOF