jcoffey-dev 8abf3a96aa A tenant's administrator can turn legacy mail apps off for the organization
INBUXA's tenant switch (legacy-protocols LP-9 to LP-18) in the
administration. Each tenant's sheet gains "Legacy mail apps": whether IMAP,
POP3, ManageSieve and sending from mail apps are on or off on the tenant's
domains, and the switch.

Nobody turns it off by accident. "Turn off legacy protocols…" first shows
who would notice -- every account in the tenant that signed in with a
legacy mail app in the last 30 days, with the protocols and when (LP-15) --
and the statement of what it means, "for everyone in {tenant}" (LP-16),
then asks for the phrase "turn off legacy mail", matched exactly (LP-17).
Turning it back on is one click; the server refuses while it has legacy
protocols off for everyone, and its words are shown. A tenant's switch
closes no port, so the statement names none.

It needs the domain permissions the server checks for the switch; with
read-only access the state shows and the buttons don't. On a server that
isn't INBUXA, or is older, the section isn't there.

The dashboard says so while legacy mail is off for the signed-in
administrator's organization (LP-18), from the same session flag as
Settings › Security's line.

Every new string in all nine languages, the register each catalog uses, and
the count in each language's plural forms.
2026-09-21 13:54:24 -07:00
2026-09-20 16:07:56 -07:00
2026-09-20 22:58:38 -07:00
2026-09-19 00:13:12 -07:00

INBUXA webmail

License: AGPL-3.0-or-later

The webmail of the INBUXA suite: mail, calendars, contacts, files and filters in one app that works as well on a phone as on a desktop. It talks only JMAP to the INBUXA mail server, and keeps nothing of its own: everything durable, settings included, lives on the server, so the container is disposable.

What's in it

  • Mail: conversations, labels, search operators, keyboard shortcuts, scheduled and undo send, invitations and RSVP, filters made from a message.
  • Calendar: month, week, day and agenda views, recurrence, attendees and free-busy.
  • Contacts: address books, groups, vCard import and export.
  • Files: browse, upload, move, share.
  • Signature checking: S/MIME signed mail verified as you read it.
  • Settings that follow the account, stored on the mail server.
  • On a phone: swipe to archive or delete, pull to refresh, hold to select.
  • Administration: a dashboard, accounts, groups, mailing lists, roles, tenants and domains, each shown only to an account whose role allows it. Everything else is in INBUXA Admin.
  • Sign-in on the mail server's own page, two-factor included. The webmail never handles a password to sign someone in, and holds only sealed tokens.
  • Ten interface languages and twelve themes.

Configuration

Variable Meaning
MAIL_SERVER_URL How this webmail reaches the mail server.
APP_SECRET A long random secret for sealing sessions. Required in production.
OAUTH_CLIENT_SECRET Turns on sign-in through the server's page. The secret of the confidential client the server registers for this webmail: on the server, the same value as INBUXA_WEBMAIL_CLIENT_SECRET.
OAUTH_CLIENT_ID The client's id. Default ihasmail-inbuxa, which is what the server registers.
PUBLIC_URL Where browsers reach the webmail, without BASE_PATH. Required with OAUTH_CLIENT_SECRET. The redirect URI, PUBLIC_URL + BASE_PATH + /api/auth/callback, must match the server's INBUXA_WEBMAIL_URL + /api/auth/callback exactly.
MAIL_SERVERS_FILE Optional: several mail servers, picked by the account's domain. See mail-servers.example.json.
ADMIN_URL Optional: where INBUXA Admin is, for the dashboard's link.
APP_NAME What the webmail calls itself. Default INBUXA, shown as the INBUXA wordmark; any other name shows as text.

.env.example lists the rest.

On the mail server, set INBUXA_WEBMAIL_URL to the webmail's address (with BASE_PATH, if any) and INBUXA_WEBMAIL_CLIENT_SECRET to the shared secret. The server registers the client on start and allows the webmail's origin for cross-origin requests.

With one mail server, the sign-in page asks for no address, only whether this is the person's own device. The server's page asks for the rest. With several, the address comes first, since its domain picks the server.

A password change revokes the server's tokens, so it signs the person out everywhere, this session included.

Quick start (Docker)

cp .env.example .env
# edit: MAIL_SERVER_URL, APP_SECRET, and for server sign-in OAUTH_CLIENT_SECRET and PUBLIC_URL
docker compose up --build -d
# → http://localhost:8080. Put a reverse proxy in front for TLS.

Source code

INBUXA webmail is a modified ihasmail, so the AGPL's offer is this fork: https://github.com/inbuxa/ihasmail-inbuxa. The sign-in page and Settings About link there, beside the version, which names the commit the running build came from.

Run your own patched build and that offer becomes yours, not ours: point SOURCE_URL at your tree and both links follow it.

Development

npm install
npm run dev:mock     # the built-in mock mail server ([email protected] / demo)
npm test

The mock also answers OAuth. Start it and the webmail with OAUTH_CLIENT_SECRET=mock-oauth-secret and a PUBLIC_URL, and its sign-in page approves the demo user at once.

Architecture, the mock's switches and how versions are numbered are in CONTRIBUTING.md.

Built on ihasmail

The INBUXA webmail is built on ihasmail, Coffey Labs' own webmail, which stays an independent product. The public repository is the remote ihasmail, fetch-only, and its main is merged in to keep up. Nothing here is pushed there.

License

Copyright (C) 2026 Coffey Labs. AGPL-3.0-or-later; see LICENSE.

S
Description
Imported from github.com during the 2026-09-20 standup (local dir: ihasmail-inbuxa)
Readme AGPL-3.0
7.6 MiB
2026-09-22 17:09:21 +00:00
Languages
TypeScript 94.8%
CSS 2.9%
JavaScript 1.7%
Python 0.3%
Shell 0.2%