Skip to content
Snippets Groups Projects
Commit d7f809af authored by Bob Mottram's avatar Bob Mottram
Browse files

Set webmail theme from web ui

parent a8b69fff
No related branches found
No related tags found
No related merge requests found
...@@ -151,6 +151,15 @@ function web_admin_background_color { ...@@ -151,6 +151,15 @@ function web_admin_background_color {
sed -i "0,/ color:.*/s// color: ${fg_color};/" "$webfile" sed -i "0,/ color:.*/s// color: ${fg_color};/" "$webfile"
fi fi
done done
# change webmail theme
if [ -f "/var/www/${local_hostname}/htdocs/mail/config/config.php" ]; then
if [[ "$bg_color" == 'white' ]]; then
sed -i 's|theme_default.*|theme_default = 54;|g' "/var/www/${local_hostname}/htdocs/mail/config/config.php"
else
sed -i 's|theme_default.*|theme_default = 55;|g' "/var/www/${local_hostname}/htdocs/mail/config/config.php"
fi
fi
} }
function web_admin_create_app_descriptions { function web_admin_create_app_descriptions {
......
...@@ -52,6 +52,15 @@ function web_admin_background_color { ...@@ -52,6 +52,15 @@ function web_admin_background_color {
sed -i "0,/ color:.*/s// color: ${fg_color};/" "$webfile" sed -i "0,/ color:.*/s// color: ${fg_color};/" "$webfile"
fi fi
done done
# change webmail theme
if [ -f "/var/www/${local_hostname}/htdocs/mail/config/config.php" ]; then
if [[ "$bg_color" == 'white' ]]; then
sed -i 's|theme_default.*|theme_default = 54;|g' "/var/www/${local_hostname}/htdocs/mail/config/config.php"
else
sed -i 's|theme_default.*|theme_default = 55;|g' "/var/www/${local_hostname}/htdocs/mail/config/config.php"
fi
fi
} }
function web_admin_translate_text { function web_admin_translate_text {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment