From 939b2306c14522ff8660ae6939a71ea6b7fb51d0 Mon Sep 17 00:00:00 2001 From: MAGIC Date: Wed, 28 Feb 2018 22:08:40 +0100 Subject: [PATCH 1/3] Fixed some mistake --- docs/u_e-rspamd.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/u_e-rspamd.md b/docs/u_e-rspamd.md index d90a3b254..baaee96b5 100644 --- a/docs/u_e-rspamd.md +++ b/docs/u_e-rspamd.md @@ -1,4 +1,4 @@ -Rspamd is used for AV handling, DKIM signing and SPAM handling. It's a powerful and fast filter system. For a more in-depth documentation on Rspamd please visit it's [own documentation](https://rspamd.com/doc/index.html). +Rspamd is used for AV handling, DKIM signing and SPAM handling. It's a powerful and fast filter system. For a more in-depth documentation on Rspamd please visit its [own documentation](https://rspamd.com/doc/index.html). ## Learn Spam & Ham From 6e5c64840bfffdce2df11b1d2c83fa5450e468b9 Mon Sep 17 00:00:00 2001 From: MAGIC Date: Wed, 28 Feb 2018 22:09:25 +0100 Subject: [PATCH 2/3] Add SOGo HOW TO for changing theme and logo --- docs/u_e-sogo.md | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 docs/u_e-sogo.md diff --git a/docs/u_e-sogo.md b/docs/u_e-sogo.md new file mode 100644 index 000000000..df9a00384 --- /dev/null +++ b/docs/u_e-sogo.md @@ -0,0 +1,20 @@ + +SOGo is used for accessing your mails via a webbrowser, adding and sharing your contacts or calendars. For a more in-depth documentation on SOGo please visit its [own documentation](http://wiki.sogo.nu/). + +## Change Theme + +You can change SOGo's theme by editing `data/conf/sogo/sogo.conf`. Per default it uses a blue theme, which you can change e.g. to a green or red theme. More colored themes will be supported in the future. +After you edited said file you need to restart the SOGO container with `docker-compose restart sogo-mailcow` or via the Mailcow UI. + +##### Example (`data/conf/sogo/sogo.conf`, line 17): +``` +before: +SOGoUIAdditionalJSFiles = (js/theme-blue.js); + +after: +SOGoUIAdditionalJSFiles = (js/theme-red.js); +``` + +## Change Logo +You can change SOGo's logo by replacing `data/Dockerfiles/sogo/sogo-full.svg`. +After you replaced said file you need to rebuild the container by executing `docker-compose build sogo-mailcow` and start it with `docker-compose up -d sogo-mailcow`. From fc9dced2c45fe710b3d5ed36722bed7323747884 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Peters?= Date: Wed, 28 Feb 2018 22:25:37 +0100 Subject: [PATCH 3/3] Update u_e-sogo.md Removed red, as it does not yet exist. --- docs/u_e-sogo.md | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/docs/u_e-sogo.md b/docs/u_e-sogo.md index df9a00384..0fdd4a6e8 100644 --- a/docs/u_e-sogo.md +++ b/docs/u_e-sogo.md @@ -3,8 +3,8 @@ SOGo is used for accessing your mails via a webbrowser, adding and sharing your ## Change Theme -You can change SOGo's theme by editing `data/conf/sogo/sogo.conf`. Per default it uses a blue theme, which you can change e.g. to a green or red theme. More colored themes will be supported in the future. -After you edited said file you need to restart the SOGO container with `docker-compose restart sogo-mailcow` or via the Mailcow UI. +You can change SOGo's theme by editing `data/conf/sogo/sogo.conf`. Per default it uses a blue theme, which you can change e.g. to a green (non-default SOGo-green) theme. More colored themes will be supported in the future. +After you edited said file you need to restart the SOGO container with `docker-compose restart sogo-mailcow` or via the mailcow UI. ##### Example (`data/conf/sogo/sogo.conf`, line 17): ``` @@ -12,7 +12,10 @@ before: SOGoUIAdditionalJSFiles = (js/theme-blue.js); after: -SOGoUIAdditionalJSFiles = (js/theme-red.js); +SOGoUIAdditionalJSFiles = (js/theme-green.js); + +SOGo default: +//SOGoUIAdditionalJSFiles ``` ## Change Logo