summaryrefslogtreecommitdiff
path: root/poezio/config.py
diff options
context:
space:
mode:
Diffstat (limited to 'poezio/config.py')
-rw-r--r--poezio/config.py12
1 files changed, 1 insertions, 11 deletions
diff --git a/poezio/config.py b/poezio/config.py
index dbbed5ba..4eb43cad 100644
--- a/poezio/config.py
+++ b/poezio/config.py
@@ -30,16 +30,6 @@ ConfigDict = Dict[str, Dict[str, ConfigValue]]
USE_DEFAULT_SECTION = '__DEFAULT SECTION PLACEHOLDER__'
-CA_CERT_DEFAULT_PATHS = {
- '/etc/ssl/cert.pem',
- '/etc/ssl/certs/ca-certificates.crt',
- '/etc/ssl/certs/ca-bundle.crt',
- '/etc/pki/tls/certs/ca-bundle.crt',
- '/etc/ssl/certs/ca-certificates.crt',
- '/etc/ca-certificates/extracted/tls-ca-bundle.pem',
- '/etc/pki/ca-trust/extracted/openssl/ca-bundle.trust.crt',
-}
-
DEFAULT_CONFIG: ConfigDict = {
'Poezio': {
'ack_message_receipts': True,
@@ -51,7 +41,7 @@ DEFAULT_CONFIG: ConfigDict = {
'autorejoin_delay': '5',
'autorejoin': False,
'beep_on': 'highlight private invite disconnect',
- 'ca_cert_path': ':'.join(CA_CERT_DEFAULT_PATHS),
+ 'ca_cert_path': '',
'certificate': '',
'certfile': '',
'ciphers': 'HIGH+kEDH:HIGH+kEECDH:HIGH:!PSK:!SRP:!3DES:!aNULL',