Postfix rejette les clients
salut!
le demon postfix tourne mais rejette les connexions
voici l'erreur du fichier log:
le serveur tourne suivant le modele virtuel
avec mysql comme base de donnée
connect from unknown[192.168.0.19]
Feb 7 17:52:29 gaia postfix/smtpd[23892]: NOQUEUE: reject: RCPT from unknown[192.168.0.19]: 450 4.7.1 Client host rejected: cannot find your hostname, [192.168.0.19]; from=<mail_de test> to=<mail_destination> proto=ESMTP helo=<[192.168.0.19]>
j'ai pourtant bien inséré les entrée dans la table correspondantes dans ma base de données.
voic ce que répond thunderbird quand j'essaie d'envoyer un mail :
the mail server responded : client hosts rejected : cannot fond your hostname, verify that your email address is correct in preferences...
Tout est correct pourtant...
Postfiw rejette les clients
merci,
voici la config :
Code:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
| alias_database = hash:/etc/aliases
alias_maps = hash:/etc/aliases
append_dot_mydomain = no
biff = no
command_directory = /usr/sbin
config_directory = /etc/postfix
daemon_directory = /usr/lib/postfix
default_privs = nobody
inet_interfaces = 127.0.0.1, 192.168.0.3
mail_owner = postfix
mydestination = $myhostname, localhost.$mydomain $mydomain
mydomain = ma.info
myhostname = gaia.ma.info
mynetworks = 192.168.0.0/24, 127.0.0.0/8
myorigin = /etc/mailname
notify_classes = resource, software
smtpd_banner = $myhostname ESMTP
smtpd_client_restrictions = reject_unknown_client, permit_mynetworks
smtpd_recipient_restrictions = permit_mynetworks, reject_unauth_destination
smtpd_sender_restrictions = permit_mynetworks, warn_if_reject reject_unverified_sender
virtual_alias_maps = mysql:/etc/postfix/mysql_virtual_alias_maps.cf
virtual_gid_maps = static:114
virtual_mailbox_base = /var/spool/postfix
virtual_mailbox_domains = mysql:/etc/postfix/mysql_virtual_domains_maps.cf
virtual_mailbox_maps = mysql:/etc/postfix/mysql_virtual_mailbox_maps.cf
virtual_uid_maps = static:110 |