Doc update

master
andryyy 2017-03-22 10:44:34 +01:00
parent 16d90b86d5
commit aff7fa7671
1 changed files with 13 additions and 32 deletions

View File

@ -1,20 +1,19 @@
## Add mailcow app buttons ## mailcow UI configuration
Open `data/web/inc/vars.local.inc.php` and add your apps to an array. Default configuration: Several configuration parameters of the mailcow UI can be changed by creating a file `data/web/inc/vars.local.inc.php` which overrides defaults settings found in `data/web/inc/vars.inc.php`.
The local configuration file is persistent over updates of mailcow. Try not to change values inside `data/web/inc/vars.inc.php`, but use them as template for the local override.
``` mailcow UI configuration parameters can be to...
$MAILCOW_APPS = array(
array( - ...change the default language*
'name' => 'SOGo', - ...change the default bootstrap theme
'link' => '/SOGo/' - ...set a password complexity regex
), - ...add mailcow app buttons to the login screen
// array( - ...set a pagination trigger
// 'name' => 'Roundcube', - ...set action after submitting forms (stay in form, return to previous page)
// 'link' => '/rc/'
// ), \* To change SOGos default language, you will need to edit `data/conf/sogo/sogo.conf` and replace "English" by your preferred language.
);
```
## Backup and restore maildir (simple tar file) ## Backup and restore maildir (simple tar file)
@ -52,24 +51,6 @@ Edit a domain as (domain) administrator to add an item to the filter table.
Beware that a mailbox user can login to mailcow and override a domain policy filter item. Beware that a mailbox user can login to mailcow and override a domain policy filter item.
## Change default language
Change `data/conf/sogo/sogo.conf` and replace "English" by your preferred language.
Create a file `data/web/inc/vars.local.inc.php` and add "DEFAULT_LANG" with either "en", "pt", "de" or "nl":
```
<?php
$DEFAULT_LANG = "de";
```
## Change UI theme
mailcow uses [Bootstrap](http://getbootstrap.com/), a HTML, CSS, and JS framework.
Open or create the file `data/web/inc/vars.local.inc.php` and change `DEFAULT_THEME` to either cerulean, cosmo, custom, cyborg, darkly, flatly, journal, paper, readable, sandstone, simplex, slate, spacelab, superhero, united or yeti (see https://bootswatch.com/):
```
<?php
$DEFAULT_THEME = "paper";
```
## Customize Dockerfiles ## Customize Dockerfiles
Make your changes in `data/Dockerfiles/$service` and build the image locally: Make your changes in `data/Dockerfiles/$service` and build the image locally: