12 lines
390 B
Plaintext
12 lines
390 B
Plaintext
|
cert = /service/imap/ssl/imapd.pem
|
||
|
sslVersion = all
|
||
|
{
|
||
|
|
||
|
$OUT .= "# SSL protocols can be set with DB props SSLv2, SSLv3 and TLSv1\n";
|
||
|
$OUT .= "options = NO_SSLv2\n" unless ($pop3s{SSLv2} || 'disabled') eq 'enabled';
|
||
|
$OUT .= "options = NO_SSLv3\n" unless ($pop3s{SSLv3} || 'disabled') eq 'enabled';
|
||
|
$OUT .= "options = NO_TLSv1\n" unless ($pop3s{TLSv1} || 'enabled') eq 'enabled';
|
||
|
|
||
|
}
|
||
|
fips = no
|