Update third_party-roundcube.md

Dieser Commit ist enthalten in:
André Peters 2019-07-31 12:11:39 +02:00 committet von GitHub
Ursprung 995f83ef3e
Commit fb9f737fa9
Es konnte kein GPG-SchlĂĽssel zu dieser Signatur gefunden werden
GPG-SchlĂĽssel-ID: 4AEE18F83AFDEB23

Datei anzeigen

@ -10,7 +10,7 @@ chown -R root: rc/
Create a file `data/web/rc/config/config.inc.php` with the following content. Create a file `data/web/rc/config/config.inc.php` with the following content.
**Change the `des_key` parameter to a random value.** It is used to temporarily store your IMAP password. **Change the `des_key` parameter to a random value.** It is used to temporarily store your IMAP password. The "db_prefix" is optional but recommended.
``` ```
<?php <?php
@ -55,6 +55,7 @@ $config['managesieve_conn_options'] = array(
// 1 - add Vacation section, // 1 - add Vacation section,
// 2 - add Vacation section, but hide Filters section // 2 - add Vacation section, but hide Filters section
$config['managesieve_vacation'] = 1; $config['managesieve_vacation'] = 1;
$config['db_prefix'] = 'mailcow_rc1';
``` ```