Bonjour, je cherche à installer un smtp sur mon serveur qui tourne sous Squeeze. J’ ai jeté un oeil à différents tutos, mon choix s’ est porté sur Postfix dont l’ administration me semble plus facile pour le débutant que je suis.
Voici donc mon /etc/postfix/main.cf :
[code] cat /etc/postfix/main.cf
See /usr/share/postfix/main.cf.dist for a commented, more complete version
Debian specific: Specifying a file name will cause the first
line of that file to be used as the name. The Debian default
is /etc/mailname.
myorigin = $mydomain
smtpd_banner = $myhostname ESMTP $mail_name (Debian/GNU)
biff = no
appending .domain is the MUA’s job.
append_dot_mydomain = no
Uncomment the next line to generate “delayed mail” warnings
#delay_warning_time = 4h
readme_directory = no
TLS parameters
smtpd_tls_cert_file=/etc/ssl/certs/ssl-cert-snakeoil.pem
smtpd_tls_key_file=/etc/ssl/private/ssl-cert-snakeoil.key
smtpd_use_tls=yes
smtpd_tls_session_cache_database = btree:${data_directory}/smtpd_scache
smtp_tls_session_cache_database = btree:${data_directory}/smtp_scache
See /usr/share/doc/postfix/TLS_README.gz in the postfix-doc package for
information on enabling SSL in the smtp client.
myhostname = casper.casperland.net
alias_maps = hash:/etc/aliases
alias_database = hash:/etc/aliases
myorigin = $mydomain
mydestination = casperland.net, casper.casperland.net, localhost, localhost.localdomain
relayhost = smtp.free.fr
mynetworks = 127.0.0.0/8, 192.168.1.1/25
mailbox_command = procmail -a "$EXTENSION"
mailbox_size_limit = 51200000
recipient_delimiter = +
inet_interfaces = all
inet_protocols = all
smtpd_sasl_local_domain =
smtpd_sasl_auth_enable = yes
smtpd_sasl_security_options = noanonymous
broken_sasl_auth_clients = yes
smtpd_recipient_restrictions = permit_sasl_authenticated,permit_mynetworks,reject_unauth_destination
[/code]
Malheureusement, aucun mail ne part, et un test avec telnet n’ est pas concluant :
telnet casperland.net smtp
Trying 88.190.253.247...
telnet: Unable to connect to remote host: Connection timed out
Je peux pinguer pourtant 88.190.253.247 sans problème.
Le port 25 n’ est plus bloqué par mon fai (free)
Je vous remercie d’ avance pour votre aide.