disable SSLv2 by default in the wrapper as well
This commit is contained in:
parent
89add4f330
commit
312f4be4b2
|
@ -261,7 +261,7 @@ File containing X.509 CA certificates used to verify server identities.
|
|||
.TP
|
||||
\fBUseSSLv2\fR \fIyes\fR|\fIno\fR
|
||||
Should \fBisync\fR use SSLv2 for communication with the IMAP server over SSL?
|
||||
(Default: \fIyes\fR if the imaps port is used, otherwise \fIno\fR)
|
||||
(Default: \fIno\fR)
|
||||
..
|
||||
.TP
|
||||
\fBUseSSLv3\fR \fIyes\fR|\fIno\fR
|
||||
|
|
|
@ -254,7 +254,7 @@ main( int argc, char **argv )
|
|||
if (!strncasecmp( "imaps:", optarg, 6 )) {
|
||||
global.use_imaps = 1;
|
||||
global.port = 993;
|
||||
global.use_sslv2 = 1;
|
||||
global.use_sslv2 = 0;
|
||||
global.use_sslv3 = 1;
|
||||
optarg += 6;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue
Block a user