Authentication-Results: mail-b.sr.ht; dkim=pass header.d=posteo.net header.i=@posteo.net Received: from mout01.posteo.de (mout01.posteo.de [185.67.36.65]) by mail-b.sr.ht (Postfix) with ESMTPS id D4EA211EE05 for <~emersion/soju-dev@lists.sr.ht>; Tue, 25 Oct 2022 18:09:13 +0000 (UTC) Received: from submission (posteo.de [185.67.36.169]) by mout01.posteo.de (Postfix) with ESMTPS id 994BB240026 for <~emersion/soju-dev@lists.sr.ht>; Tue, 25 Oct 2022 20:09:12 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=posteo.net; s=2017; t=1666721352; bh=ZBdu1qbiDihHsq3XRhAgl7C9ZrrTq8jxbLnkfs0rk/c=; h=From:To:Cc:Subject:Autocrypt:Date:From; b=KwfLk16Dc45IZKNaPVItVxDiYUOSDNpGhvOY3WclIEAOEl8QP6UNjWakL/tjBN3do 5fTjvHZf9cxYaivFVw4unNDkid6eG5UDBwNQ2Gk5pWl9BJzOsCm0g+gh0m6OkyVms5 fRtlGAx3Q4AEo0voVXIIbE07hqyc2EA46IdQ3gwleFME07Py536+ePMIeK0LBeNxjb Yf8+I/qh1kCZT4tmo6DnwBD7EMPV9p1t9cq/iNJoL4nkIWb1YPdPXwqQha/CsodxNh 7vH/CW/EV/yQo4c4waQHM6v+Zy4CB60Fo7lkZujuGSH7wRvmOsjsWAuaAIjUEDHC2E 65+2q0pzs0YuA== Received: from customer (localhost [127.0.0.1]) by submission (posteo.de) with ESMTPSA id 4Mxg1g5YY1z6tmW; Tue, 25 Oct 2022 20:09:11 +0200 (CEST) From: Philip Kaludercic To: Sandra Snan Cc: ~emersion/soju-dev@lists.sr.ht Subject: Re: [PATCH] Expand example for rcirc In-Reply-To: <20221015213454.442910-1-sandra.snan@idiomdrottning.org> (Sandra Snan's message of "Sat, 15 Oct 2022 23:34:54 +0200") References: <20221015213454.442910-1-sandra.snan@idiomdrottning.org> Autocrypt: addr=philipk@posteo.net; prefer-encrypt=nopreference; keydata= mDMEYHHqUhYJKwYBBAHaRw8BAQdAp3GdmYJ6tm5McweY6dEvIYIiry+Oz9rU4MH6NHWK0Ee0QlBo aWxpcCBLYWx1ZGVyY2ljIChnZW5lcmF0ZWQgYnkgYXV0b2NyeXB0LmVsKSA8cGhpbGlwa0Bwb3N0 ZW8ubmV0PoiQBBMWCAA4FiEEDM2H44ZoPt9Ms0eHtVrAHPRh1FwFAmBx6lICGwMFCwkIBwIGFQoJ CAsCBBYCAwECHgECF4AACgkQtVrAHPRh1FyTkgEAjlbGPxFchvMbxzAES3r8QLuZgCxeAXunM9gh io0ePtUBALVhh9G6wIoZhl0gUCbQpoN/UJHI08Gm1qDob5zDxnIHuDgEYHHqUhIKKwYBBAGXVQEF AQEHQNcRB+MUimTMqoxxMMUERpOR+Q4b1KgncDZkhrO2ql1tAwEIB4h4BBgWCAAgFiEEDM2H44Zo Pt9Ms0eHtVrAHPRh1FwFAmBx6lICGwwACgkQtVrAHPRh1Fw1JwD/Qo7kvtib8jy7puyWrSv0MeTS g8qIxgoRWJE/KKdkCLEA/jb9b9/g8nnX+UcwHf/4VfKsjExlnND3FrBviXUW6NcB Date: Tue, 25 Oct 2022 18:09:10 +0000 Message-ID: <87eduvlqrd.fsf@posteo.net> MIME-Version: 1.0 Content-Type: text/plain Sandra Snan writes: > If you don't like OFTC you can change it to tilde.chat or any other > network. > --- > contrib/clients.md | 11 ++++++++++- > 1 file changed, 10 insertions(+), 1 deletion(-) > > diff --git a/contrib/clients.md b/contrib/clients.md > index e947046..3df2c85 100644 > --- a/contrib/clients.md > +++ b/contrib/clients.md > @@ -43,8 +43,17 @@ The only thing needed here is the general config: > :encryption tls > :nick "" > :user-name "/irc.libera.chat" ;; Example with Libera.Chat > - :password ""))) > + :password "" > + :server-alias "libera") > + ("" ;: same soju server address for both > + :port 6697 > + :encryption tls > + :nick "" > + :user-name "/irc.oftc.net" ;; Example with OFTC > + :password "" ;; same soju password for both > + :server-alias "oftc"))) > ``` > +(The password should be your soju password, you'll configure your network passwords by talking to BouncerServ.) I am afraid that this does not work, if the server name is used twice, rcirc will attempt to associate the network process with the same buffer, which doesn't work conceptually. The fact that this doesn't trigger an error should be considered a bug on rcirc' part. > Then run `M-x irc`.