Project

General

Profile

ContactAddress » History » Version 12

Denis 'GNUtoo' Carikli, 04/20/2020 03:47 PM
Add infos about dovecot

1 1 Denis 'GNUtoo' Carikli
h1. ContactAddress
2
3
h2. Design
4
5 8 Denis 'GNUtoo' Carikli
This system was designed to be as simple as possible:
6 1 Denis 'GNUtoo' Carikli
It was designed in a way that enables it to receive mail but it does not to need to send any mail:
7 9 Denis 'GNUtoo' Carikli
* There is no need of reverse DNS for the IP address.
8
* We don't need to use DKIM. 
9
* It's easier to get the setup right and secure. We don't even need any authentication to receive the mail.
10
* We don't need to make sure that the system cannot be abused to send arbitrary mail to arbitrary address by anyone as it's not supposed to send any mail in the first place.
11 1 Denis 'GNUtoo' Carikli
12 9 Denis 'GNUtoo' Carikli
If we want to send mail we would need to implement all that:
13
* We would need to see with the FSF if they could handle us the control of the reverse DNS for the IP address we use.
14
* For DKIM, we would need to look if Trisquel 8 has DKIM implementations (like dkimproxy) that are easy to integrate with OpenSMTPD.
15
* We would need to make sure that the server configuration cannot be abused to send mails to arbitrary address by anyone else it would ended up being blacklisted by companies and project trying to fight SPAM.
16 1 Denis 'GNUtoo' Carikli
17 7 Denis 'GNUtoo' Carikli
We could also whitelist the servers used by the people receiving this mail through this system, through SPF, if we want people to send mail to the same address they received it from (which is probably not very important).
18
19
The DNS zones are configured to set the MX to the Replicant vm at the FSF.
20 9 Denis 'GNUtoo' Carikli
For more details on how the DNS is hosted, see [[DNS]].
21
22
For now this uses OpenSMTPD just because the person implementing that system initially (GNUtoo) already used OpenSMTPD at home, so it was faster as the configurations could be partially reused and the setup compared.
23
24
For consulting the mail we will use dovecot as the person willing to implement it (GNUtoo) already uses that at home too.
25
26
This will still need some authentication but as it's a separate part it also limit the risk of missconfiguration as for the ability to abuse the system to send mails.
27 6 Denis 'GNUtoo' Carikli
28
h2. Maintenance
29
30 12 Denis 'GNUtoo' Carikli
h3. Adding new people
31 1 Denis 'GNUtoo' Carikli
32 12 Denis 'GNUtoo' Carikli
First start by making sure that you have all the required information:
33
* Make sure that the person knows that she will be publicly listed as a person that receives that contact email address
34
* Ask the person for which *lowercase* username they wish to use
35
* Ask the person to run the following command: *@doveadm pw -u <username> -s SHA512-CRYPT@*
36
37
To enable the person to receive mail you will need to:
38
* Add the person to the list of people receiving the address at the "Infrastructure":https://redmine.replicant.us/projects/replicant/wiki/Infrastructure wiki page in the main Replicant wiki.
39
* Create an account inside the vm for the new person. This can be done with the following command:
40
<pre>
41
useradd -m <lowercase_username>
42
</pre>
43 1 Denis 'GNUtoo' Carikli
* Add the lower_case_username to /etc/smtpd/aliases
44 2 Denis 'GNUtoo' Carikli
* run @smtpctl update table aliases@
45 4 Denis 'GNUtoo' Carikli
46 12 Denis 'GNUtoo' Carikli
Then to enable the person to retrieve the mail that are being received, you need to edit the /etc/dovecot/conf.d/secrets/server.passwd file and add a line that uses this format:
47
<pre>
48
<user>:<password_hash>:<uid>:<gid>::<home>::userdb_mail=maildir:<Maildir_path>
49
</pre>
50 5 Denis 'GNUtoo' Carikli
51
Notes:
52
* The Maildir directory is created automatically when receiving the first mail
53
* There is no need to setup a password for the account
54 1 Denis 'GNUtoo' Carikli
* I didn't look how much we can lock down the accounts and still make openstmtpd work.
55 6 Denis 'GNUtoo' Carikli
56
h3. Switching to more recent OpenSMTPD
57
58
The configuration format changed in newer OpenSMTPD.
59
60
We will probably have to migrate the configuration when switching to to Trisquel 9.
61
62
TODO: Document the format change.