sasl.external: connection to server failed (a TLS error occured: io error: No such file or directory (os error 2)) #511
-
The problem
Configuration[servers.oftc]
nickname = "removed"
nick_identify_syntax = "password-nick"
server = "irc.oftc.net"
channels = ["#tor-relays"]
[servers.oftc.sasl.external]
cert = "/home/dsilva/.config/irc/oftc.cer"
key = "/home/dsilva/.config/irc/oftc.key" Location of certificate and key:
If I comment out the This is on a Linux system (flatpak install). On Windows, I use the same configuration, and it just works there.
I've generated this certificate by following the OFTC documentation: https://www.oftc.net/NickServ/CertFP/ |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Flatpak has no permission to read from So I moved the certificate files into the Halloy configuration folder (a place I know it can read). [servers.oftc.sasl.external]
cert = "/home/dsilva/.var/app/org.squidowl.halloy/config/halloy/certs/oftc.cer"
key = "/home/dsilva/.var/app/org.squidowl.halloy/config/halloy/certs/oftc.key" And now it works. *sigh* |
Beta Was this translation helpful? Give feedback.
Flatpak has no permission to read from
~/.config/irc
— duh!So I moved the certificate files into the Halloy configuration folder (a place I know it can read).
And now it works. *sigh*