Need to migrate your e-mails to a new server? Free and paid versions of our online tool available.
Hero Image

Server Setup Guides

Configure OpenSMTPD on Arch Linux

Configure OpenSMTPD on Arch Linux

Install

# OpenBSD – built-in:
rcctl enable smtpd && rcctl start smtpd

# Other platforms:
# Ubuntu/Debian:
apt install opensmtpd
# AlmaLinux/RHEL:
dnf install opensmtpd
# Arch:
pacman -S opensmtpd

Basic /etc/mail/smtpd.conf

pki mail.example.com cert "/etc/s...
7th May 2026

Configure OpenSMTPD on Debian 12

Configure OpenSMTPD on Debian 12

Install

# OpenBSD – built-in:
rcctl enable smtpd && rcctl start smtpd

# Other platforms:
# Ubuntu/Debian:
apt install opensmtpd
# AlmaLinux/RHEL:
dnf install opensmtpd
# Arch:
pacman -S opensmtpd

Basic /etc/mail/smtpd.conf

pki mail.example.com cert "/etc/ss...
7th May 2026

Configure OpenSMTPD on NetBSD 10

Configure OpenSMTPD on NetBSD 10

Install

# OpenBSD – built-in:
rcctl enable smtpd && rcctl start smtpd

# Other platforms:
# Ubuntu/Debian:
apt install opensmtpd
# AlmaLinux/RHEL:
dnf install opensmtpd
# Arch:
pacman -S opensmtpd

Basic /etc/mail/smtpd.conf

pki mail.example.com cert "/etc/ss...
7th May 2026

Configure OpenSMTPD on RHEL 9

Configure OpenSMTPD on RHEL 9

Install

# OpenBSD – built-in:
rcctl enable smtpd && rcctl start smtpd

# Other platforms:
# Ubuntu/Debian:
apt install opensmtpd
# AlmaLinux/RHEL:
dnf install opensmtpd
# Arch:
pacman -S opensmtpd

Basic /etc/mail/smtpd.conf

pki mail.example.com cert "/etc/ssl/m...
7th May 2026

Dnsmasq setup on centos 7

Configuring the server

Create a file /etc/dnsmasq.d/main.conf containing the following:

# ignore resolv.conf
no-resolv

# use google dns servers for internet lookups
server=8.8.8.8
server=8.8.4.4

# define localdomain, answers for this domain will come from /etc/hosts or static hosts files
local...
20th Jan 2019