| TABLE_POSTGRESQL(5) | File Formats Manual | TABLE_POSTGRESQL(5) |
table_postgresql —
format description for smtpd PostgreSQL tables
This manual page documents the file format of PostgreSQL tables used by the smtpd(8) mail daemon.
The format described here applies to tables as defined in smtpd.conf(5).
A postgresql table allows the storing of usernames, passwords, aliases, and domains in a format that is shareable across various machines that support postgres(1).
The table is used by smtpd(8) when authenticating a user, when user information such as user-id and/or home directory is required for a delivery, when a domain lookup may be required, and/or when looking for an alias.
A PostgreSQL table consists of one or more postgresql(1) databases with one or more tables.
If the table is used for authentication, the password should be encrypted using the crypt(3) function. Such passwords can be generated using the encrypt(1) utility or smtpctl(8) encrypt command.
The following configuration options are available:
conninfo
host='host'
user='user'
password='password'
dbname='dbname'conninfo host='db.example.com' user='maildba' password='...' dbname='opensmtpdb'
query_alias
SQL statementquery_credentials
SQL statementquery_domain
SQL statementquery_mailaddrmap
SQL statementA generic SQL statement would be something like:
query_ SELECT value FROM table WHERE key=$1;
Example based on the OpenSMTPD FAQ: Building a Mail Server The filtering part is excluded in this example.
The configuration below is for a medium-size mail server which handles multiple domains with multiple virtual users and is based on several assumptions. One is that a single system user named vmail is used for all virtual users. This user needs to be created:
# useradd -g =uid -c "Virtual Mail" -d /var/vmail -s /sbin/nologin vmail # mkdir /var/vmail # chown vmail:vmail /var/vmail
PostgreSQL schema:
CREATE TABLE domains ( id SERIAL, domain VARCHAR(255) NOT NULL DEFAULT '' ); CREATE TABLE virtuals ( id SERIAL, email VARCHAR(255) NOT NULL DEFAULT '', destination VARCHAR(255) NOT NULL DEFAULT '' ); CREATE TABLE credentials ( id SERIAL, email VARCHAR(255) NOT NULL DEFAULT '', password VARCHAR(255) NOT NULL DEFAULT '' );
That can be populated as follows:
INSERT INTO domains VALUES (1, "example.com"); INSERT INTO domains VALUES (2, "example.net"); INSERT INTO domains VALUES (3, "example.org"); INSERT INTO virtuals VALUES (1, "abuse@example.com", "bob@example.com"); INSERT INTO virtuals VALUES (2, "postmaster@example.com", "bob@example.com"); INSERT INTO virtuals VALUES (3, "webmaster@example.com", "bob@example.com"); INSERT INTO virtuals VALUES (4, "bob@example.com", "vmail"); INSERT INTO virtuals VALUES (5, "abuse@example.net", "alice@example.net"); INSERT INTO virtuals VALUES (6, "postmaster@example.net", "alice@example.net"); INSERT INTO virtuals VALUES (7, "webmaster@example.net", "alice@example.net"); INSERT INTO virtuals VALUES (8, "alice@example.net", "vmail"); INSERT INTO credentials VALUES (1, "bob@example.com", "$2b$08$ANGFKBL.BnDLL0bUl7I6aumTCLRJSQluSQLuueWRG.xceworWrUIu"); INSERT INTO credentials VALUES (2, "alice@example.net", "$2b$08$AkHdB37kaj2NEoTcISHSYOCEBA5vyW1RcD8H1HG.XX0P/G1KIYwii");
/etc/mail/postgresql.conf
conninfo host='db.example.com' user='maildba' password='OpenSMTPDRules!' dbname='opensmtpdb' query_alias SELECT destination FROM virtuals WHERE email=$1; query_credentials SELECT email, password FROM credentials WHERE email=$1; query_domain SELECT domain FROM domains WHERE domain=$1;
/etc/mail/smtpd.conf
table domains postgres:/etc/mail/postgres.conf table virtuals postgres:/etc/mail/postgres.conf table credentials postgres:/etc/mail/postgres.conf listen on egress port 25 tls pki mail.example.com listen on egress port 587 tls-require pki mail.example.com auth <credentials> accept from any for domain <domains> virtual <virtuals> deliver to mbox
/etc/mail/postgres.conf
conninfo host='db.example.com' user='postfix' password='...' dbname='postfix' query_alias SELECT destination FROM alias WHERE email=$1; query_credentials SELECT username, password FROM mailbox WHERE username=$1; query_domain SELECT domain FROM domain WHERE domain=$1;
The rest of the config remains the same.
Documenting the following query options:
query_netaddrquery_userinfoquery_sourcequery_mailaddrquery_addrname
The first version of table_postgresql was
written in 2016. It was converted to the stdio table protocol in 2024.
table_postgresql was initially written by
Gilles Chehade
<gilles@poolp.org>.
The conversion to the stdio table protocol was done by Omar
Polo
<op@openbsd.org>.
| April 21, 2024 | Debian |