I'm trying to connect to HipChat via jabber.el. Here is my configuration:
(setq jabber-account-list '(("myhipchatid@chat.hipchat.com"
(:network-server . "chat.hipchat.com")
(:password . "secret"))))
When I try to connect using jabber-connect
I continually get this error:
nil@nil: connection lost: `Couldn't connect to nil:5222: binding stack not balanced (serious byte compiler bug)'
This leads me to believe that jabber-connect is not picking up the values I set in jabber-account-list. Can anyone provide guidance?
For what it's worth I've been working off of this gist: https://gist.github.com/puffnfresh/4002033
Final update: thanks all for the help! I've written up the final form of my working configuration here: https://gist.github.com/bitops/77308b347bceb54302a2