joe a skrev den 2023-11-25 20:17:

I don't find any other relevant referenced to SMTP port in RC configuration.

<?php

/* Local configuration for Roundcube Webmail */

$config['imap_host'] = 'ssl://localhost:993';
$config['smtp_host'] = 'ssl://localhost:465';
$config['smtp_log'] = false;
$config['imap_conn_options'] = array (
  'ssl' =>
  array (
    'verify_peer' => false,
    'verify_peer_name' => false,
  ),
);
$config['smtp_helo_host'] = 'localhost.example.org';
$config['smtp_conn_options'] = array (
  'ssl' =>
  array (
    'verify_peer' => false,
    'verify_peer_name' => false,
  ),
);

if you prefer tls, then change smtp_host to 'tls://localhost:587'

more help needs error logs

settings that can be changed is in config/defaults.inc.php dont edit this file, change config/config.inc.php if settings need to be changed


_______________________________________________
dovecot mailing list -- dovecot@dovecot.org
To unsubscribe send an email to dovecot-le...@dovecot.org

Reply via email to