A milter is a script that is ran by a Mail Transfer Agent (MTA) upon receiving an email via either a network or an unix socket.
If you want more information feel free to check out the corresponding page on wikipedia: https://en.wikipedia.org/wiki/Milter.
python-pymilter
Note
We ship a systemd unit file for pagure_milter but we welcome patches for scripts for other init systems.
Note
It also requires a MTA, we used postfix.
This can be done in /etc/aliases, for example:
reply: /dev/null
In postfix this is done via:
recipient_delimiter = +
In postfix this is done via:
non_smtpd_milters = unix:/var/run/pagure/paguresock
smtpd_milters = unix:/var/run/pagure/paguresock
Source | Destination |
---|---|
milters/comment_email_milter.py | /usr/share//pagure/comment_email_milter.py |
milters/milter_tempfile.conf | /usr/lib/tmpfiles.d/pagure-milter.conf |
milters/pagure_milter.service | /etc/systemd/system/pagure_milter.service |
The first file is the script of the milter itself.
The second file is a file specific for systemd and ensuring the temporary folders needed by the milter are re-created if needed at each boot.
The third file is the systemd service file.
systemctl enable pagure_milter
systemctl start pagure_milter