mirror of
https://github.com/irssi/irssi.git
synced 2026-08-23 02:22:36 +02:00
Add pinned TLS fingerprint support.
This patch adds support for pinning TLS fingerprints. Setting a pinned fingerprint will override all other TLS verification and will thus be the only variable that will be looked at when connecting to a TLS enabled IRC server.
This commit is contained in:
parent
fb78787d4e
commit
78f007d493
31 changed files with 1114 additions and 357 deletions
18
irssi.conf
18
irssi.conf
|
|
@ -2,13 +2,13 @@ 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 = "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"; },
|
||||
{ address = "irc.quakenet.org"; chatnet = "QuakeNet"; port = "6667"; },
|
||||
{ address = "irc.rizon.net"; chatnet = "Rizon"; port = "6667"; },
|
||||
{ address = "silc.silcnet.org"; chatnet = "SILC"; port = "706"; },
|
||||
|
|
@ -21,7 +21,7 @@ chatnets = {
|
|||
max_kicks = "4";
|
||||
max_msgs = "20";
|
||||
max_whois = "30";
|
||||
};
|
||||
};
|
||||
EFNet = {
|
||||
type = "IRC";
|
||||
max_kicks = "1";
|
||||
|
|
@ -64,7 +64,7 @@ chatnets = {
|
|||
max_msgs = "1";
|
||||
max_whois = "1";
|
||||
};
|
||||
OFTC = {
|
||||
OFTC = {
|
||||
type = "IRC";
|
||||
max_kicks = "1";
|
||||
max_msgs = "1";
|
||||
|
|
@ -264,7 +264,7 @@ aliases = {
|
|||
statusbar = {
|
||||
|
||||
items = {
|
||||
|
||||
|
||||
barstart = "{sbstart}";
|
||||
barend = "{sbend}";
|
||||
|
||||
|
|
@ -276,10 +276,10 @@ statusbar = {
|
|||
|
||||
window = "{sb $winref:$tag/$itemname{sbmode $M}}";
|
||||
window_empty = "{sb $winref{sbservertag $tag}}";
|
||||
|
||||
|
||||
prompt = "{prompt $[.15]itemname}";
|
||||
prompt_empty = "{prompt $winname}";
|
||||
|
||||
|
||||
topic = " $topic";
|
||||
topic_empty = " Irssi v$J - http://www.irssi.org";
|
||||
|
||||
|
|
@ -328,7 +328,7 @@ statusbar = {
|
|||
};
|
||||
|
||||
prompt = {
|
||||
|
||||
|
||||
type = "root";
|
||||
placement = "bottom";
|
||||
position = "100";
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue