Today's Deep-Dive: Dovecot
Ep. 379

Today's Deep-Dive: Dovecot

Episode description

What happens when one of the internet’s most critical communication systems is powered by software most people have never heard of? In this episode, we dive into Dovecot, the open-source IMAP server that quietly serves as the backbone of email for some of the world’s largest telecommunications providers, ISPs, and hosting companies.

Dovecot is built for one thing: fast, reliable, secure access to email at massive scale. Written primarily in C for maximum performance, it is optimized to handle huge numbers of simultaneous users while supporting standard mailbox formats like mbox and maildir. But speed alone is not what makes it remarkable. Dovecot uses self-optimizing indexes that adapt to user behavior, making common mailbox operations faster while keeping memory usage lean.

One of the platform’s standout strengths is its self-healing architecture. Instead of crashing when an index is corrupted or a storage glitch occurs, Dovecot can automatically rebuild damaged indexes in the background while keeping the service online. That design dramatically reduces downtime and turns system administrators from late-night emergency responders into proactive infrastructure managers.

We also explore how Dovecot balances strict standards compliance with practical flexibility, acting as a translation layer for buggy email clients while maintaining a clean internal architecture. Its support for SMTP authentication, plugins, Lua scripting, clustered file systems, and large-scale shared storage makes it adaptable for organizations with demanding operational and compliance needs.

At a deeper level, this episode is about the hidden strength of open-source infrastructure: software refined by a global community, trusted by major providers, and powerful enough to replace expensive proprietary systems without sacrificing performance or control.

Gain digital sovereignty now and save costs

Let’s have a look at your digital challenges together. What tools are you currently using? Are your processes optimal? How is the state of backups and security updates?

Digital Souvereignty is easily achived with Open Source software (which usually cost way less, too). Our division Safeserver offers hosting, operation and maintenance for countless Free and Open Source tools.

Try it now!

Download transcript (.srt)
0:00

Picture this scenario for a second.

0:02

You're the IT director for a massive enterprise.

0:06

Always is a stressful job.

0:07

Oh, entirely.

0:08

And an external audit is looming.

0:11

Compliance deadlines are basically

0:12

breathing down your neck.

0:14

And you need to guarantee rock solid email retention

0:18

and data protection.

0:20

Right, the standard enterprise nightmare.

0:22

Exactly.

0:23

Usually organizations in that pressure cooker,

0:25

they just default to writing this massive,

0:28

eye-watering check to vendors like Microsoft or Google.

0:30

It's just, well, it's accepted as the unavoidable cost

0:34

of doing business, right?

0:35

Yeah, you just surrender the budget.

0:36

You surrender the budget.

0:37

And honestly, you often surrender

0:39

a huge degree of control over your own infrastructure.

0:42

But today, we're going to explore why that assumption

0:45

might be entirely wrong.

0:46

Because there's an incredibly powerful open source

0:49

alternative out there.

0:50

And it's one that completely changes the dynamic.

0:53

It really does.

0:54

For businesses facing strict legal and compliance

0:57

requirements, I'm talking about mandatory financial record

1:00

audits, stringent privacy laws, absolute data sovereignty.

1:04

Relying on a proprietary black box system

1:07

isn't just expensive, it's a liability.

1:11

Because data sovereignty means if you

1:13

don't control the servers, you

1:14

don't truly control the data.

1:15

Exactly.

1:16

And that is where Safe Server comes in.

1:18

They help organizations find and implement

1:20

these exact open source solutions

1:22

to replace those wildly expensive proprietary tools.

1:25

Which is huge for compliance.

1:27

Right.

1:27

They guide you from the initial consulting phase

1:30

all the way to secure operation,

1:31

running right on German servers.

1:33

You can find out more about how they do this

1:35

at www.safe-server.ds.

1:39

And that focus on reclaiming control of your infrastructure

1:42

perfectly sets up our mission for today's deep dive.

1:45

We are getting into the real nuts and bolts today.

1:47

We really are.

1:48

We're pulling back the curtain on the invisible plumbing

1:50

of the internet to look at something called DoveCot.

1:53

It is, by all metrics, the world's leading secure IMAP server.

1:56

It really operates as this hidden digital backbone

2:00

for a staggering amount of our daily communication.

2:02

I mean, people interact with it constantly

2:04

without ever knowing its name.

2:06

Yeah, and to make this concrete for you listening

2:08

at home, the term IMP server sounds highly technical.

2:11

But it's essentially just the digital post office.

2:14

It holds your incoming messages

2:16

until your phone or your laptop

2:18

actually asks to read them.

2:20

That's a great way to visualize it.

2:21

OK, let's unpack this.

2:23

If your personal email app on your phone

2:25

is your little mailbox at the end of your driveway,

2:28

DoveCot is the massive, highly secure sorting facility downtown.

2:32

It's the industrial scale facility that handles the mail

2:35

for the world's largest telecommunications companies,

2:38

internet service providers, and hosters.

2:41

Which is a crucial distinction to make,

2:43

because what makes the source material we're looking at today

2:45

so compelling isn't just the basic fact

2:48

that DoveCot moves a message from point A to point B.

2:50

Right, any basic software can do that.

2:52

Exactly.

2:53

The fascination lies in how it manages that process

2:56

with an almost obsessive level of efficiency and self-maintenance.

3:01

When a global telecom uses software,

3:04

it can't just function on a good day.

3:06

It has to be virtually bulletproof

3:07

under the weight of millions of concurrent users.

3:10

Right, which brings us to the engine under the hood.

3:12

Because the natural question is,

3:14

out of all the options out there,

3:15

why do these massive telecoms rely on DoveCot?

3:18

It comes down to performance.

3:20

Yeah, looking at the documentation,

3:22

it's renowned for being among the absolute best performing

3:25

IMAP servers available anywhere.

3:27

But what actually drives that performance?

3:30

The sources point heavily to the architecture,

3:32

noting that 97.2% of the project's GitHub repository

3:37

is written in a programming language called C.

3:39

That is a massive factor.

3:41

Now, for anyone who isn't a software engineer,

3:43

why does the choice of programming language

3:45

matter so much here?

3:46

Well, it matters immensely when you're dealing with scale.

3:49

C is a language known for blazing speed

3:51

because it operates incredibly close to the, well,

3:54

the bare metal of the hardware.

3:55

Bare metal, meaning it talks directly to the computer

3:58

chips without a translator.

4:00

Precisely.

4:01

Modern languages often have heavy runtimes

4:03

or garbage collectors.

4:05

Those are background processes that occasionally

4:07

pause the entire system to clean up computer memory.

4:10

Oh, so they literally stop traffic to sweep the street.

4:12

Oh, exactly.

4:13

C doesn't do that.

4:14

It allows the developers to manage the server's CPU

4:17

and memory directly and ruthlessly.

4:20

That means DoveCot can squeeze every last drop

4:23

of performance out of the physical servers it runs on.

4:26

Wow.

4:27

And the sources also mention it achieves this speed

4:29

while supporting standard formats

4:31

like mbox and maildeer.

4:32

We should probably define those for a second.

4:34

Good idea.

4:35

From my understanding, these are just different ways

4:36

a computer stores emails on a hard drive, right?

4:39

Like mbox stores all your emails

4:41

in one giant continuous text file,

4:43

whereas maildeer stores every single email

4:46

as its own separate little file in a folder.

4:48

That is correct.

4:49

And both formats present unique bottlenecks

4:52

when you're, say, searching for a specific message

4:54

from three years ago.

4:56

Because the computer has to dig through all that text.

4:58

Right, so DoveCot handles this

5:00

by transparently indexing those mailboxes.

5:03

It builds a highly efficient hidden map

5:05

of where everything is located within those files,

5:08

ensuring that no matter which storage format an ISP uses,

5:12

the retrieval of an email is instantaneous.

5:15

But wait, let me push back on this a little bit.

5:17

If it's running so fast,

5:18

written in this hyper-efficient C language,

5:21

and it's building indexes for literally millions of users

5:24

checking their phones every five minutes,

5:27

wouldn't the system eventually

5:28

just buckle under its own weight?

5:30

You would think so, yes.

5:31

I mean, indexes take up memory, right?

5:34

How does it organize all that rapidly accumulating data

5:38

without just grinding to a halt over time?

5:40

What's fascinating here is how DoveCot's architecture

5:42

anticipates that exact bottleneck.

5:45

It uses what the documentation calls self-optimizing indexes.

5:49

Self-optimizing.

5:50

Meaning the software actively monitors

5:52

and changes its own behavior based on the user's habits.

5:55

Exactly, it doesn't just store data blindly,

5:57

and it certainly doesn't index

5:58

every single piece of metadata

5:59

in the exact same way for every user.

6:01

It pays attention to the queries coming in.

6:04

It curates exactly what the user's specific email client

6:07

commonly needs, no more, no less.

6:10

Okay, so if my app always asks for unread messages first.

6:14

Then DoveCot dynamically optimizes the index

6:16

for those specific repeated queries.

6:19

It trims the unnecessary data out of the act of memory.

6:22

That is incredibly smart.

6:23

It's almost like a librarian

6:26

who notices you only ever check out classic sci-fi books.

6:29

Instead of making you walk to the back of the building

6:31

and search the massive master catalog every single time,

6:34

they just start keeping the sci-fi index cards

6:36

right at the front desk for you.

6:37

Yes, and if you suddenly start reading biographies,

6:40

the librarian adjusts and moves the biography cards

6:42

to the front desk instead.

6:44

Oh, wow.

6:45

That level of dynamic real-time optimization

6:47

is what prevents the server's RAM

6:49

from overflowing with useless data.

6:51

It allows these massive server farms

6:53

to run incredibly lean,

6:55

saving telecommunications companies

6:57

an absolute fortune in hardware costs.

6:59

So it's fast, it's lean,

7:00

and it pays attention to how you use it.

7:02

But if a system is moving at a million miles an hour

7:05

and constantly rewriting its own indexes,

7:08

what happens when something inevitably breaks?

7:11

Because things always break.

7:12

Right.

7:13

Hardware fails.

7:14

Power fluctuations happen.

7:15

Here's where it gets really interesting.

7:17

Typical enterprise software.

7:19

When it encounters a corrupted file

7:22

or a half-written database entry,

7:23

usually just panics and crashes.

7:25

The dreaded blue screen of death, essentially.

7:28

Exactly.

7:29

It throws a cryptic error code,

7:30

shuts down the service to protect the remaining data,

7:33

and some poor IT administrator gets woken up at 3 a.m.

7:36

to manually fix it.

7:37

But the documentation highlights

7:39

that DoveCot is genuinely self-healing.

7:42

The self-healing architecture

7:43

is arguably its most critical feature

7:45

for enterprise deployment.

7:46

Let's look at the mechanics of a failure.

7:48

Say a physical storage drive stutters for a microsecond

7:52

while writing an email,

7:53

and an index file gets corrupted.

7:55

A tiny glitch.

7:56

Right.

7:57

A typical IAM server reads that broken file,

8:00

doesn't know what to do with the garbled data,

8:02

and the whole application thread dies.

8:04

DoveCot takes a completely different approach.

8:07

It isolates the corruption.

8:08

Okay.

8:09

It recognizes that the index

8:10

for that specific user is broken,

8:13

but instead of crashing,

8:14

it discards the broken index

8:16

and automatically goes back to the raw source files,

8:19

the inbox, or mailedier we mentioned earlier.

8:22

Wait, really?

8:22

So it just reads the original emails

8:24

and builds a brand new index from scratch,

8:26

completely in the background?

8:28

Yes.

8:28

It's rebuilding the map

8:29

while the user is still trying to access their inbox.

8:32

The user might experience a delay of a few milliseconds,

8:35

but the service doesn't drop.

8:37

They don't get an error message.

8:38

The system heals itself on the fly.

8:40

It's like a mechanic fixing a car engine

8:42

while it's still driving down the highway.

8:44

Yeah.

8:45

That is a massive paradigm shift

8:46

from how most people experience software bugs.

8:49

It really is.

8:50

And while the user is totally oblivious

8:52

that a catastrophic file corruption just occurred,

8:54

the system is logging the issue.

8:56

Right.

8:57

Oh, absolutely.

8:57

It logs the issue with extreme clarity.

9:00

It leaves a detailed human-readable record

9:02

of the exact storage glitch

9:04

so the administrators can investigate

9:06

the root physical cause later

9:08

during normal business hours.

9:09

Not at 3 a.m.

9:10

Exactly.

9:11

The developers of DoveCod have made

9:13

this aggressively admin-friendly design

9:15

a core philosophy.

9:17

Common error messages are required

9:19

to be easily understandable.

9:20

That's refreshing.

9:21

And furthermore, they consider any crash,

9:24

no matter how obscure the circumstances

9:26

or how bizarre the hardware failure,

9:28

to be a critical bug in their code

9:30

that must be fixed.

9:31

So they actually take ownership of the crash

9:33

rather than just blaming the user's faulty hardware

9:35

or a bad hard drive.

9:37

They view a crash

9:38

as a failure of the software's resilience.

9:40

An administrator's time

9:42

is one of the most expensive assets

9:44

in any IT department.

9:46

By self-healing and providing clear,

9:48

actionable logs instead of crashing,

9:50

DoveCod shifts the IT team's role

9:52

from being reactive firefighters

9:53

dealing with outages

9:55

to proactive managers analyzing logs the next morning.

9:57

I can totally see why an ISP would choose this

10:00

over a proprietary black box

10:01

where you can't even see the logs.

10:03

But, you know, a fast self-healing server

10:05

sitting in a data center is entirely useless

10:08

if it can't talk to the rest of the world.

10:09

Very true.

10:11

The internet is this chaotic environment

10:13

filled with thousands of different apps,

10:15

legacy devices, and competing protocols.

10:18

The sources emphasize that DoveCod

10:20

is strictly standards-compliant.

10:22

It apparently passes complex IMED-compliancy tests

10:26

that most other major servers outright fail.

10:28

The IMED protocol, which is the universal language

10:30

that dictates how your phone asks the server

10:32

to show your inbox, has very rigid rules.

10:35

DoveCod adheres to those rules flawlessly.

10:38

But an email ecosystem requires

10:40

multiple protocols working together.

10:42

While IMAP handles reading the mail,

10:44

another protocol called SMTP handles sending the mail.

10:47

DoveCod integrates seamlessly for SMTP authentication

10:50

with the major mail transfer agents,

10:52

the software that actually routes messages

10:54

across the internet like Postfix, Exim, and OpenSMTPD.

10:57

Right, the documentation notes

10:59

that Postfix version 2.3 and up

11:01

and Exim version 4.64 and up

11:03

can authenticate directly against DoveCod.

11:05

Which is incredibly efficient.

11:06

Meaning, when you type in your password

11:08

to send an email, the sending software

11:11

just asks DoveCod, hey, is this password correct?

11:15

Without needing a secondary,

11:16

complicated database of passwords.

11:18

Which eliminates a massive point of friction

11:21

and a potential security vulnerability

11:23

for system administrators trying to build

11:24

a unified pipeline.

11:26

But reading through the sources,

11:28

I stumbled on something that feels like, honestly,

11:30

a glaring contradiction.

11:32

Oh.

11:32

Yeah.

11:33

The documentation proudly touts

11:35

this strict, perfect compliance with IMAP standards.

11:39

But then in the very next section,

11:41

it lists all these built-in quirks.

11:43

It says DoveCod includes specific workarounds

11:45

for bugs in various IMAP and POP3 clients.

11:49

POP3 being an older way of downloading email.

11:51

Right, the legacy stuff.

11:52

So wait, it's a street A student

11:54

that passes all the standardized tests perfectly.

11:56

But it also actively breaks the rules

11:58

to accommodate buggy email apps out in the wild.

12:01

How do you reconcile being strictly standard

12:04

while simultaneously running workarounds

12:06

for bad software?

12:07

You're hitting on the fundamental genius of its design.

12:10

It isn't a contradiction at all.

12:11

It's a boundary layer.

12:13

A boundary layer.

12:14

Think of DoveCod's internal core engine

12:16

as a pristine, perfectly standard environment.

12:20

Its internal logic is flawless.

12:22

But it recognizes that the outside world is messy.

12:25

Very messy.

12:26

Email clients, the apps developed

12:28

by dozens of different companies

12:29

for phones, tablets, and desktops often have bugs.

12:33

They send requests in slightly the wrong format

12:36

or they misinterpret a standard command.

12:38

Okay, so if DoveCod was totally rigid,

12:40

it would look at that slightly malformed request

12:42

from a user's phone and just say,

12:44

syntax error, request denied.

12:46

Yes.

12:47

And the user would assume

12:48

their email provider is broken,

12:49

even though it's actually their phone app's fault.

12:51

Precisely the issue.

12:52

So instead, DoveCod provides a flexible translation layer.

12:57

It intercepts the buggy requests from the outside world,

13:00

recognizes the specific flaw based on those known quirks,

13:03

quietly translates it into a perfect standard request

13:06

for its internal engine,

13:07

and serves the mail anyway.

13:09

That's brilliant.

13:10

The pristine core is protected,

13:12

but the user gets their email.

13:14

If we connect this to the bigger picture,

13:16

what makes this truly admin-friendly

13:19

is that these workarounds can sometimes

13:21

make the protocol exchange slightly slower or suboptimal.

13:24

Oh, so you don't want them all on all the time.

13:26

Exactly.

13:27

Administrators aren't forced to use them all.

13:29

They can toggle on only the specific fixes they need

13:32

for the specific devices their user base actually uses.

13:35

It's like having a high-end,

13:37

perfectly organized Michelin star kitchen,

13:40

but building a special drive-through window

13:42

on the side of the building

13:43

for customers who don't know

13:44

how to pronounce the menu items.

13:46

That's a perfect analogy.

13:47

The chef in the back gets the order

13:48

perfectly formatted every time,

13:50

and you keep the chaos outside the kitchen.

13:52

And that boundary between internal standards

13:55

and external flexibility

13:56

is why migrating millions of users to DoveCot

13:59

is often seamless.

14:01

When a massive company transitions

14:02

from an old clunky legacy server over to DoveCot,

14:06

the end users don't have to update their apps

14:08

or change their settings.

14:10

Because the server just dynamically adapts

14:12

to whatever eccentricities

14:13

their old email clients possess,

14:16

which naturally leads us to the foundation

14:18

that makes all of this translation and processing possible.

14:21

We've talked about the speed,

14:22

the self-healing, the flexibility.

14:24

But if this software is actively translating

14:27

buggy, unpredictable requests from the outside world,

14:31

doesn't that make it incredibly vulnerable to hackers?

14:34

It's a valid concern.

14:35

How do we know it is secure enough

14:37

to handle the world's most sensitive data?

14:40

I mean, an enterprise email server

14:42

holds the keys to the kingdom.

14:43

Password resets, financial statements,

14:45

confidential legal correspondence.

14:47

Security is the paramount concern here,

14:50

and the project's approach is incredibly rigorous.

14:52

DoveCot was designed with a security-first mindset,

14:55

and they actively utilize a YesWeHack program.

14:58

YesWeHack, that's a global bug bounty platform, right?

15:01

It is.

15:02

They are actively inviting the global cybersecurity community,

15:05

thousands of independent security researchers and ethical hackers,

15:08

to try and break into the software.

15:10

Just open season on their own code.

15:12

Yeah, and they reward them financially for reporting those flaws

15:15

so the developers can patch them immediately.

15:18

It is a proactive adversarial defense model,

15:21

rather than just hoping nobody finds a vulnerability.

15:24

And the architecture itself isn't just a rigid lockdown

15:26

vault that you can't touch.

15:28

The source material notes that it is highly extensible.

15:31

Administrators can use plugins to add quotas,

15:33

like limiting how much gigabyte space

15:35

a specific department gets, or access control lists

15:39

to lock down specific folders.

15:41

It's very customizable.

15:42

Yeah, they can even use Lua scripts

15:44

to extend the server's functionality directly.

15:46

The Lua scripting capability is a massive advantage.

15:49

Lua is a very lightweight, fast programming language.

15:53

By embedding it into DoveCot,

15:54

administrators can write custom complex rules and behaviors

15:58

without having to modify or recompile

16:00

the core C code of the server.

16:02

So you don't break the main engine.

16:03

Right.

16:04

They can tailor the server

16:05

to highly specific organizational workflows

16:08

without compromising the integrity or the speed of the main system.

16:12

Now, diving deeper into the technical architecture,

16:15

the source's highlight of feature

16:16

regarding clustered file systems.

16:19

It specifically says DoveCot allows mailboxes

16:22

to be modified by multiple computers at the same time.

16:25

And it works around known caching issues

16:27

in network file systems, commonly called NFS.

16:31

This is a really technical but crucial point.

16:33

Yeah, I want to spend a minute here

16:34

because this seems crucial for the scale we're talking about.

16:36

Why is two computers modifying a mailbox

16:39

at the same time a problem?

16:41

Well, when an enterprise scales up to millions of users,

16:44

a single physical hard drive or server cannot hold all the data.

16:48

You have clusters of application servers

16:51

all pulling from a massive shared pool of network storage.

16:55

OK.

16:55

The fundamental physics problem of networking is the race condition.

16:59

Imagine server A and server B both receive a command

17:02

at the exact same millisecond to mark a specific email as read.

17:06

They both reach into the shared storage.

17:08

And if they both try to rewrite that tiny piece of data

17:11

at the exact same moment, the data gets scrambled.

17:13

You get corruption.

17:14

Exactly.

17:15

To prevent that, systems use locks.

17:18

Server A locks the file, makes the change, and unlocks it.

17:22

The problem is that network file systems, NFS,

17:25

are notorious for caching flaws.

17:27

Caching flaws?

17:28

Yeah, they try to speed things up

17:30

by keeping a local memory of what the file looks like.

17:33

Because of this caching, server B might look at its local cache,

17:37

think the file is unlocked, and try to write to it

17:39

while server A is still modifying the actual file.

17:41

Oh, that sounds like a disaster.

17:43

It creates a split-brain scenario.

17:45

DoveCot recognized that relying on NFS's built-in locking mechanisms

17:49

was a recipe for enterprise data corruption.

17:52

So they engineered their own masterful specialized locking protocols

17:56

that coordinate these modifications across multiple machines simultaneously.

17:59

Completely bypassing the flaws in the underlying NFS.

18:02

Precisely.

18:03

So what does this all mean?

18:04

When you step back and look at the project as a whole,

18:07

the sheer scale of the open source community behind this engineering is staggering.

18:11

We're looking at a GitHub repository with over 36,165 commits,

18:16

meaning individual updates or improvements to the code.

18:18

That is a lot of refinement.

18:20

Yeah, there are 111 active contributors pushing this forward.

18:24

They're releasing frequent major updates,

18:27

like the recent version 2.4.2 release in October 2025.

18:32

And it's all out there under open licenses like MIT and LGPL 2.1.

18:36

Which is huge for businesses.

18:38

Exactly.

18:38

For an enterprise, those licenses mean you can use this software commercially,

18:42

integrate it into your business, and modify it without paying massive royalties,

18:47

provided you play by the rules of the open source community.

18:50

You have over 100 independent developers constantly stress testing,

18:53

tweaking, and auditing this code base.

18:55

And that commit history and those 111 developers

18:58

are exactly why this is a viable alternative to Microsoft or Google.

19:02

Right.

19:03

Because it is extensible.

19:04

Because you can inject your own plugins and Louis scripts,

19:07

organizations aren't locked into a rigid framework

19:10

dictated by a single vendor's profit margins.

19:12

They have control.

19:13

They aren't held hostage by a proprietary roadmap

19:16

where features they rely on might just get deprecated next year.

19:19

They can adapt the server as their security, compliance,

19:22

and scaling needs evolve over the next decade.

19:24

It's an incredible ecosystem.

19:27

So to summarize our deep dive today for you listening,

19:30

DoveCut isn't just a piece of software that moves emails around.

19:34

It's a lightning fast self-optimizing engine

19:37

written in bare metal code.

19:38

It's a self-healing administrator's dream

19:41

that prevents 3 AM outages.

19:43

It acts as a brilliant translation layer,

19:46

bridging the gap between perfect internal standards

19:48

and the messy reality of buggy internet apps.

19:51

And it achieves massive clustered scale

19:54

while being maintained by a vibrant, relentless open source community.

19:58

It is a truly remarkable piece of engineering.

20:01

And this raises an important question to leave you with.

20:04

I love to hear it.

20:05

When you consider that a completely open source tool

20:07

refined by 111 independent contributors

20:10

is robust enough to bypass fundamental networking flaws

20:13

and act as the primary mail carrier

20:15

for the world's largest telecommunications companies,

20:18

what other critical infrastructure in your daily life

20:21

is quietly being held together by the collaborative power

20:24

of open source communities rather than billion dollar tech

20:27

monopolies?

20:27

Oh, that is a fascinating thought to ponder.

20:31

And it brings us right back full circle

20:33

to why we started this conversation in the first place.

20:36

When businesses, associations, or large organizations

20:39

realize the sheer power and resilience

20:42

of what we just talked about, the immediate next step

20:45

is action.

20:46

You have to rethink your infrastructure.

20:48

Exactly.

20:49

What do you actually gain by switching away

20:51

from those expensive proprietary services

20:53

to an open source solution like DovCod?

20:55

You gain immense, immediate cost savings.

20:58

You gain unmatched technical flexibility

21:00

to build the exact system you need.

21:02

And data sovereignty.

21:03

And most importantly, complete, uncompromising data sovereignty.

21:07

You control the hardware.

21:09

You control the data.

21:10

And the best part is you don't have

21:11

to figure out how to implement it alone.

21:13

Safe server can be commissioned for consulting

21:16

whether the right fit for your specific compliance needs

21:18

is DovCod or a comparable open source alternative.

21:21

They'll get it sorted.

21:22

They will get your infrastructure running securely

21:24

and efficiently on trusted servers.

21:25

So visit www.safeserver.de

21:29

to take control of your data today.