<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Stefan Sabolowitsch</title>
    <description>The latest articles on DEV Community by Stefan Sabolowitsch (@stefan_sabolowitsch_3bd10).</description>
    <link>https://dev.to/stefan_sabolowitsch_3bd10</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F2288152%2F2a45461c-1384-4511-b499-3ea2a0240780.png</url>
      <title>DEV Community: Stefan Sabolowitsch</title>
      <link>https://dev.to/stefan_sabolowitsch_3bd10</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/stefan_sabolowitsch_3bd10"/>
    <language>en</language>
    <item>
      <title>Vaultwarden-Plus: A Password Manager Built for Operators</title>
      <dc:creator>Stefan Sabolowitsch</dc:creator>
      <pubDate>Wed, 24 Jun 2026 11:29:39 +0000</pubDate>
      <link>https://dev.to/stefan_sabolowitsch_3bd10/vaultwarden-plus-a-password-manager-built-for-operators-621</link>
      <guid>https://dev.to/stefan_sabolowitsch_3bd10/vaultwarden-plus-a-password-manager-built-for-operators-621</guid>
      <description>&lt;p&gt;If you search dev.to for Vaultwarden, you'll find dozens of excellent guides: how to deploy it with Docker, how to put it behind a reverse proxy, how to back it up, how to do it for $3 a month. They all answer the same question — &lt;em&gt;how do I stand this up?&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;This article answers a different one: &lt;strong&gt;what happens after it's running, for years, for other people?&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;That's the question behind Vaultwarden-Plus.&lt;/p&gt;

&lt;h2&gt;
  
  
  First, the obvious disclaimer
&lt;/h2&gt;

&lt;p&gt;Vaultwarden has been my password manager of choice for years. It's lightweight, fast, reliable, and one of the best examples of what a community-driven open source project can achieve. Thousands of people use it every day to self-host their passwords while staying fully compatible with the official Bitwarden clients.&lt;/p&gt;

&lt;p&gt;So why a fork?&lt;/p&gt;

&lt;p&gt;The honest answer surprised even me: &lt;strong&gt;I wasn't looking for more features. I was looking for a project that prioritizes long-term operation.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Vaultwarden-Plus is &lt;em&gt;not&lt;/em&gt; a replacement for upstream, and it's &lt;em&gt;not&lt;/em&gt; an attempt to compete. Upstream is excellent and keeps moving the whole ecosystem forward. Plus just asks a narrower question:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;What would a Vaultwarden distribution look like if every single decision were made from the perspective of the person who has to operate it?&lt;/p&gt;
&lt;/blockquote&gt;

&lt;h2&gt;
  
  
  From self-hosting to operating
&lt;/h2&gt;

&lt;p&gt;Running a password manager for yourself is one thing. Running it for your family, your friends, or an organization changes the perspective completely.&lt;/p&gt;

&lt;p&gt;Every update matters. Every config change matters. Every security improvement matters. And — most underrated of all — every &lt;em&gt;unexpected behavior&lt;/em&gt; matters, because you're the one who gets the message at 23:00 that "the login is weird."&lt;/p&gt;

&lt;p&gt;Over time I'd accumulated a growing pile of local patches: security hardening, CI changes, operational notes. Eventually it stopped being a personal patch set and started being a project. Vaultwarden-Plus is that project, made public.&lt;/p&gt;

&lt;h2&gt;
  
  
  The rules I actually maintain it by
&lt;/h2&gt;

&lt;h3&gt;
  
  
  1. The official client comes first
&lt;/h3&gt;

&lt;p&gt;One rule is close to absolute:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;If the official Bitwarden clients don't work, the feature is probably wrong.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;Compatibility beats experimental functionality every time. You keep using the apps you already trust — browser extension, desktop, mobile, CLI — with no modified clients and no special workflows. A "cool feature" that only works in a patched client isn't a feature for an operator; it's a future support ticket.&lt;/p&gt;

&lt;h3&gt;
  
  
  2. Validation before implementation
&lt;/h3&gt;

&lt;p&gt;Implementing everything is easy. &lt;em&gt;Maintaining&lt;/em&gt; everything is not. So every proposed change runs the same gauntlet before a single line is written:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Is there a real operational problem behind it?&lt;/li&gt;
&lt;li&gt;Does an upstream solution already exist?&lt;/li&gt;
&lt;li&gt;Does it improve security?&lt;/li&gt;
&lt;li&gt;How much maintenance cost does it add?&lt;/li&gt;
&lt;li&gt;Can it be reviewed independently?&lt;/li&gt;
&lt;li&gt;Can it be removed later without breaking unrelated things?&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Sometimes the answer is a new feature. Sometimes the best engineering decision is to do nothing — and write down &lt;em&gt;why&lt;/em&gt;.&lt;/p&gt;

&lt;h3&gt;
  
  
  3. Small changes scale better
&lt;/h3&gt;

&lt;p&gt;Big rewrites look impressive in a changelog and are miserable to review and maintain three years later. Plus deliberately prefers focused, well-scoped additions. The features that exist today exist because an operator hit a real wall:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Mail dispatch hardening&lt;/strong&gt; — non-critical account notifications are dispatched &lt;em&gt;outside&lt;/em&gt; latency-sensitive request paths, while critical OTP and security mails stay &lt;strong&gt;fail-closed&lt;/strong&gt;. A slow SMTP server should never block a login; a security mail should never silently get dropped.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;DKIM signing&lt;/strong&gt; for outgoing notification mail — because "your users' password-reset mail lands in spam" is an operational problem, not a UI one.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;AWS SES mail transport&lt;/strong&gt; — SES as a first-class alternative to plain SMTP for people who already run their mail through it.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Send email verification&lt;/strong&gt; — require recipients to verify their address before they can open a Send.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;OpenDAL / S3 enhancements&lt;/strong&gt; — better S3-compatible object storage for attachments and data.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Passkey login&lt;/strong&gt; &lt;em&gt;(experimental)&lt;/em&gt; — passwordless sign-in via passkeys.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;2026.5 client-compatibility updates&lt;/strong&gt; — keeping pace with recent official Bitwarden client releases, so the "official client first" rule stays true in practice.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;None of these turn the UI upside down. All of them make the service a little more &lt;em&gt;predictable&lt;/em&gt; in production — which is exactly the property you care about when other people's passwords live on your box.&lt;/p&gt;

&lt;h3&gt;
  
  
  4. Documentation is part of the product
&lt;/h3&gt;

&lt;p&gt;One lesson from years of running infrastructure: &lt;strong&gt;undocumented decisions eventually become forgotten decisions.&lt;/strong&gt; Plus keeps a small set of canonical documents that evolve with the code — current project state, implemented functionality, upstream assessments, product goals, maintenance strategy. The docs are treated as part of the software, not an afterthought.&lt;/p&gt;

&lt;h3&gt;
  
  
  5. Upstream is a partner, not a competitor
&lt;/h3&gt;

&lt;p&gt;The biggest risk for any long-lived fork is pointless divergence. So every upstream proposal gets continuously categorized into one of four buckets:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Implement · Watch · Defer · Reject&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;The goal is &lt;em&gt;not&lt;/em&gt; to collect the most custom features. It's to stay small, understandable, and maintainable while adopting the improvements that give operators clear value.&lt;/p&gt;

&lt;h2&gt;
  
  
  What this means for you
&lt;/h2&gt;

&lt;p&gt;Vaultwarden-Plus will probably never have the longest feature list. &lt;strong&gt;That's intentional.&lt;/strong&gt; The focus stays on security, operational reliability, maintainability, reproducible releases, and compatibility with the official clients.&lt;/p&gt;

&lt;p&gt;If you already run Vaultwarden, the switch is meant to be undramatic: same clients, same data model, same mental model — just decisions tuned for the person holding the pager. One small but telling example of that mindset: Plus does &lt;strong&gt;not&lt;/strong&gt; recommend Rocket's built-in TLS for production. It expects TLS termination at an external reverse proxy (Traefik, Nginx, HAProxy, …) and the container to speak plain HTTP behind it — fewer moving parts in the crypto path, fewer surprises during an upgrade.&lt;/p&gt;

&lt;h2&gt;
  
  
  Try it
&lt;/h2&gt;

&lt;p&gt;Stable container images are published to the project's own registry, so a Compose file is all you need:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight yaml"&gt;&lt;code&gt;&lt;span class="na"&gt;services&lt;/span&gt;&lt;span class="pi"&gt;:&lt;/span&gt;
  &lt;span class="na"&gt;vaultwarden&lt;/span&gt;&lt;span class="pi"&gt;:&lt;/span&gt;
    &lt;span class="na"&gt;image&lt;/span&gt;&lt;span class="pi"&gt;:&lt;/span&gt; &lt;span class="s"&gt;forgejo.sabolowitsch.org/stefansa/vaultwarden-plus:latest&lt;/span&gt;
    &lt;span class="na"&gt;container_name&lt;/span&gt;&lt;span class="pi"&gt;:&lt;/span&gt; &lt;span class="s"&gt;vaultwarden&lt;/span&gt;
    &lt;span class="na"&gt;restart&lt;/span&gt;&lt;span class="pi"&gt;:&lt;/span&gt; &lt;span class="s"&gt;unless-stopped&lt;/span&gt;
    &lt;span class="na"&gt;environment&lt;/span&gt;&lt;span class="pi"&gt;:&lt;/span&gt;
      &lt;span class="na"&gt;DOMAIN&lt;/span&gt;&lt;span class="pi"&gt;:&lt;/span&gt; &lt;span class="s2"&gt;"&lt;/span&gt;&lt;span class="s"&gt;https://vw.domain.tld"&lt;/span&gt;
    &lt;span class="na"&gt;volumes&lt;/span&gt;&lt;span class="pi"&gt;:&lt;/span&gt;
      &lt;span class="pi"&gt;-&lt;/span&gt; &lt;span class="s"&gt;./vw-data/:/data/&lt;/span&gt;
    &lt;span class="na"&gt;ports&lt;/span&gt;&lt;span class="pi"&gt;:&lt;/span&gt;
      &lt;span class="pi"&gt;-&lt;/span&gt; &lt;span class="s"&gt;127.0.0.1:8000:80&lt;/span&gt;   &lt;span class="c1"&gt;# TLS terminates at your reverse proxy&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;The project lives here:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;👉 &lt;strong&gt;Source, releases, issues &amp;amp; container registry:&lt;/strong&gt; &lt;a href="https://forgejo.sabolowitsch.org/StefanSA/vaultwarden-plus" rel="noopener noreferrer"&gt;forgejo.sabolowitsch.org/StefanSA/vaultwarden-plus&lt;/a&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;blockquote&gt;
&lt;p&gt;One ground rule: report &lt;strong&gt;Plus-specific&lt;/strong&gt; behaviour to the Plus tracker, not to upstream. If a bug reproduces on a stock Vaultwarden install, it belongs upstream. Keeping that boundary clean is part of being a good downstream citizen.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;If you maintain self-hosted services or open source projects of your own, I'd genuinely like to hear how &lt;em&gt;you&lt;/em&gt; approach long-term maintenance — the patches that never made it upstream, the "we decided to do nothing" calls, the docs you wish you'd written sooner. That's the conversation I'm hoping this starts.&lt;/p&gt;

&lt;p&gt;Technical deep-dives on the individual hardening changes will follow. If that philosophy resonates, follow along. 🔐&lt;/p&gt;

</description>
      <category>vaultwarden</category>
      <category>selfhosted</category>
      <category>security</category>
      <category>opensource</category>
    </item>
  </channel>
</rss>
