No description
Find a file
2026-01-04 20:08:59 +01:00
rootfs/etc/postfix remove aliases binary 2026-01-04 20:08:59 +01:00
.gitignore initial commit 2016-07-06 11:42:10 +02:00
Containerfile externalise config & push to 3.10.7-r0 2026-01-04 20:02:58 +01:00
Jenkinsfile externalise config & push to 3.10.7-r0 2026-01-04 20:02:58 +01:00
README.md update readme 2026-01-04 20:05:42 +01:00

Postfix with dovecot authentication and rspamd using postgres.

Database

create table if not exists virtual_domains (
	name text primary key
);

create table if not exists virtual_users (
	email text primary key,
	domain_name text not null references virtual_domains(name),
  wildcard_sender bool default false
);

create table if not exists virtual_aliases (
	domain_name text not null references virtual_domains(name),
	source text not null,
	destination text not null
);

Volumes

  • /etc/ssl/mail:ro: certificates have to be here.

Ports

  • 25
  • 587