On 2021-03-07 22:04, Fongaboo wrote:
Running Debian with Apache/MySQL/Dovecot/Postfix.

Here some conf files if they are relevant:

debian-db.php:

cut this

(suspiciously no closing ?> php tag?? Should it matter?)

in teori it should, but not in pratis

debian-db-roundcube.php:

cut this

# config.inc.php

$config = array();

$config['default_host'] = 'ssl://localhost';
$config['default_port'] = 993;
$config['smtp_server'] = 'ssl://localhost';
$config['smtp_port'] = 465;
$config['smtp_user'] = '%u';
$config['smtp_pass'] = '%p';

$config['smtp_conn_options'] = array(
   'ssl'         => array(
     'verify_peer'  => false,
     'verify_peer_name'  => false,
   ),
);

$config['imap_conn_options'] = array(
 'ssl' => array(
     'verify_peer'  => false,
     'verify_peer_name'  => false,
 ),
);

$config['smtp_helo_host'] = 'localhost.example.org';
$config['smtp_log'] = false;

debian maintainers are free to use it :=)

database config
https://github.com/roundcube/roundcubemail/blob/master/config/defaults.inc.php#L36

add this line to config.inc.php, defaults file must not be changed
_______________________________________________
Roundcube Users mailing list
[email protected]
http://lists.roundcube.net/mailman/listinfo/users

Reply via email to