From be6ba53fa47bc546279a2575523281845fe80da9 Mon Sep 17 00:00:00 2001 From: Timo Sirainen Date: Sat, 17 Feb 2001 19:44:22 +0000 Subject: Config file: ircnets -> chatnets, added type = "chat protocol" to chatnet config. Moved reading chatnets to core. Lots of other multiprotocol updates. git-svn-id: http://svn.irssi.org/repos/irssi/trunk@1237 dbcabf3a-b0e7-0310-adc4-f8d773084564 --- config | 52 +++++++++++++--------------------------------------- 1 file changed, 13 insertions(+), 39 deletions(-) (limited to 'config') diff --git a/config b/config index 27d19226..46bbdee1 100644 --- a/config +++ b/config @@ -1,32 +1,27 @@ servers = ( - { address = "irc.funet.fi"; chatnet = IRCNet; port = 6667; }, + { address = "irc.stealth.net"; chatnet = IRCNet; port = 6668; }, { address = "irc.efnet.net"; chatnet = EFNet; port = 6667; }, { address = "irc.undernet.org"; chatnet = Undernet; port = 6667; }, { address = "irc.dal.net"; chatnet = DALNet; port = 6667; }, { address = "irc.openprojects.net"; chatnet = OPN; port = 6667; }, { address = "irc.ptlink.net"; chatnet = PTlink; port = 6667; } + { address = "silc.pspt.fi"; chatnet = SILC; port = 706; } ); -ircnets = { - IRCNet = { max_kicks = 4; max_modes = 3; max_msgs = 5; max_whois = 4; }; - EFNet = { max_kicks = 4; max_modes = 4; max_msgs = 3; }; - Undernet = { max_kicks = 4; max_modes = 3; max_msgs = 3; }; - DALNet = { max_kicks = 4; max_modes = 6; max_msgs = 3; }; - OPN = { max_kicks = 1; max_modes = 6; max_msgs = 100; }; - PTLink = { max_kicks = 1; max_modes = 6; max_msgs = 100; }; +chatnets = { + IRCNet = { type = "IRC"; max_kicks = 4; max_modes = 3; max_msgs = 5; max_whois = 4; }; + EFNet = { type = "IRC"; max_kicks = 4; max_modes = 4; max_msgs = 3; }; + Undernet = { type = "IRC"; max_kicks = 4; max_modes = 3; max_msgs = 3; }; + DALNet = { type = "IRC"; max_kicks = 4; max_modes = 6; max_msgs = 3; }; + OPN = { type = "IRC"; max_kicks = 1; max_modes = 6; max_msgs = 100; }; + PTLink = { type = "IRC"; max_kicks = 1; max_modes = 6; max_msgs = 100; }; + SILC = { type = "SILC"; }; }; channels = ( - { - name = "#irssi"; - chatnet = ircnet; - autojoin = No; - }, - { - name = "#irssi"; - chatnet = efnet; - autojoin = No; - } + { name = "#irssi"; chatnet = ircnet; autojoin = No; }, + { name = "#irssi"; chatnet = opn; autojoin = No; }, + { name = "#silc"; chatnet = silc; autojoin = No; } ); aliases = { @@ -67,24 +62,3 @@ aliases = { SV = "say Irssi $J - http://irssi.org"; GOTO = "sb goto"; }; - -popups = ( - { label = "Whois"; command = "/whois %s"; }, - { label = "DCC Send File"; command = "/dcc send %s"; }, - { label = "Open DCC Chat"; command = "/dcc chat %s"; }, - { label = Query; command = "/query %s"; }, - { label = ""; command = "Op"; }, - { label = "Op"; command = "/op %s"; }, - { label = "Deop"; command = "/deop %s"; }, - { label = "Voice"; command = "/voice %s"; }, - { label = "Devoice"; command = "/devoice %s"; }, - { label = "Kick"; command = "/kick %s %s"; }, - { label = "Ban"; command = "/ban %s"; }, - { label = "Kick+ban"; command = "/kickban %s %s"; }, - { label = "Knockout"; command = "/knockout %s %s"; }, - { label = ""; command = ""; }, - { label = ""; command = "CTCP"; }, - { label = Ping; command = "/ping %s"; }, - { label = Version; command = "/ver %s"; }, - { label = ""; command = ""; } -); -- cgit v1.2.3