From c91f93dd6811b2ca0e16bf66b3892b4006f283f6 Mon Sep 17 00:00:00 2001 From: Howard Abrams Date: Wed, 13 Dec 2023 11:25:23 -0800 Subject: [PATCH] Eschewing a ZNC approach for just directly going into IRC --- ha-irc.org | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ha-irc.org b/ha-irc.org index e36c63d..c554504 100644 --- a/ha-irc.org +++ b/ha-irc.org @@ -63,11 +63,11 @@ My IRC /needs/ are basic, but I'm not sure which I want to use. (defun ha-erc-connect-irc () "Connect to my favorite IRC server with ERC." (interactive) - (let* ((auth-results (auth-source-search :host "howardabrams.com" :port 7777 :max 1)) + (let* ((auth-results (auth-source-search :host "irc.libera.chat" :port 6667 :max 1)) (auth-first (first auth-results)) (username (plist-get auth-first :user)) (password (funcall (plist-get auth-first :secret)))) - (erc :server "howardabrams.com" :port 7777) + (erc :server "irc.libera.chat" :port 6667) (sit-for 2) (erc-cmd-QUOTE (format "PASS %s:%s" username password)))) #+end_src