diff --git a/sopel/config/core_section.py b/sopel/config/core_section.py index f8a62bdb8f..c22cb17bec 100644 --- a/sopel/config/core_section.py +++ b/sopel/config/core_section.py @@ -1006,21 +1006,21 @@ def homedir(self): ``systemd`` or similar. """ - port = ValidatedAttribute('port', int, default=6667) + port = ValidatedAttribute('port', int, default=6697) """The port to connect on. - :default: ``6667`` normally; ``6697`` if :attr:`use_ssl` is ``True`` + :default: ``6697`` .. highlight:: ini **Required**:: - port = 6667 + port = 6697 - And usually when SSL is enabled:: + Or if SSL is disabled:: - port = 6697 - use_ssl = yes + port = 6667 + use_ssl = false """ @@ -1213,16 +1213,16 @@ def homedir(self): """ - use_ssl = BooleanAttribute('use_ssl', default=False) + use_ssl = BooleanAttribute('use_ssl', default=True) """Whether to use a SSL/TLS encrypted connection. - :default: ``False`` + :default: ``True`` - Example with SSL on: + Example with SSL off: .. code-block:: ini - use_ssl = yes + use_ssl = false """ @@ -1248,7 +1248,7 @@ def homedir(self): .. code-block:: ini - use_ssl = yes - verify_ssl = yes + use_ssl = true + verify_ssl = true """