Only join #emacs after authenticating with NickServ

This commit is contained in:
Tom Willemse 2017-03-05 22:13:20 -08:00
parent 389b570fc3
commit cfbb40c532

View file

@ -13,22 +13,27 @@ customizations I wanted to, Circe seems much better at this.
I spend most of my time on IRC on Freenode.
#+BEGIN_SRC emacs-lisp
#+BEGIN_SRC emacs-lisp -r -l ";(ref:%s)"
(add-to-list 'circe-network-options
`("Freenode"
:nick "ryuslash"
:channels ("#emacs"
"#mowedline"
:channels ("#mowedline"
"#ninthfloor"
"#dispass"
"#linuxvoice"
"#conkeror"
"#emacs-circe"
"#chicken")
"#chicken"
:after-auth ;(ref:aauth)
"#emacs")
:nickserv-password
,(oni-circe-get-password-for "irc.freenode.net")))
#+END_SRC
The [[(aauth)][:after-auth]] keyword is used to specify that the =#emacs= channel
should only be joined once the authentication with NickServ has
finished. This has apparently become a requirement.
Sometimes I watch some Twitch streams as well.
#+BEGIN_SRC emacs-lisp