diff options
author | Matthias Andree <matthias.andree@gmx.de> | 2019-08-19 21:30:59 +0200 |
---|---|---|
committer | Matthias Andree <matthias.andree@gmx.de> | 2019-08-19 21:31:49 +0200 |
commit | 86b77d1b7f01a4edacc1d2491b4d3050d1edb680 (patch) | |
tree | c01891f73d3b4b5dcbfa547fe92a8113f9fe423b | |
parent | d9382ebc8fcaf704b41d00cd0a43df6fe4655473 (diff) | |
download | fetchmail-86b77d1b7f01a4edacc1d2491b4d3050d1edb680.tar.gz fetchmail-86b77d1b7f01a4edacc1d2491b4d3050d1edb680.tar.bz2 fetchmail-86b77d1b7f01a4edacc1d2491b4d3050d1edb680.zip |
Flip the switch on sslcertck in fetchmailconf, too.
-rwxr-xr-x | fetchmailconf.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fetchmailconf.py b/fetchmailconf.py index 5c0b8edc..1c780d4b 100755 --- a/fetchmailconf.py +++ b/fetchmailconf.py @@ -275,7 +275,7 @@ class User: self.sslkey = None # SSL key filename self.sslcert = None # SSL certificate filename self.sslproto = None # Force SSL? - self.sslcertck = 0 # Enable strict SSL cert checking + self.sslcertck = 1 # Enable strict SSL cert checking self.sslcertpath = None # Path to trusted certificates self.sslcommonname = None # SSL CommonName to expect self.sslfingerprint = None # SSL key fingerprint to check |