External resources:
Jabber is an open instant messaging (IM) system, also known as XMPP. It is described in RFCs 3920-3923 and a series of XEPs (XMPP Extension Proposals). That is, unlike legacy IM systems (such as ICQ or MSN Messenger), the protocol is published in the open, free for anyone to implement. Therefore you shouldn't be surprised that there is a Jabber client for Emacs, too. (If you are not of the Emacs persuasion, see this list of Jabber clients.)
Jabber is, like e-mail, a decentralised system. A Jabber identifier
(JID) is of the form username@server, just like an e-mail address, and
every Jabber user whose server is open to Internet connections can
communicate with any other user. This is in stark contrast to the
legacy "walled-garden" IM systems, where you need a separate account
for each system to be able to communicate with its users. Note that
the Google Talk service is an XMPP service, so if you have a GMail
account, you already have a JID ending with @gmail.com.
In Jabber, you have a "roster", a list of contacts. You can see which of them are online at the moment, and chat with them. (You can also send messages to an offline contact, and the message will be stored on the server for later delivery.) Jabber also supports IRC-style chat rooms.
jabber.el is a Jabber client for Emacs. It may seem strange to have a chat client in an editor, but consider that chatting is, after all, just a special case of text editing.
Note that jabber.el is available as emacs-jabber in Debian, and in Ubuntu's "universe" section.
jabber.el requires either GNU Emacs 22, or GNU Emacs 21 combined with Gnus 5.10. You should get these from your distribution, or from the Emacs and Gnus web sites.
However, if you want to connect to servers that use SRV records (e.g. Google Talk), it is recommended to use either No Gnus or Gnus 5.13.
If you want encrypted connections (some servers, e.g. Google Talk, require it), you need GnuTLS installed.
Download the latest release and unpack it in a suitable location. Add
something like the following to your .emacs file:
;; adjust this path: (add-to-list 'load-path "/path/to/emacs-jabber") ;; For 0.7.1 and below: (require 'jabber) ;; For 0.7.90 and above: (require 'jabber-autoloads)
Either evaluate those lines, or restart Emacs.
See the Basic Operation in the manual.
Bug reports can be sent either to the mailing list emacs-jabber-general or to the bug tracker.
jabber.el releases are, unfortunately, less frequent than they would be in an ideal world. You can get the latest development version using various version control systems.
See the Sourceforge CVS page. In short, run the following command:
cvs -z3 -d:pserver:anonymous@emacs-jabber.cvs.sourceforge.net:/cvsroot/emacs-jabber co -P emacs-jabber
The GNU Arch mirror is no longer being updated.
git-clone git://git.catap.ru/emacs-jabber.git
The list of releases has been moved to a separate page.
Date: 2009/02/19 1:31:21 AM