Forum |  HardWare.fr | News | Articles | PC | S'identifier | S'inscrire | Shop Recherche
2548 connectés 

  FORUM HardWare.fr
  Réseaux grand public / SoHo
  Hébergement

  [Postfix]Pas d'envoi

 


 Mot :   Pseudo :  
 
Bas de page
Auteur Sujet :

[Postfix]Pas d'envoi

n°528348
kassecou
Posté le 14-06-2011 à 10:23:39  profilanswer
 

Voilà ! J'ai essayer de créer un serveur SMTP et IMAP avec le tuto sur le wiki https://wiki.archlinux.org/index.php/Postfix_Tutorial et j'ai aussi coniguré un DNS chez Dyndns en choisissant un MX Hostname mais maintenant voilà où j'en suis :
- Mon client arrive a se connecter a mon serveur IMAP mais ne recoit que les messages locaux (avec la commande "mail utilisateur@MXHostname" )
- ne trouve pas le serveur SMTP "Host unreachable"  et un telnet <ip> 25 me renvoi un "Connection closed by foreign host."
Et voici mon /etc/var/log/mail.log

Code :
  1. Jun 13 23:04:32 localhost postgrey[873]: Process Backgrounded
  2. Jun 13 23:04:32 localhost postgrey[873]: 2011/06/13-23:04:32 postgrey (type Net::Server::Multiplex) starting! pid(873)
  3. Jun 13 23:04:32 localhost postgrey[873]: Using default listen value of 128
  4. Jun 13 23:04:32 localhost postgrey[873]: Binding to TCP port 10030 on host 127.0.0.1
  5. Jun 13 23:04:32 localhost postgrey[873]: Setting gid to "314 314"
  6. Jun 13 23:04:32 localhost postgrey[873]: Setting uid to "314"
  7. Jun 13 23:04:33 localhost dovecot: master: Dovecot v2.0.13 starting up (core dumps disabled)
  8. Jun 13 23:04:35 localhost postfix/postfix-script[993]: starting the Postfix mail system
  9. Jun 13 23:04:35 localhost postfix/master[994]: daemon started -- version 2.8.3, configuration /etc/postfix


Voici mon /etc/postfix/main.cf

Code :
  1. # Paths
  2. queue_directory = /var/spool/postfix
  3. command_directory = /usr/sbin
  4. daemon_directory = /usr/lib/postfix
  5. mail_owner = postfix
  6. # Domain settings
  7. myhostname = <DNS>
  8. myorigin = <MX Hostname>
  9. mydestination = $myhostname, localhost.$mydomain, localhost
  10. # Timeout settings and other limits
  11. delay_warning_time = 4h
  12. unknown_local_recipient_reject_code = 450
  13. minimal_backoff_time = 300s
  14. maximal_backoff_time = 1200s
  15. maximal_queue_lifetime = 1d
  16. bounce_queue_lifetime = 1d
  17. smtp_helo_timeout = 60s
  18. smtpd_soft_error_limit = 3
  19. smtpd_hard_error_limit = 12
  20. # SMTP settings
  21. smtpd_tls_cert_file=/etc/ssl/certs/mail.crt
  22. smtpd_tls_key_file=/etc/ssl/private/mail.key
  23. smtpd_use_tls=yes
  24. smtpd_tls_session_cache_database = btree:/var/lib/postfix/smtpd_scache
  25. smtp_tls_session_cache_database = btree:/var/lib/postfix/smtp_scache
  26. smtpd_tls_loglevel = 1
  27. smtpd_sasl_auth_enable = yes
  28. #smtp_sasl_auth_enable = yes
  29. smtpd_recipient_restrictions = permit_sasl_authenticated,
  30.                                permit_mynetworks,
  31.                                reject_unauth_destination,
  32.                                check_policy_service inet:127.0.0.1:10030
  33. smtpd_sender_restrictions = permit_sasl_authenticated, permit_mynetworks
  34. smtpd_sasl_security_options = noanonymous
  35. # SASL
  36. smtpd_sasl_type = dovecot
  37. smtpd_sasl_path = /var/run/dovecot/auth-client
  38. # Network settings
  39. inet_interfaces = all
  40. inet_protocols = ipv4
  41. mynetworks = 192.168.1.1/24, 127.0.0.0/8
  42. relayhost =
  43. # Email and mailbox settings
  44. alias_maps = hash:/etc/postfix/aliases
  45. alias_database = $alias_maps
  46. home_mailbox = Maildir/
  47. virtual_alias_domains = shom.org
  48. virtual_alias_maps = hash:/etc/postfix/virtual
  49. mailbox_size_limit = 0
  50. # Misc
  51. smtpd_banner = $myhostname ESMTP
  52. biff = no
  53. append_dot_mydomain = no
  54. debug_peer_level = 2
  55. sendmail_path = /usr/sbin/sendmail
  56. newaliases_path = /usr/bin/newaliases
  57. mailq_path = /usr/bin/mailq
  58. setgid_group = postdrop
  59. html_directory = no
  60. manpage_directory = /usr/man
  61. sample_directory = /etc/postfix/sample
  62. readme_directory = no
  63. recipient_delimiter = +


Et mon /etc/postfix/master.cf

Code :
  1. # Postfix master process configuration file.  For details on the format
  2. # of the file, see the master(5) manual page (command: "man 5 master" ).
  3. #
  4. # Do not forget to execute "postfix reload" after editing this file.
  5. #
  6. # ==========================================================================
  7. # service type  private unpriv  chroot  wakeup  maxproc command + args
  8. #               (yes)   (yes)   (yes)   (never) (100)
  9. # ==========================================================================
  10. smtp      inet  n       -       n       -       -       smtpd
  11. #smtp      inet  n       -       n       -       1       postscreen
  12. #smtpd     pass  -       -       n       -       -       smtpd
  13. #dnsblog   unix  -       -       n       -       0       dnsblog
  14. #tlsproxy  unix  -       -       n       -       0       tlsproxy
  15. #submission inet n       -       n       -       -       smtpd
  16. #  -o smtpd_tls_security_level=encrypt
  17. #  -o smtpd_sasl_auth_enable=yes
  18. #  -o smtpd_client_restrictions=permit_sasl_authenticated,reject
  19. #  -o milter_macro_daemon_name=ORIGINATING
  20. #smtps     inet  n       -       n       -       -       smtpd
  21. #  -o smtpd_tls_wrappermode=yes
  22. #  -o smtpd_sasl_auth_enable=yes
  23. #  -o smtpd_client_restrictions=permit_sasl_authenticated,reject
  24. #  -o milter_macro_daemon_name=ORIGINATING
  25. #628       inet  n       -       n       -       -       qmqpd
  26. pickup    fifo  n       -       n       60      1       pickup
  27. cleanup   unix  n       -       n       -       0       cleanup
  28. qmgr      fifo  n       -       n       300     1       qmgr
  29. #qmgr     fifo  n       -       n       300     1       oqmgr
  30. tlsmgr    unix  -       -       n       1000?   1       tlsmgr
  31. rewrite   unix  -       -       n       -       -       trivial-rewrite
  32. bounce    unix  -       -       n       -       0       bounce
  33. defer     unix  -       -       n       -       0       bounce
  34. trace     unix  -       -       n       -       0       bounce
  35. verify    unix  -       -       n       -       1       verify
  36. flush     unix  n       -       n       1000?   0       flush
  37. proxymap  unix  -       -       n       -       -       proxymap
  38. proxywrite unix -       -       n       -       1       proxymap
  39. smtp      unix  -       -       n       -       -       smtp
  40. # When relaying mail as backup MX, disable fallback_relay to avoid MX loops
  41. relay     unix  -       -       n       -       -       smtp
  42.         -o smtp_fallback_relay=
  43. #       -o smtp_helo_timeout=5 -o smtp_connect_timeout=5
  44. showq     unix  n       -       n       -       -       showq
  45. error     unix  -       -       n       -       -       error
  46. retry     unix  -       -       n       -       -       error
  47. discard   unix  -       -       n       -       -       discard
  48. local     unix  -       n       n       -       -       local
  49. virtual   unix  -       n       n       -       -       virtual
  50. # Postfix master process configuration file.  For details on the format
  51. # of the file, see the master(5) manual page (command: "man 5 master" ).
  52. #
  53. # Do not forget to execute "postfix reload" after editing this file.
  54. #
  55. # ==========================================================================
  56. # service type  private unpriv  chroot  wakeup  maxproc command + args
  57. #               (yes)   (yes)   (yes)   (never) (100)
  58. # ==========================================================================
  59. smtp      inet  n       -       n       -       -       smtpd
  60. #smtp      inet  n       -       n       -       1       postscreen
  61. #smtpd     pass  -       -       n       -       -       smtpd
  62. #dnsblog   unix  -       -       n       -       0       dnsblog
  63. #tlsproxy  unix  -       -       n       -       0       tlsproxy
  64. #submission inet n       -       n       -       -       smtpd
  65. #  -o smtpd_tls_security_level=encrypt
  66. #  -o smtpd_sasl_auth_enable=yes
  67. #  -o smtpd_client_restrictions=permit_sasl_authenticated,reject
  68. #  -o milter_macro_daemon_name=ORIGINATING
  69. #smtps     inet  n       -       n       -       -       smtpd
  70. #  -o smtpd_tls_wrappermode=yes
  71. #  -o smtpd_sasl_auth_enable=yes
  72. #  -o smtpd_client_restrictions=permit_sasl_authenticated,reject
  73. #  -o milter_macro_daemon_name=ORIGINATING
  74. #628       inet  n       -       n       -       -       qmqpd
  75. pickup    fifo  n       -       n       60      1       pickup
  76. cleanup   unix  n       -       n       -       0       cleanup
  77. qmgr      fifo  n       -       n       300     1       qmgr
  78. #qmgr     fifo  n       -       n       300     1       oqmgr
  79. tlsmgr    unix  -       -       n       1000?   1       tlsmgr
  80. rewrite   unix  -       -       n       -       -       trivial-rewrite
  81. bounce    unix  -       -       n       -       0       bounce
  82. defer     unix  -       -       n       -       0       bounce
  83. trace     unix  -       -       n       -       0       bounce
  84. verify    unix  -       -       n       -       1       verify
  85. flush     unix  n       -       n       1000?   0       flush
  86. proxymap  unix  -       -       n       -       -       proxymap
  87. proxywrite unix -       -       n       -       1       proxymap
  88. smtp      unix  -       -       n       -       -       smtp
  89. # When relaying mail as backup MX, disable fallback_relay to avoid MX loops
  90. relay     unix  -       -       n       -       -       smtp
  91.         -o smtp_fallback_relay=
  92. #       -o smtp_helo_timeout=5 -o smtp_connect_timeout=5
  93. showq     unix  n       -       n       -       -       showq
  94. error     unix  -       -       n       -       -       error
  95. retry     unix  -       -       n       -       -       error
  96. discard   unix  -       -       n       -       -       discard
  97. local     unix  -       n       n       -       -       local
  98. virtual   unix  -       n       n       -       -       virtual
  99. # Postfix master process configuration file.  For details on the format
  100. # of the file, see the master(5) manual page (command: "man 5 master" ).
  101. #
  102. # Do not forget to execute "postfix reload" after editing this file.
  103. #
  104. # ==========================================================================
  105. # service type  private unpriv  chroot  wakeup  maxproc command + args
  106. #               (yes)   (yes)   (yes)   (never) (100)
  107. # ==========================================================================
  108. smtp      inet  n       -       n       -       -       smtpd
  109. #smtp      inet  n       -       n       -       1       postscreen
  110. #smtpd     pass  -       -       n       -       -       smtpd
  111. #dnsblog   unix  -       -       n       -       0       dnsblog
  112. #tlsproxy  unix  -       -       n       -       0       tlsproxy
  113. #submission inet n       -       n       -       -       smtpd
  114. #  -o smtpd_tls_security_level=encrypt
  115. #  -o smtpd_sasl_auth_enable=yes
  116. #  -o smtpd_client_restrictions=permit_sasl_authenticated,reject
  117. #  -o milter_macro_daemon_name=ORIGINATING
  118. #smtps     inet  n       -       n       -       -       smtpd
  119. #  -o smtpd_tls_wrappermode=yes
  120. #  -o smtpd_sasl_auth_enable=yes
  121. #  -o smtpd_client_restrictions=permit_sasl_authenticated,reject
  122. #  -o milter_macro_daemon_name=ORIGINATING
  123. #628       inet  n       -       n       -       -       qmqpd
  124. pickup    fifo  n       -       n       60      1       pickup
  125. cleanup   unix  n       -       n       -       0       cleanup
  126. qmgr      fifo  n       -       n       300     1       qmgr
  127. #qmgr     fifo  n       -       n       300     1       oqmgr
  128. tlsmgr    unix  -       -       n       1000?   1       tlsmgr
  129. rewrite   unix  -       -       n       -       -       trivial-rewrite
  130. bounce    unix  -       -       n       -       0       bounce
  131. defer     unix  -       -       n       -       0       bounce
  132. trace     unix  -       -       n       -       0       bounce
  133. verify    unix  -       -       n       -       1       verify
  134. flush     unix  n       -       n       1000?   0       flush
  135. proxymap  unix  -       -       n       -       -       proxymap
  136. proxywrite unix -       -       n       -       1       proxymap
  137. smtp      unix  -       -       n       -       -       smtp
  138. # When relaying mail as backup MX, disable fallback_relay to avoid MX loops
  139. relay     unix  -       -       n       -       -       smtp
  140.         -o smtp_fallback_relay=
  141. #       -o smtp_helo_timeout=5 -o smtp_connect_timeout=5
  142. showq     unix  n       -       n       -       -       showq
  143. error     unix  -       -       n       -       -       error
  144. retry     unix  -       -       n       -       -       error
  145. discard   unix  -       -       n       -       -       discard
  146. local     unix  -       n       n       -       -       local
  147. virtual   unix  -       n       n       -       -       virtual
  148. lmtp      unix  -       -       n       -       -       lmtp
  149. anvil     unix  -       -       n       -       1       anvil
  150. scache    unix  -       -       n       -       1       scache
  151. #
  152. # ====================================================================
  153. # Interfaces to non-Postfix software. Be sure to examine the manual
  154. # pages of the non-Postfix software to find out what options it wants.
  155. #
  156. # Many of the following services use the Postfix pipe(8) delivery
  157. # agent.  See the pipe(8) man page for information about ${recipient}
  158. # and other message envelope options.
  159. # ====================================================================
  160. #
  161. # maildrop. See the Postfix MAILDROP_README file for details.
  162. # Also specify in main.cf: maildrop_destination_recipient_limit=1
  163. #
  164. #maildrop  unix  -       n       n       -       -       pipe
  165. #  flags=DRhu user=vmail argv=/usr/local/bin/maildrop -d ${recipient}
  166. #
  167. # ====================================================================
  168. #
  169. # Recent Cyrus versions can use the existing "lmtp" master.cf entry.
  170. #
  171. # Specify in cyrus.conf:
  172. #   lmtp    cmd="lmtpd -a" listen="localhost:lmtp" proto=tcp4
  173. #
  174. # Specify in main.cf one or more of the following:
  175. #  mailbox_transport = lmtp:inet:localhost
  176. #  virtual_transport = lmtp:inet:localhost
  177. #
  178. # ====================================================================
  179. #
  180. # Cyrus 2.1.5 (Amos Gouaux)
  181. # Also specify in main.cf: cyrus_destination_recipient_limit=1
  182. #
  183. #cyrus     unix  -       n       n       -       -       pipe
  184. #  user=cyrus argv=/cyrus/bin/deliver -e -r ${sender} -m ${extension} ${user}
  185. #
  186. # ====================================================================
  187. #
  188. # Old example of delivery via Cyrus.
  189. #
  190. #old-cyrus unix  -       n       n       -       -       pipe
  191. #  flags=R user=cyrus argv=/cyrus/bin/deliver -e -m ${extension} ${user}
  192. #
  193. # ====================================================================
  194. #
  195. # See the Postfix UUCP_README file for configuration details.
  196. lmtp      unix  -       -       n       -       -       lmtp
  197. anvil     unix  -       -       n       -       1       anvil
  198. scache    unix  -       -       n       -       1       scache
  199. #
  200. # ====================================================================
  201. # Interfaces to non-Postfix software. Be sure to examine the manual
  202. # pages of the non-Postfix software to find out what options it wants.
  203. #
  204. # Many of the following services use the Postfix pipe(8) delivery
  205. # agent.  See the pipe(8) man page for information about ${recipient}
  206. # and other message envelope options.
  207. # ====================================================================
  208. #
  209. # maildrop. See the Postfix MAILDROP_README file for details.
  210. # Also specify in main.cf: maildrop_destination_recipient_limit=1
  211. #
  212. #maildrop  unix  -       n       n       -       -       pipe
  213. #  flags=DRhu user=vmail argv=/usr/local/bin/maildrop -d ${recipient}
  214. #
  215. # ====================================================================
  216. #
  217. # Recent Cyrus versions can use the existing "lmtp" master.cf entry.
  218. #
  219. # Specify in cyrus.conf:
  220. #   lmtp    cmd="lmtpd -a" listen="localhost:lmtp" proto=tcp4
  221. #
  222. # Specify in main.cf one or more of the following:
  223. #  mailbox_transport = lmtp:inet:localhost
  224. #  virtual_transport = lmtp:inet:localhost
  225. #
  226. # ====================================================================
  227. #
  228. # Cyrus 2.1.5 (Amos Gouaux)
  229. # Also specify in main.cf: cyrus_destination_recipient_limit=1
  230. #
  231. #cyrus     unix  -       n       n       -       -       pipe
  232. #  user=cyrus argv=/cyrus/bin/deliver -e -r ${sender} -m ${extension} ${user}
  233. #
  234. # ====================================================================
  235. #
  236. # Old example of delivery via Cyrus.
  237. #
  238. #old-cyrus unix  -       n       n       -       -       pipe
  239. #  flags=R user=cyrus argv=/cyrus/bin/deliver -e -m ${extension} ${user}
  240. #
  241. # ====================================================================
  242. #
  243. # See the Postfix UUCP_README file for configuration details.
  244. lmtp      unix  -       -       n       -       -       lmtp
  245. anvil     unix  -       -       n       -       1       anvil
  246. scache    unix  -       -       n       -       1       scache
  247. #
  248. # ====================================================================
  249. # Interfaces to non-Postfix software. Be sure to examine the manual
  250. # pages of the non-Postfix software to find out what options it wants.
  251. #
  252. # Many of the following services use the Postfix pipe(8) delivery
  253. # agent.  See the pipe(8) man page for information about ${recipient}
  254. # and other message envelope options.
  255. # ====================================================================
  256. #
  257. # maildrop. See the Postfix MAILDROP_README file for details.
  258. # Also specify in main.cf: maildrop_destination_recipient_limit=1
  259. #
  260. #maildrop  unix  -       n       n       -       -       pipe
  261. #  flags=DRhu user=vmail argv=/usr/local/bin/maildrop -d ${recipient}
  262. #
  263. # ====================================================================
  264. #
  265. # Recent Cyrus versions can use the existing "lmtp" master.cf entry.
  266. #
  267. # Specify in cyrus.conf:
  268. #   lmtp    cmd="lmtpd -a" listen="localhost:lmtp" proto=tcp4
  269. #
  270. # Specify in main.cf one or more of the following:
  271. #  mailbox_transport = lmtp:inet:localhost
  272. #  virtual_transport = lmtp:inet:localhost
  273. #
  274. # ====================================================================
  275. #
  276. # Cyrus 2.1.5 (Amos Gouaux)
  277. # Also specify in main.cf: cyrus_destination_recipient_limit=1
  278. #
  279. #cyrus     unix  -       n       n       -       -       pipe
  280. #  user=cyrus argv=/cyrus/bin/deliver -e -r ${sender} -m ${extension} ${user}
  281. #
  282. # ====================================================================
  283. #
  284. # Old example of delivery via Cyrus.
  285. #
  286. #old-cyrus unix  -       n       n       -       -       pipe
  287. #  flags=R user=cyrus argv=/cyrus/bin/deliver -e -m ${extension} ${user}
  288. #
  289. # ====================================================================
  290. #
  291. # See the Postfix UUCP_README file for configuration details.
  292. #
  293. #uucp      unix  -       n       n       -       -       pipe
  294. #  flags=Fqhu user=uucp argv=uux -r -n -z -a$sender - $nexthop!rmail ($recipient)
  295. #
  296. # ====================================================================
  297. #
  298. # Other external delivery methods.
  299. #
  300. #ifmail    unix  -       n       n       -       -       pipe
  301. #  flags=F user=ftn argv=/usr/lib/ifmail/ifmail -r $nexthop ($recipient)
  302. #
  303. #bsmtp     unix  -       n       n       -       -       pipe
  304. #  flags=Fq. user=bsmtp argv=/usr/local/sbin/bsmtp -f $sender $nexthop $recipient
  305. #
  306. #scalemail-backend unix -       n       n       -       2       pipe
  307. #  flags=R user=scalemail argv=/usr/lib/scalemail/bin/scalemail-store
  308. #  ${nexthop} ${user} ${extension}
  309. #
  310. #mailman   unix  -       n       n       -       -       pipe
  311. #  flags=FR user=list argv=/usr/lib/mailman/bin/postfix-to-mailman.py
  312. #  ${nexthop} ${user}


Je suis sous ArchLinux
Merci d'avance :)


Message édité par kassecou le 14-06-2011 à 11:02:57
mood
Publicité
Posté le 14-06-2011 à 10:23:39  profilanswer
 

n°528361
franck3119​5
je ne suis pas google !
Posté le 14-06-2011 à 11:12:40  profilanswer
 

Salut,
questions :
1 ton serveur envoi t'il correctement les messages vers l'exterieur ?
2 ton serveur reçoit il les messages venant de l'exterieur ?
3 ton client est configuré pour attaquer ton serveur avec le nom de domaine ou son ip en local ?
4 les tests sont faits avec le client et le serveur depuis la même connexion Internet ?
si oui certaine box (neuf sfr par ex) ne supporte pas d'avoir une connexion interne qui part sur l'exterieur et qui lui revient.
 
Ps : je ne connais pas du tout postfix, donc je ne peux quez te donner des pistes de réflexion.
 
A+


---------------
Hommage au sergent Aurélie Salel - http://www.pompiersparis.fr/
n°528363
kassecou
Posté le 14-06-2011 à 11:37:55  profilanswer
 

Merci de ta réponse :)
Alors,  
1) Mon serveur n'arrive pas a envoyer les messages vers l'extéieur. Mon client me sort un "Host unreachable"
2) Quand j'envoie un message depuis ma boite Gmail, je recois un mail, longtemps apres qui me dit qu'il n'a pas trouver le destinataire..
3) J'ai essayé les deux mais ca ne marche ni avec l'IP local, ni ni avec le "MX Hostname"
4) Les tests sont fait depuis la meme connexion (telnet, envoi de mails..) et j'ai une BBox de Bouygues

n°528365
kassecou
Posté le 14-06-2011 à 11:40:38  profilanswer
 

Ps: ça ne marche pas non plus depuis une autre connexion internet ..

n°528380
franck3119​5
je ne suis pas google !
Posté le 14-06-2011 à 14:01:31  profilanswer
 

Salut,
la box est bien paramétrée pour utiliser un autre serveur SMTP que celui de bouygue ?
Le serveur est en DMZ ou tu as paramétré les redirections de ports ?
ton client IMAP trouve ton serveur postfix ?
Depuis ton poste client, fais un nslookup sur ton nom de domaine pour verifier que ton adresse ip publique renvoie bien sur toi.
A+


---------------
Hommage au sergent Aurélie Salel - http://www.pompiersparis.fr/
n°528415
kassecou
Posté le 14-06-2011 à 16:06:53  profilanswer
 

- Je ne vois pas ce que tu veux dire par "paramétrée pour utiliser un autre serveur SMTP que celui de Bouygues" .. (Il y a surement un rapport avec la variable realyhost dans le fichier de config de Postfix que je n'ai pas indiqué)
- Ensuite, j'ai paramétrer la direction des ports 25 et 143 (TCP et UDP) vers mon serveur
- Je ne sais pas comment savoir si mon serveur IMAP (Dovecot) trouve mon serveur Postfix
- Et la commande nslookup me renvoie :

Code :
  1. Server:         <Ip locale de la box>
  2. Address:        <Ip locale de la box>#53
  3. Non-authoritative answer:
  4. Name:   <Mon DNS>
  5. Address: <IP Publique>


 
Merci :)


Message édité par kassecou le 14-06-2011 à 16:07:40
n°528427
franck3119​5
je ne suis pas google !
Posté le 14-06-2011 à 16:38:38  profilanswer
 

Salut,
ligne 47 du fichier de conf postfix, y a pas une boulette ?
jete un oeil sur ça http://iperf.fr/installer-un-serve [...] iguration/
devecot ne te donne pas de message d'erreur, crée un nouveau dossier dans ton arborécense et voit si la modif est prise en compte.
Ton serveur a bien été redemarrer à la fin de l'installation ?
A+


---------------
Hommage au sergent Aurélie Salel - http://www.pompiersparis.fr/
n°528437
kassecou
Posté le 14-06-2011 à 17:13:35  profilanswer
 

- J'ai commenté la ligne 47 mais la seule chose que ça a changé c'est qu'il n'y a plus de ligne d'erreur dans mon mail.log  
- "Crée un nouveau dossier dans ton arborescence" c'est a dire ou ?
- J'ai redémarrer le serveur 26 mille fois mais ca n'a rien changé ..
Merci de l'interet que tu portes a mon probleme

n°528445
franck3119​5
je ne suis pas google !
Posté le 14-06-2011 à 18:03:37  profilanswer
 

Salut,
d'apres la doc que tu as suivi, la ligne 47 doit contenir le nom de ton domaine.
Et je crois que tu t'es trompé dans les ligne 7 et 8.
Ligne 7 doit etre le nom du serveur (ex : smtp.domaine.local)
ligne 8 (ex : domaine.local)
 
Dans le cas d'un compte IMAP on peut creer d'autres répertoires pour classer ses mails.
Donc tu cherches sur le net pour creer un répertoire supplémentaire avec ton client.
T'as regardé le lien que je t'ai donné ?
A+


---------------
Hommage au sergent Aurélie Salel - http://www.pompiersparis.fr/
n°528497
kassecou
Posté le 14-06-2011 à 21:21:14  profilanswer
 

En créant un domaine gratuit chez Dyndns j'ai créer le nom de domain shom.dyndns.org, ce que j'ai mis dans la ligne 7. Et il y avait une case "MX Hostname" sur la page du choix du DNS dans laquelle j'ai mis "shom.org", ce que j'ai mis dans la ligne 8 et 47.
J'utilise Kmail, j'ai créer un nouveau répertoire sur le serveur avec le client, je peux y déplacer des messages sans problemes. Ca marche :)
J'ai lus ton lien :)
Merci encore !

mood
Publicité
Posté le 14-06-2011 à 21:21:14  profilanswer
 

n°528508
franck3119​5
je ne suis pas google !
Posté le 14-06-2011 à 21:54:08  profilanswer
 

Salut,
non ton domaine c'est shom.dyndns.org et ton mx pareil.
donc refait la config du serveur.
A+


---------------
Hommage au sergent Aurélie Salel - http://www.pompiersparis.fr/
n°528520
kassecou
Posté le 14-06-2011 à 23:04:43  profilanswer
 

Donc quand j'envoie un mail, il faut que je l'envoie a utilisateur@shom.dyndns.org ?

n°528525
franck3119​5
je ne suis pas google !
Posté le 14-06-2011 à 23:33:42  profilanswer
 

Salut,
tu dois modifier les ligne 7 8 et 47 pour mettre les bons noms domaines.
ensuite oui tu utilise ce type d'adresse.
A+


---------------
Hommage au sergent Aurélie Salel - http://www.pompiersparis.fr/
n°528527
kassecou
Posté le 14-06-2011 à 23:46:17  profilanswer
 

j'ai mis shom.dyndns.org sur les lignes 7,8 et 47 mais j'ai toujours les memes problemes ..
Pff...

n°528572
franck3119​5
je ne suis pas google !
Posté le 15-06-2011 à 11:34:54  profilanswer
 

Salut,
pour ma part, je ne sais plus trop quoi tenter.
Contacte un modérateur pour basculer ton post dans la catégorie linux.
A+


---------------
Hommage au sergent Aurélie Salel - http://www.pompiersparis.fr/
n°528606
kassecou
Posté le 15-06-2011 à 14:58:03  profilanswer
 

Merci quand meme franck31195 :)
Je continue a chercher ..
A plus !


Message édité par kassecou le 15-06-2011 à 15:06:53

Aller à :
Ajouter une réponse
  FORUM HardWare.fr
  Réseaux grand public / SoHo
  Hébergement

  [Postfix]Pas d'envoi

 

Sujets relatifs
trouver qui envoi un messageSpam bloqué dans mon postfix
mails free et orange qui ne fonctionnent pas en envoi automatisésLogiciel supervision ordinateur pour envoi d'alerte
problème envoi mails via serveur "privée"Envoi de données impossible via Rj45
Envoi de mails en nombresEnvoi de mail bloqué chez Free
Envoi de Mails vers AOL => réglages des Zones BIND 
Plus de sujets relatifs à : [Postfix]Pas d'envoi


Copyright © 1997-2022 Hardware.fr SARL (Signaler un contenu illicite / Données personnelles) / Groupe LDLC / Shop HFR