DocsExtensionsExtensions overview

Extensions

Third parties can extend Bulwark Webmail two ways:

  • Plugins - add hooks, UI buttons, sidebar apps, keyboard shortcuts, and whole new workflows that integrate with the JMAP client.
  • Themes - change fonts, colors, and layout.

Both are published on the Bulwark Extensions directory, which lists free and open source extensions that have passed review.

What you'll find in these docs

Getting started

Plugins

Plugins are managed through Bulwark's admin dashboard. A plugin is a small JavaScript module with a declarative configuration schema, an optional set of UI extension points, and a permission manifest. See the plugin system overview for the built-in architecture - the authoring model for third-party plugins follows the same conventions.

Themes

A theme is a bundle of CSS overrides that target Bulwark's design tokens (the --color-* CSS variables defined in app/globals.css). You declare a theme in the same manifest format as a plugin, set "type": "theme", and ship the stylesheet entry point.

Design principles

  • Free and open source, always: the directory will never accept paid or closed-source extensions.
  • Privacy first: extensions must not collect user data beyond what their declared permissions allow.
  • Minimum permissions: asking for more than the extension needs is grounds for rejection.
  • Auditable by default: all source code must live in a public GitHub repository under an OSI-approved license.

When you are ready to ship, read the submission guidelines, then submit at extensions.bulwarkmail.org/submit.