Dovecot » Historique » Version 10
Patrice Nadeau, 2015-06-21 18:43
1 | 5 | Patrice Nadeau | h1. Dovecot |
---|---|---|---|
2 | 1 | Patrice Nadeau | |
3 | 3 | Patrice Nadeau | > Issue : #17 |
4 | 1 | Patrice Nadeau | |
5 | Serveur de courriel POP/IMAP. |
||
6 | |||
7 | http://www.dovecot.org/ |
||
8 | |||
9 | 5 | Patrice Nadeau | ---- |
10 | |||
11 | {{toc}} |
||
12 | |||
13 | 1 | Patrice Nadeau | Les fichiers de configuration sont : |
14 | 2 | Patrice Nadeau | * _/etc/dovecot/dovecot.conf_ |
15 | |||
16 | 5 | Patrice Nadeau | h2. Installation |
17 | 3 | Patrice Nadeau | |
18 | 2 | Patrice Nadeau | <pre><code class="bash"> |
19 | zypper install dovecot |
||
20 | 6 | Patrice Nadeau | systemctl enable dovecot.service |
21 | systemctl start dovecot.service |
||
22 | 7 | Patrice Nadeau | yast firewall services add service=service:dovecot zone=EXT |
23 | 3 | Patrice Nadeau | </code></pre> |
24 | |||
25 | Pour utiliser un mot de passe non encrypté, ajouter/modifier dans _/etc/dovecot/conf.d/10-auth.conf_ : |
||
26 | <pre><code class="bash"> |
||
27 | disable_plaintext_auth = no |
||
28 | </code></pre> |
||
29 | |||
30 | 8 | Patrice Nadeau | h3. Configuration |
31 | |||
32 | > Problème vécu sur une nouvelle installation openSUSE 13.2 |
||
33 | |||
34 | 10 | Patrice Nadeau | Postfix inscrit les message de l'utilisateur dans _/var/mail/username_ (_username_ étant le nom de l'utilisateur) |
35 | 8 | Patrice Nadeau | |
36 | Pour indiquer le même repertoire à Dovecot, modifier le fichier _/etc/dovecot/conf.d/10-mail.conf_ |
||
37 | <pre><code class="bash"> |
||
38 | mail_location = mbox:~/mail:INBOX=/var/mail/%u |
||
39 | </code></pre> |
||
40 | |||
41 | 5 | Patrice Nadeau | h2. Sécurité |
42 | 3 | Patrice Nadeau | |
43 | Pour utiliser l’encryption |
||
44 | Dans le répertoire _/usr/share/doc/packages/dovecot_ |
||
45 | # Modifier le fichier _dovecot-openssl.cnf_ |
||
46 | # Exécuter le script _mkcert.sh_ |
||
47 | |||
48 | Modifier le fichier _/etc/dovecot/conf.d/10-ssl.conf_ |
||
49 | <pre><code class="bash"> |
||
50 | ssl=yes |
||
51 | ssl_cert = </etc/ssl/certs/dovecot.pem |
||
52 | ssl_key = </etc/ssl/private/dovecot.pem |
||
53 | </code></pre> |
||
54 | |||
55 | Pour activer l’authentification PAM (utilisateurs locaux), ajouter dans _/etc/pam.d/dovevcot_ : |
||
56 | <pre><code class="bash"> |
||
57 | auth required pam_unix.so nullok |
||
58 | account required pam_unix.so |
||
59 | 1 | Patrice Nadeau | </code></pre> |
60 | 4 | Patrice Nadeau | |
61 | 5 | Patrice Nadeau | h2. Test |
62 | 4 | Patrice Nadeau | |
63 | Ces tests se font à la ligne de commandes d’une machine Windows ou GNU/Linux. |
||
64 | * SMTP :telnet serveur 25 |
||
65 | * Pop : telnet serveur 110 |
||
66 | * IMAP : telnet serveur 143 |
||
67 | |||
68 | Pour créer une boite de courriel, on doit créer un compte utilisateur à ce nom sur le serveur (PAM). |
||
69 | À partir du serveur : |
||
70 | <pre><code class="bash"> |
||
71 | useradd usager |
||
72 | passwd usager |
||
73 | </code></pre> |
||
74 | |||
75 | 5 | Patrice Nadeau | h2. Dépannage |
76 | 4 | Patrice Nadeau | |
77 | Les fichiers suivant sont utilisés : |
||
78 | * _/var/log/mail_ |
||
79 | * _/var/log/mail.info_ |
||
80 | * _/var/log/mail.warn_ |
||
81 | * _/var/log/mail.err_ |
||
82 | |||
83 | Vérifier le nombre de messages dans les « queues » avec _mailq_. |