Merge pull request #26 from PhoenixPeca/master
Roundcube add to mailcow apps list
Dieser Commit ist enthalten in:
Commit
59b74f2e09
1 geänderte Dateien mit 20 neuen und 0 gelöschten Zeilen
|
@ -81,3 +81,23 @@ $config['password_algorithm'] = 'ssha256';
|
||||||
$config['password_algorithm_prefix'] = '{SSHA256}';
|
$config['password_algorithm_prefix'] = '{SSHA256}';
|
||||||
$config['password_query'] = "UPDATE mailbox SET password = %P WHERE username = %u";
|
$config['password_query'] = "UPDATE mailbox SET password = %P WHERE username = %u";
|
||||||
```
|
```
|
||||||
|
|
||||||
|
Optionally, you can add Roundcube's link to the mailcow Apps list.
|
||||||
|
To do this, open or create `data/web/inc/vars.local.inc.php` and add the following code-block:
|
||||||
|
|
||||||
|
*NOTE: Don't forget to add the `<?php` delimiter on the first line*
|
||||||
|
|
||||||
|
````
|
||||||
|
...
|
||||||
|
$MAILCOW_APPS = array(
|
||||||
|
array(
|
||||||
|
'name' => 'SOGo',
|
||||||
|
'link' => '/SOGo/'
|
||||||
|
),
|
||||||
|
array(
|
||||||
|
'name' => 'Roundcube',
|
||||||
|
'link' => '/roundcube/'
|
||||||
|
)
|
||||||
|
);
|
||||||
|
...
|
||||||
|
````
|
||||||
|
|
Laden …
In neuem Issue referenzieren