mirror of
https://github.com/YunoHost/doc.git
synced 2024-09-03 20:06:26 +02:00
Update isp_orange_fr.md
Pouvez-vous vérifier la syntaxe, j'ai pas l'habitude? Merci.
This commit is contained in:
parent
7f0d41e93c
commit
975da364b4
1 changed files with 39 additions and 0 deletions
|
@ -14,9 +14,48 @@ sudo nano /etc/postfix/main.cf
|
||||||
```
|
```
|
||||||
|
|
||||||
puis rajouter à la ligne le relai SMTP d’Orange :
|
puis rajouter à la ligne le relai SMTP d’Orange :
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
relayhost = smtp.orange.fr```
|
relayhost = smtp.orange.fr```
|
||||||
|
|
||||||
redémarrez Postfix :
|
redémarrez Postfix :
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
sudo service postfix restart```
|
sudo service postfix restart```
|
||||||
|
|
||||||
|
#####Problèmes
|
||||||
|
|
||||||
|
Si vous avez une erreur "Authentification requise", la solution est la suivante : **[source](http://viruslocker.free.fr/?page_id=1749)**.*
|
||||||
|
|
||||||
|
Éditer le fichier de configuration de postfix
|
||||||
|
|
||||||
|
```bash
|
||||||
|
sudo nano /etc/postfix/main.cf
|
||||||
|
```
|
||||||
|
puis rajouter à la ligne :
|
||||||
|
|
||||||
|
```bash
|
||||||
|
smtp_sasl_password_maps = hash:/etc/postfix/mdp_fai.conf
|
||||||
|
smtp_sasl_auth_enable = yes
|
||||||
|
smtp_sasl_security_options = noanonymous
|
||||||
|
relayhost = [smtp.orange.fr]:25```
|
||||||
|
|
||||||
|
créer fichier mdp_fai.conf
|
||||||
|
|
||||||
|
```bash
|
||||||
|
sudo nano /etc/postfix/sasl/mdp_fai.conf
|
||||||
|
```
|
||||||
|
|
||||||
|
ajouter
|
||||||
|
|
||||||
|
```bash
|
||||||
|
# mdp_fai.conf
|
||||||
|
[smtp.orange.fr]:25 user:mdp
|
||||||
|
```
|
||||||
|
avec votre mdp de compte d'orange.
|
||||||
|
|
||||||
|
Intégrer le mdp à Postfix :
|
||||||
|
|
||||||
|
```bash
|
||||||
|
sudo postmap /etc/postfix/sasl/mdp_fai.conf
|
||||||
|
sudo postconf -e smtp_sasl_password_maps=hash:/etc/postfix/sasl/mdp_fai.conf```
|
||||||
|
|
Loading…
Reference in a new issue