roundcube: fix tls

This commit is contained in:
ace
2024-06-01 03:42:18 +03:00
parent 6b2f7f716d
commit e9c70618f6

View File

@ -77,7 +77,7 @@ roundcube_default_values:
'ssl' => array(
'verify_peer' => false,
'allow_self_signed' => true,
'ciphers' => 'TLSv1.3+HIGH:!aNull:@STRENGTH',
'ciphers' => 'TLSv1.2+HIGH:!aNull:@STRENGTH',
),
);
// For STARTTLS SMTP
@ -85,7 +85,7 @@ roundcube_default_values:
'ssl' => array(
'verify_peer' => false,
'allow_self_signed' => true,
'ciphers' => 'TLSv1.3+HIGH:!aNull:@STRENGTH',
'ciphers' => 'TLSv1.2+HIGH:!aNull:@STRENGTH',
),
);
?>