I'm unable to get any notifications when getting pinged by people, or sending private messages.
I'm running on osx and running terminal-notifier
works fine. I've also tried to execute rcirc-notify-page-test
function and it works as expected. However, when people actually send me messages, nothing happens.
I'm using Emacs 24.4.1 (installed via brew
) and I installed rcirc-notify
manually from the current gist master with hash id 1198200cd2914fb5116d33cedbc774a1cbc1e1d1
.
I've copied it to ~/.emacs.d/lisp
folder, where .emacs.d/
is a symbolic link, and I've configured it like this:
(add-to-list 'load-path "~/.emacs.d/lisp/")
(eval-after-load 'rcirc '(require 'rcirc-notify))
;; rcirc settings
(eval-after-load "rcirc"
'(progn
;; List of rooms to join
(setq rcirc-server-alist
'(("irc.freenode.net" :channels ("#emacs" "#infinispan"))))
;; Identification for IRC server connections
(setq rcirc-default-user-name "galderz"
rcirc-default-nick "galderz"
rcirc-default-full-name "Galder")
(message "rcirc has been configured.")))
Any ideas how to debug this further, or even better, solve this?
I've tried both terminal and windowed emacs and same thing applies to both.
Thanks in advance!
p.s. I've not tried ERC yet...