Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

make installer set correct config for SSL/STARTTLS automaticly #9721

Open
2 tasks done
Benman2785 opened this issue Nov 28, 2024 · 1 comment
Open
2 tasks done

make installer set correct config for SSL/STARTTLS automaticly #9721

Benman2785 opened this issue Nov 28, 2024 · 1 comment

Comments

@Benman2785
Copy link

Prerequisites

  • I have searched for duplicate or closed issues
  • I can recreate the issue with all plugins disabled

Describe the issue

took me 1h at 2:00 am to figure out i have to MANUALLY set stuff in the config for SSL/STARTTLS to work...

i used ssl:// or-and tls:// for both hostnames -> i wasnt able to connect to imap or smtp
please make the installer set this automaticly

to work correctly you need to add this to your config:

// IMAP authentication method (DIGEST-MD5, CRAM-MD5, LOGIN, PLAIN or null).
// Use 'IMAP' to authenticate with IMAP LOGIN command.
// By default the most secure method (from supported) will be selected.
$config['imap_auth_type'] = 'LOGIN';

// Required if you're running PHP 5.6 or later
$config['imap_conn_options'] = array (
'ssl' =>
array (
'verify_peer' => false,
'verify_peer_name' => false,
),
);

AND

// SMTP AUTH type (DIGEST-MD5, CRAM-MD5, LOGIN, PLAIN or empty to use
// best server supported one)
$config['smtp_auth_type'] = 'LOGIN';

// Required if you're running PHP 5.6 or later
$config['smtp_conn_options'] = array (
'ssl' =>
array (
'verify_peer' => false,
'verify_peer_name' => false,
),
);

What browser(s) are you seeing the problem on?

Firefox

What version of PHP are you using?

8.4

What version of Roundcube are you using?

1.6.9

JavaScript errors

-- none needed --

PHP errors

-- none needed --

@alecpl
Copy link
Member

alecpl commented Nov 29, 2024

There could be a checkbox to check in the Installer, but I don't think ignoring certificate validation issues is a good default.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

2 participants