jabber 
- Description
- XMPP/Jabber client
- Latest
- jabber-0.13.1.tar (.sig), 2026-Aug-07, 1.79 MiB
- Maintainer
- Thanos Apollo <public@thanosapollo.org>
- Website
- https://git.thanosapollo.org/emacs-jabber/about/
- Browse ELPA's repository
- CGit or Gitweb
- All Dependencies
- fsm (.tar), keymap-popup (.tar)
- Badge
To install this package from Emacs, use package-install or list-packages.
Full description
1. About
jabber.el is an XMPP client for Emacs.
See the xmpp.org page for the full list of supported XEPs.
- Homepage
- Source:
2. Requirements
- Emacs 29.1 or later, compiled with dynamic module support
- fsm 0.2.0 or later
- keymap-popup 0.2 or later
2.1. OMEMO encryption (optional)
OMEMO end-to-end encryption uses a native C module built from the
vendored picomemo source. Build dependencies: a C compiler,
pkg-config, and Mbed TLS 3.0 or later (mbedcrypto).
Build the module manually from the jabber source or ELPA/package directory:
cd /path/to/jabber-source-or-elpa-dir make module
The resulting jabber-omemo-core.so (or .dylib on macOS) lands
beside the Elisp files and is loaded automatically. If the module is
missing, OMEMO use signals OMEMO module not compiled.
3. Installation
jabber.el is available via NonGNU ELPA.
You can install it via M-x package-install RET jabber
3.1. package-vc (Emacs 30+)
Emacs honors package-vc build commands such as :make only when
package-vc-allow-build-commands allows the package.
(setq package-vc-allow-build-commands '(jabber))
(use-package jabber
:ensure nil
:vc (:url "https://git.thanosapollo.org/emacs-jabber"
:branch "master"
:rev :newest
:lisp-dir "lisp"
:doc "README.org"
:make "module")
:custom
(jabber-account-list '(("user@example.org")))
:config
(jabber-modeline-mode 1)
:bind-keymap (("C-x C-j" . jabber-global-keymap))
:hook (kill-emacs . jabber-disconnect))
3.2. straight.el
(use-package jabber
:straight `(jabber
:type git
:host nil
:repo "https://git.thanosapollo.org/emacs-jabber"
:branch "master"
:files ("lisp/*.el"
"lisp/jabber-omemo-core.so"
"lisp/jabber-omemo-core.dylib")
:pre-build ,(pcase system-type
('berkeley-unix '(("gmake" "module" "CC=clang")))
('darwin '(("make" "module" "CC=clang")))
(_ '(("make" "module")))))
:custom
(jabber-account-list '(("user@example.org")))
:config
(jabber-modeline-mode 1)
:bind-keymap (("C-x C-j" . jabber-global-keymap))
:hook (kill-emacs . jabber-disconnect))
3.3. Nix
The repository ships a flake.nix with Emacs, test, lint, and
native-module build dependencies.
make test make module
To enter the same environment manually:
nix develop
To run the isolated Nix checks:
nix flake check
4. Configuration
4.1. Authentication
Accounts are configured via jabber-account-list. The simplest form
uses auth-source ~/.authinfo.gpg for passwords:
(setq jabber-account-list '(("user@example.org")
("second@account.org")))
With pass (password-store):
(setq jabber-account-list
`(("user@example.org"
(:password . ,(auth-source-pass-get 'secret "xmpp/example.org/user")))))
4.2. SOCKS5 proxy
An account can connect through an unauthenticated SOCKS5 proxy:
(setq jabber-account-list
'(("user@example.org"
(:proxy . (:type socks5 :host "127.0.0.1" :port 9050)))))
The destination hostname is sent to the proxy rather than resolved locally.
Proxy connections bypass SRV lookup and use the JID domain on port 5222, or
:network-server and :port when those are configured. STARTTLS is supported.
Direct TLS discovery, proxy authentication, and other proxy protocols are not
supported for proxied accounts.
4.3. Bug references
(add-hook 'jabber-chat-mode-hook #'bug-reference-mode)
;; Customize references
(setq jabber-bug-reference-alist
'(("jabber-el@conference\\.hmm\\.st"
"\\(#\\([0-9]+\\)\\)"
"https://todos.thanosapollo.org/r/emacs-jabber/%s")))
5. Basic commands
- Use
M-x jabber-rosterorC-x C-j C-rto get started.
Old versions
| jabber-0.13.0.tar.lz | 2026-Aug-05 | 298 KiB |
| jabber-0.12.5.tar.lz | 2026-Jul-28 | 274 KiB |
| jabber-0.12.4.tar.lz | 2026-Jul-26 | 273 KiB |
| jabber-0.12.3.tar.lz | 2026-Jul-25 | 266 KiB |
| jabber-0.12.2.tar.lz | 2026-Jul-13 | 262 KiB |
| jabber-0.12.1.tar.lz | 2026-Jul-11 | 261 KiB |
| jabber-0.12.0.tar.lz | 2026-Jul-08 | 256 KiB |
| jabber-0.11.1.tar.lz | 2026-Jun-26 | 250 KiB |
| jabber-0.11.0.tar.lz | 2026-Jun-14 | 247 KiB |
| jabber-0.10.10.tar.lz | 2026-May-30 | 187 KiB |
| jabber-0.10.9.tar.lz | 2026-May-15 | 186 KiB |
| jabber-0.10.8.tar.lz | 2026-May-11 | 185 KiB |
| jabber-0.10.7.tar.lz | 2026-May-09 | 191 KiB |
| jabber-0.10.6.tar.lz | 2026-Apr-30 | 190 KiB |
| jabber-0.10.5.tar.lz | 2026-Apr-10 | 187 KiB |
| jabber-0.10.4.tar.lz | 2026-Apr-08 | 187 KiB |
| jabber-0.10.3.tar.lz | 2026-Apr-06 | 183 KiB |
| jabber-0.10.2.tar.lz | 2026-Apr-04 | 183 KiB |
| jabber-0.10.1.tar.lz | 2026-Apr-03 | 183 KiB |
| jabber-0.10.0.tar.lz | 2026-Apr-02 | 180 KiB |
News
1. [0.13.1]
1.1. Fixes
- Correct outgoing MUC message-correction target lookup
- Keep global Jabber menu bindings available during package loading
- Preserve chat message bodies after live source reloads
2. [0.13.0]
2.1. Added
- XEP-0201 message threads with persistent sessions, local titles, child threads, and account-scoped routing
- XEP-0004 forms for MUC configuration and ad-hoc commands
- Unauthenticated SOCKS5 account
:proxysupport; destination names are resolved by the proxy, and authentication and other proxy protocols are not supported
2.2. Changed
- Chat-state notifications follow their owning message-thread session
- Thread buffer labels and headers show root-message previews
- Test loading no longer depends on generated autoloads and prefers newer source files over stale byte-code
- Compose, registration, search, and vCard editing use text-first buffers and grouped command menus instead of widget.el
- Added contribution instructions
2.3. Fixes
- Live MUC reactions use the correct account-scoped room buffer
- Replayed empty OMEMO messages stay hidden
- Delivery-receipt status follows the latest message
- Autoaway applies the configured away and extended-away priorities
- MUC mentions treat nicknames literally
- Direct invitations and transient reconnects preserve per-account room passwords in memory; explicit leave clears that session state
3. [0.12.5]
3.1. Fixes
- Stop archived OMEMO failures from flooding
*Messages* - Preserve unsent messages across connection recovery
- Improve privacy and interoperability for receipts, blocking, bookmarks, MAM, and reactions
4. [0.12.4]
4.1. Added
- Debian package build and installed-package tests to release checks
4.2. Changed
- Hardened OMEMO message corrections and real-time text handling
4.3. Fixes
- Reproducible autoload generation for Debian packages
- Load Org faces before rendering styled messages
5. [0.12.3]
5.1. Added
- Distinct theme-aware nickname colors in group chats
- Save images that Emacs cannot display
5.2. Fixes
- More reliable keepalive monitoring with multiple accounts
- Nickname completion works with custom delimiters
6. [0.12.2]
6.1. Added
- Open chats from desktop notifications
6.2. Fixes
- More reliable encrypted chats during session migration and out-of-order delivery
7. [0.12.1]
7.1. Added
- Press RET on a reply to jump to the original message
- Replies show and preserve more context, including after reloading a chat
7.2. Fixes
- More reliable encrypted chats after reconnects and out-of-order messages
- Safer inline image display, with manual loading available by pressing RET on an image URL
- Manual image sizes are preserved when chats are redrawn
8. [0.12.0]
8.1. Added
- Fontified fenced code blocks in chats
- Inline reply context when messages do not include fallback quotes
8.2. Changed
- More reliable encrypted chats after reconnects, archive catchup, and replayed messages
- Improved reply and correction handling
8.3. Fixes
- Failed encrypted message corrections no longer replace the original message
- Reply quotes and corrected replies preserve their context more consistently
9. [0.11.1]
9.1. Added
- See who reacted to a message via help-echo
- Help-echo for the item at point now shows automatically
9.2. Fixes
- Stop repeated error stanzas from spamming and reopening chat buffers
- Preserve scroll position when a chat buffer refreshes
10. [0.11.0]
10.1. Added
- Message reactions and MUC typing indicators
- Nix flake development environment
10.2. Changed
- OMEMO native module setup no longer auto-builds or auto-fetches sources
10.3. Fixes
- Avoid Prosody disconnects by sending CSI only when the server advertises it
- Recreate missing chat and MUC buffers from unread activity
- Stop emitting malformed presence and vCard stanzas with nil children
- Improve HTTP upload, message archive, reactions, receipts, and chat buffer reliability
… …