Added, for 3.5, check certificate as "no" for backwards compatibility (will be yes by default on 4.0 release)

This commit is contained in:
Adolfo Gómez García 2021-06-23 16:21:02 +02:00
parent 4f45caa2e9
commit 83a407d350
4 changed files with 4 additions and 4 deletions

View File

@ -97,7 +97,7 @@ class TSNXTransport(BaseNXTransport):
tooltip=_(
'If enabled, the certificate of tunnel server will be verified (recommended).'
),
defvalue=gui.TRUE,
defvalue=gui.FALSE,
tab=gui.TUNNEL_TAB,
)

View File

@ -91,7 +91,7 @@ class TRDPTransport(BaseRDPTransport):
tooltip=_(
'If enabled, the certificate of tunnel server will be verified (recommended).'
),
defvalue=gui.TRUE,
defvalue=gui.FALSE,
tab=gui.TUNNEL_TAB,
)

View File

@ -89,7 +89,7 @@ class TSPICETransport(BaseSpiceTransport):
tooltip=_(
'If enabled, the certificate of tunnel server will be verified (recommended).'
),
defvalue=gui.TRUE,
defvalue=gui.FALSE,
tab=gui.TUNNEL_TAB,
)

View File

@ -92,7 +92,7 @@ class TX2GOTransport(BaseX2GOTransport):
tooltip=_(
'If enabled, the certificate of tunnel server will be verified (recommended).'
),
defvalue=gui.TRUE,
defvalue=gui.FALSE,
tab=gui.TUNNEL_TAB,
)