summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexander Færøy <ahf@0x90.dk>2016-10-16 13:48:43 +0200
committerAlexander Færøy <ahf@0x90.dk>2016-10-22 20:37:12 +0200
commit6a286a4eb284cda4dce9ed97fec2aca643a139b0 (patch)
tree29cdc167f83f46b5f742731139a2b183efa72fd5
parent2be7289085d6969e6774ce3909f0224b1d689f93 (diff)
downloadirssi-6a286a4eb284cda4dce9ed97fec2aca643a139b0.zip
Use TLS by default for Freenode, IRC6, OFTC, EsperNet, EFnet, and Rizon.
-rw-r--r--NEWS2
-rw-r--r--irssi.conf12
2 files changed, 8 insertions, 6 deletions
diff --git a/NEWS b/NEWS
index 8ecccc57..f94ede27 100644
--- a/NEWS
+++ b/NEWS
@@ -21,6 +21,8 @@ v0.8.21-head 2016-xx-xx The Irssi team <staff@irssi.org>
+ Rename SSL to TLS in the code and add -tls_* versions of the -ssl_*
options to /CONNECT and /SERVER, but make sure the -ssl_* options continue
to work.
+ + Use TLS for Freenode, EFnet, EsperNet, OFTC, Rizon, and IRC6 in the default
+ configuration.
- IP addresses are no longer stored when resolve_reverse_lookup is
used.
- /names and $[...] now uses utf8 string operations (#40, #411).
diff --git a/irssi.conf b/irssi.conf
index ba159f34..0e486807 100644
--- a/irssi.conf
+++ b/irssi.conf
@@ -1,16 +1,16 @@
servers = (
{ address = "irc.dal.net"; chatnet = "DALnet"; port = "6667"; },
- { address = "irc.efnet.org"; chatnet = "EFNet"; port = "6667"; },
- { address = "irc.esper.net"; chatnet = "EsperNet"; port = "6667"; },
- { address = "chat.freenode.net"; chatnet = "Freenode"; port = "6667"; },
+ { address = "ssl.efnet.org"; chatnet = "EFNet"; port = "9999"; use_tls = "yes"; },
+ { address = "irc.esper.net"; chatnet = "EsperNet"; port = "6697"; use_tls = "yes"; tls_verify = "yes"; },
+ { address = "chat.freenode.net"; chatnet = "Freenode"; port = "6697"; use_tls = "yes"; tls_verify = "yes"; },
{ address = "irc.gamesurge.net"; chatnet = "GameSurge"; port = "6667"; },
- { address = "eu.irc6.net"; chatnet = "IRCnet"; port = "6667"; },
+ { address = "eu.irc6.net"; chatnet = "IRCnet"; port = "6667"; use_tls = "yes"; },
{ address = "open.ircnet.net"; chatnet = "IRCnet"; port = "6667"; },
{ address = "irc.ircsource.net"; chatnet = "IRCSource"; port = "6667"; },
{ address = "irc.netfuze.net"; chatnet = "NetFuze"; port = "6667"; },
- { address = "irc.oftc.net"; chatnet = "OFTC"; port = "6667"; },
+ { address = "irc.oftc.net"; chatnet = "OFTC"; port = "6697"; use_tls = "yes"; tls_verify = "yes"; },
{ address = "irc.quakenet.org"; chatnet = "QuakeNet"; port = "6667"; },
- { address = "irc.rizon.net"; chatnet = "Rizon"; port = "6667"; },
+ { address = "irc.rizon.net"; chatnet = "Rizon"; port = "6697"; use_tls = "yes"; tls_verify = "yes"; },
{ address = "silc.silcnet.org"; chatnet = "SILC"; port = "706"; },
{ address = "irc.undernet.org"; chatnet = "Undernet"; port = "6667"; }
);