force PLAIN setting for imap_auth_type & smtp_auth_type

This commit is contained in:
Matthew Saunders Brown 2022-07-27 12:05:31 -07:00
parent 431d30d007
commit d7fd7f05e2

View File

@ -30,6 +30,8 @@ $config['log_driver'] = 'syslog';
// %s - domain name after the '@' from e-mail address provided at login screen // %s - domain name after the '@' from e-mail address provided at login screen
// For example %n = mail.domain.tld, %t = domain.tld // For example %n = mail.domain.tld, %t = domain.tld
$config['default_host'] = 'tls://%n'; $config['default_host'] = 'tls://%n';
$config['imap_auth_type'] = 'PLAIN';
$config['smtp_auth_type'] = 'PLAIN';
// provide an URL where a user can get support for this Roundcube installation // provide an URL where a user can get support for this Roundcube installation
// PLEASE DO NOT LINK TO THE ROUNDCUBE.NET WEBSITE HERE! // PLEASE DO NOT LINK TO THE ROUNDCUBE.NET WEBSITE HERE!