Hello everyone,
I just installed postfix and when running
I have disabled everything in relation to sendmail, so I really dont get the error message.
For your information 192.168.0.115, 192.168.0.120 and 192.168.0.125 are the IP address of my three jails. I read on the net that it could be because I didn't add the following in my /etc/make.conf file to disable building Sendmail during buildworld.
If this is the case does anyone know how to fix it?
/etc/rc.conf
/etc/periodic.conf
etc/postfix/main.cf
/etc/postfix/sasl_passwd
Thank you in advance.
I just installed postfix and when running
sendmail -bv root I get the following:
Code:
Mar 7 21:02:08 FREEBSD_HOST sendmail[1940]: gethostbyaddr(192.168.0.115) failed: 1
Mar 7 21:02:08 FREEBSD_HOST sendmail[1940]: gethostbyaddr(192.168.0.120) failed: 1
Mar 7 21:02:08 FREEBSD_HOST sendmail[1940]: gethostbyaddr(192.168.0.125) failed: 1
For your information 192.168.0.115, 192.168.0.120 and 192.168.0.125 are the IP address of my three jails. I read on the net that it could be because I didn't add the following in my /etc/make.conf file to disable building Sendmail during buildworld.
Code:
NO_SENDMAIL=true
/etc/rc.conf
Code:
postfix_enable="YES"
sendmail_enable="NO"
sendmail_submit_enable="NO"
sendmail_outbound_enable="NO"
sendmail_msp_queue_enable="NO"
Code:
daily_clean_hoststat_enable="NO"
daily_status_mail_rejects_enable="NO"
daily_status_include_submit_mailq="NO"
daily_submit_queuerun="NO"
Code:
relayhost = [smtp.gmail.com]:587
smtp_sasl_auth_enable = yes
smtp_sasl_password_maps = hash:/usr/local/etc/postfix/sasl_passwd
smtp_sasl_security_options =
smtp_use_tls = yes
Code:
[smtp.gmail.com]:587 myemail@gmail.com:password
Thank you in advance.