SMTP/IMAP server: mail.archlinux.org
SMTP port: 465 (TLS)
IMAP port: 993 (TLS)
username: the system account name
password: set by each user themselves with passwd
on mail.archlinux.org
Login to mail.archlinux.org and edit /etc/postfix/users
, add the new email address in the
appropriate category and run postmap /etc/postfix/users
.
If the user wants to forward email, either enter the destination directly in
the /etc/postfix/users file or enter a username and then put the destination
into ~username/.forward
so that they can edit it themselves.
If the user is a new onboarded user the password has to be made empty, so the user can login and set a password:
passwd -d $username
All hosts should be relaying outbound SMTP traffic via our primary MX server (currently 'mail.archlinux.org'). Each hosts authenticates using SASL over a TLS connection to the server. This gives us several benefits:
- DKIM signing can be done centrally.
- SPF records require less maintenance as servers are added/removed.
- Our email reputation is focused on one well-maintained and (hopefully) well maintained host, rather than distributed across all hosts in our fleet.
- Central traceability for debugging.
- Central maintainability for rate-limiting to prevent abuse.
When a new host is provisioned:
- The postfix_null role has a task delegated to 'mail.archlinux.org' to create a local user on 'mail.archlinux.org' that is used for the new server to authenticate against. The user name is the shortname of the new servers hostname (ie, "foobar.archlinux.org" will authenticate with the username "foobar")
- You will need to run the postfwd role against mail.archlinux.org to update the
rate-limiting it performs (servers are given higher rate-limits than normal
users - see
/etc/postfwd/postfwd.cf
for exact limits). This should happen automatically as the postfwd role is a dependency of the postfix_null role (usingdelegate_to
to run it against 'mail.archlinux.org' regardless of the target host that the postfix role is being run on)
The rspamd role expects the key to exist in the vault. To generate new keys, run
rspamadm dkim_keygen -s dkim-ed25519 -b 0 -d archlinux.org -t ed25519 -k archlinux.org.dkim-ed25519.key
rspamadm dkim_keygen -s dkim-rsa -b 4096 -d archlinux.org -t rsa -k archlinux.org.dkim-rsa.key
the ouput gives you the DNS entries to add to the terraform files. The keys generated need to go to the vault:
roles/rspamd/files/archlinux.org.dkim-rsa.key.vault
roles/rspamd/files/archlinux.org.dkim-ed25519.key.vault
GitLab has a Service Desk feature which creates issues for incoming emails and allows multiple people to reply via GitLab on those issues and assign issues. GitLab generates a default email address with the following logic:
gitlab+<group>-<project>-<project-id>[email protected]
As we prefer to use user friendly addresses such as [email protected]
for communication a postfix alias is configured in /etc/postix/aliases
.
For a new GitLab Service Desk project, add a new alias to /etc/postfix/aliases
as:
foobar: gitlab+<group>-<project>-<project-id>[email protected]
Then run postalias
:
postalias /etc/postfix/aliases