From 100cefb00b4cda6f38b21dee6cf238b312a39e9c Mon Sep 17 00:00:00 2001 From: Shivaram Lingamneni Date: Tue, 26 Feb 2019 15:49:17 -0500 Subject: [PATCH 1/2] deprecate plaintext on 6667 --- oragono.yaml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/oragono.yaml b/oragono.yaml index 8181f729..c76c4630 100644 --- a/oragono.yaml +++ b/oragono.yaml @@ -12,11 +12,11 @@ server: # addresses to listen on listen: - - ":6667" - - ":6697" # ssl port - # Binding on specific IPs: - # - "127.0.0.1:6668" - # - "[::1]:6668" + - ":6697" # SSL/TLS port + - ":6667" # plaintext port + # To disable plaintext over the Internet, comment out :6667 and replace with: + # - "127.0.0.1:6667" # (loopback ipv4, localhost-only) + # - "[::1]:6667" # (loopback ipv6, localhost-only) # Unix domain socket for proxying: # - "/tmp/oragono_sock" From f032313f6fd74b8dc08ff79c3c861d71357b6140 Mon Sep 17 00:00:00 2001 From: Shivaram Lingamneni Date: Tue, 26 Feb 2019 16:27:14 -0500 Subject: [PATCH 2/2] disable ident by default --- oragono.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/oragono.yaml b/oragono.yaml index c76c4630..ebc85c65 100644 --- a/oragono.yaml +++ b/oragono.yaml @@ -53,7 +53,7 @@ server: preload: false # use ident protocol to get usernames - check-ident: true + check-ident: false # password to login to the server # generated using "oragono genpasswd"