From 975da364b4a2620d2a0e7ab1bf145c15b1030a50 Mon Sep 17 00:00:00 2001 From: armandsiav Date: Fri, 21 Jul 2017 22:22:09 +0200 Subject: [PATCH] Update isp_orange_fr.md MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Pouvez-vous vérifier la syntaxe, j'ai pas l'habitude? Merci. --- isp_orange_fr.md | 39 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) diff --git a/isp_orange_fr.md b/isp_orange_fr.md index 828eb0ba..3f8724a6 100644 --- a/isp_orange_fr.md +++ b/isp_orange_fr.md @@ -14,9 +14,48 @@ sudo nano /etc/postfix/main.cf ``` puis rajouter à la ligne le relai SMTP d’Orange : + ```bash relayhost = smtp.orange.fr``` redémarrez Postfix : + ```bash 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```