Update third_party-roundcube.md

Dieser Commit ist enthalten in:
André Peters 2019-01-09 08:50:53 +01:00 committet von GitHub
Ursprung 54404f3393
Commit f1a5d8222b
Es konnte kein GPG-SchlĂĽssel zu dieser Signatur gefunden werden
GPG-SchlĂĽssel-ID: 4AEE18F83AFDEB23

Datei anzeigen

@ -16,10 +16,10 @@ Create a file `data/web/rc/config/config.inc.php` with the following content.
<?php <?php
error_reporting(0); error_reporting(0);
if (!file_exists('/tmp/mime.types')) { if (!file_exists('/tmp/mime.types')) {
file_put_contents("/tmp/mime.types", fopen("http://svn.apache.org/repos/asf/httpd/httpd/trunk/docs/conf/mime.types", 'r')); file_put_contents("/tmp/mime.types", fopen("http://svn.apache.org/repos/asf/httpd/httpd/trunk/docs/con$
} }
$config = array(); $config = array();
$config['db_dsnw'] = 'mysql://' . getenv('DBUSER') . ':' . getenv('DBPASS') . '@mysql/' . getenv('DBNAME'); $config['db_dsnw'] = 'mysql://' . getenv('DBUSER') . ':' . getenv('DBPASS') . '@mysql/' . getenv('DBNA$
$config['default_host'] = 'tls://dovecot'; $config['default_host'] = 'tls://dovecot';
$config['default_port'] = '143'; $config['default_port'] = '143';
$config['smtp_server'] = 'tls://postfix'; $config['smtp_server'] = 'tls://postfix';
@ -28,21 +28,34 @@ $config['smtp_user'] = '%u';
$config['smtp_pass'] = '%p'; $config['smtp_pass'] = '%p';
$config['support_url'] = ''; $config['support_url'] = '';
$config['product_name'] = 'Roundcube Webmail'; $config['product_name'] = 'Roundcube Webmail';
$config['des_key'] = 'rcmail-!24ByteDESkey*Str'; $config['des_key'] = 'yourrandomstring_changeme';
$config['log_dir'] = '/dev/null'; $config['log_dir'] = '/dev/null';
$config['temp_dir'] = '/tmp'; $config['temp_dir'] = '/tmp';
$config['plugins'] = array( $config['plugins'] = array(
'archive', 'archive',
'managesieve'
); );
$config['skin'] = 'larry'; $config['skin'] = 'larry';
$config['mime_types'] = '/tmp/mime.types'; $config['mime_types'] = '/tmp/mime.types';
$config['imap_conn_options'] = array( $config['imap_conn_options'] = array(
'ssl' => array('verify_peer' => false, 'verify_peer_name' => false, 'allow_self_signed' => true) 'ssl' => array('verify_peer' => false, 'verify_peer_name' => false, 'allow_self_signed' => true)
); );
$config['enable_installer'] = true; $config['enable_installer'] = true;
$config['smtp_conn_options'] = array( $config['smtp_conn_options'] = array(
'ssl' => array('verify_peer' => false, 'verify_peer_name' => false, 'allow_self_signed' => true) 'ssl' => array('verify_peer' => false, 'verify_peer_name' => false, 'allow_self_signed' => true)
); );
$config['managesieve_port'] = 4190;
$config['managesieve_host'] = 'tls://dovecot';
$config['managesieve_conn_options'] = array(
'ssl' => array('verify_peer' => false, 'verify_peer_name' => false, 'allow_self_signed' => true)
);
// Enables separate management interface for vacation responses (out-of-office)
// 0 - no separate section (default),
// 1 - add Vacation section,
// 2 - add Vacation section, but hide Filters section
$config['managesieve_vacation'] = 1;
``` ```
Point your browser to `https://myserver/rc/installer` and follow the instructions. Point your browser to `https://myserver/rc/installer` and follow the instructions.