]> Sergey Matveev's repositories - dotfiles.git/commitdiff
Up to date irssi config
authorSergey Matveev <stargrave@stargrave.org>
Mon, 10 Apr 2023 07:30:21 +0000 (10:30 +0300)
committerSergey Matveev <stargrave@stargrave.org>
Mon, 10 Apr 2023 07:30:21 +0000 (10:30 +0300)
irssi/.irssi/config.skel

index 73e1737069fd5d5c7302314b011ed55daf304884..8e8588fa6566dbe97c7980bd32643b71c462649b 100644 (file)
@@ -18,16 +18,18 @@ settings = {
     user_name = "stargrave";
     nick = "stargrave";
     timestamp_format = "%H:%M:%S";
+    resolve_prefer_ipv6 = "yes";
   };
 };
 logs = { };
 servers = (
   {
-    address = "::1";
-    chatnet = "matterircd";
-    port = "6666";
-    use_tls = "no";
-    tls_verify = "no";
+    address = "irc.oftc.net";
+    chatnet = "OFTC";
+    port = "6697";
+    use_tls = "yes";
+    tls_verify = "yes";
+    tls_cert = "~/.irssi/certs/stargrave.irc.ed.pem";
     autoconnect = "yes";
   },
   {
@@ -36,20 +38,13 @@ servers = (
     port = "6697";
     use_tls = "yes";
     tls_verify = "yes";
+    tls_cert = "~/.irssi/certs/stargrave.irc.ed.pem";
     autoconnect = "yes";
-  }
+  },
 );
 chatnets = {
-  matterircd = {
-    type = "IRC";
-    autosendcmd = "/qmsg mattermost LOGIN stargrave PASSWORD ; wait 5000";
-  };
-  LiberaChat = {
-    type = "IRC";
-    sasl_mechanism = "plain";
-    sasl_username = "stargrave";
-    sasl_password = "PASSWORD";
-  };
+  OFTC = { type = "IRC"; };
+  LiberaChat = { type = "IRC"; };
 };
 hilights = ( { text = "stargrave"; nick = "yes"; word = "yes"; } );
 keyboard = (
@@ -58,8 +53,7 @@ keyboard = (
   { key = "^L"; id = "command"; data = "WINDOW LAST"; }
 );
 channels = (
-  { name = "#gopherproject"; chatnet = "LiberaChat"; autojoin = "yes"; },
-  { name = "#nethack"; chatnet = "LiberaChat"; autojoin = "yes"; },
-  { name = "#redo"; chatnet = "LiberaChat"; autojoin = "yes"; }
+  { name = "#redo"; chatnet = "LiberaChat"; autojoin = "yes"; },
+  { name = "#yggdrasil"; chatnet = "LiberaChat"; autojoin = "yes"; },
+  { name = "#nncp"; chatnet = "OFTC"; autojoin = "yes"; },
 );
-ignores = ( { level = "NO_ACT ALL"; channels = ( "#nethack" ); } );