This is a discussion on domain change within the alt.comp.mail.postfix forums, part of the Mail Servers and Related category; hello... I changed domain (it run ok) This domain is managed by my BIND now, i try to change domani ...
|
|||||||
| FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
|
|||
|
hello...
I changed domain (it run ok) This domain is managed by my BIND now, i try to change domani in postfix, but i obtain: 550 5.1.2 <name@domain.biz>... Host unknown (Name server: 123.456.789.012.domain.biz.: host not found) why???? I changed only extension of domain and I change this in main.cf and in DB (domain and mail) thanks |
|
|||
|
Hi !
I have started getting HELO EHLO FQDN required errors from "SOME" sites when sending mail. I have included my postconf -n output below. I have tried changing myhostname from server1 to server1.thecompany.co.uk this started giving me errors "mail loops back to myself" What do I have to change to allow me to send to "problem" sites without getting HELO EHLO FQDN errors server1:/etc/postfix root# postconf -n command_directory = /usr/sbin config_directory = /etc/postfix content_filter = smtp-amavis:[127.0.0.1]:10024 daemon_directory = /usr/libexec/postfix debug_peer_level = 2 enable_server_options = yes html_directory = no inet_interfaces = all mail_owner = postfix mailbox_size_limit = 0 mailbox_transport = cyrus mailq_path = /usr/bin/mailq manpage_directory = /usr/share/man mydestination = $myhostname,localhost.$mydomain,thecompany.co.uk,l ocalhost mydomain = thecompany.co.uk mydomain_fallback = localhost myhostname = server1 mynetworks = 127.0.0.1/32,192.168.12.0/24,192.168.22.0/24,195.11.28.0/24,10.1.1.0/24 mynetworks_style = host newaliases_path = /usr/bin/newaliases queue_directory = /private/var/spool/postfix readme_directory = /usr/share/doc/postfix sample_directory = /usr/share/doc/postfix/examples sendmail_path = /usr/sbin/sendmail setgid_group = postdrop smtpd_tls_key_file = unknown_local_recipient_reject_code = 550 TIA Tony |
|
|||
|
Tony wrote:
> Hi ! > > I have started getting HELO EHLO FQDN required errors from "SOME" sites > when sending mail. > > I have included my postconf -n output below. > > I have tried changing myhostname from server1 to > server1.thecompany.co.uk > > this started giving me errors "mail loops back to myself" > > What do I have to change to allow me to send to "problem" sites without > getting HELO EHLO FQDN errors > > server1:/etc/postfix root# postconf -n > command_directory = /usr/sbin > config_directory = /etc/postfix > content_filter = smtp-amavis:[127.0.0.1]:10024 > daemon_directory = /usr/libexec/postfix > debug_peer_level = 2 > enable_server_options = yes > html_directory = no > inet_interfaces = all > mail_owner = postfix > mailbox_size_limit = 0 > mailbox_transport = cyrus > mailq_path = /usr/bin/mailq > manpage_directory = /usr/share/man > mydestination = $myhostname,localhost.$mydomain,thecompany.co.uk,l ocalhost > mydomain = thecompany.co.uk > mydomain_fallback = localhost > myhostname = server1 > mynetworks = > 127.0.0.1/32,192.168.12.0/24,192.168.22.0/24,195.11.28.0/24,10.1.1.0/24 > mynetworks_style = host > newaliases_path = /usr/bin/newaliases > queue_directory = /private/var/spool/postfix > readme_directory = /usr/share/doc/postfix > sample_directory = /usr/share/doc/postfix/examples > sendmail_path = /usr/sbin/sendmail > setgid_group = postdrop > smtpd_tls_key_file = > unknown_local_recipient_reject_code = 550 > > > TIA > > Tony This should work with the "loops back to myself" message: myhostname=server1.thecompany.co.uk mydestination = $myhostname,localhost.$mydomain,thecompany.co.uk,l ocalhost If it does loop back, until you can find out what's causing it, you could temporarily use: myhostname=server1 smtp_helo_name=server1.thecompany.co.uk smtpd_banner = server1.thecompany.co.uk ESMTP $mail_name -- Greg |