hi all,
when i want to send mail from open-xchange, when i click send button, a red line appear on the screen :
Internal error: Could not connect to SMTP host: localhost, port: 25, response: -1 (MSG-0020,619657516-12)
and in /var/log/mail.log i have :
Aug 26 10:30:03 localhost postfix/smtpd[16713]: connect from localhost.localdomain.com[127.0.0.1]
Aug 26 10:30:03 localhost postfix/smtpd[16713]: fatal: non-null host address bits in "127.0.0.1/25", perhaps you should use "127.0.0.0/25" instead
Aug 26 10:30:04 localhost postfix/master[16654]: warning: process /usr/lib/postfix/smtpd pid 16713 exit status 1
Aug 26 10:30:04 localhost postfix/master[16654]: warning: /usr/lib/postfix/smtpd: bad command startup -- throttling
"/var/log/mail.log" 8639L, 993549C
and this is my main.cf file :
# 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 = /etc/mailname
smtpd_banner = $myhostname ESMTP $mail_name (Ubuntu)
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
# TLS parameters
smtpd_tls_cert_file = /etc/ssl/certs/eecert.pem
smtpd_tls_key_file = /etc/ssl/private/eekey.pem
smtpd_use_tls=yes
smtpd_tls_session_cache_database = btree:${queue_directory}/smtpd_scache
smtp_tls_session_cache_database = btree:${queue_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.
mydomain = example.com
myhostname = mail.example.com
alias_maps = hash:/etc/aliases
alias_database = hash:/etc/aliases
#mydestination = $myhostname, localhost.$mydomain
relayhost =
mynetworks = 127.0.0.1/25
mailbox_size_limit = 0
recipient_delimiter = +
inet_interfaces = all
mailbox_transport = lmtp:unix:/var/run/cyrus/socket/lmtp
virtual_alias_domains = mysql:/etc/postfix/ox_domains.cf
virtual_alias_maps = mysql:/etc/postfix/ox_user_aliases.cf, mysql:/etc/postfix/ox_aliases.cf, mysql:/etc/postfix/ox_resource$smtpd_sender_restrictions = check_sender_access mysql:/etc/postfix/ox_externaldomaincheck.cf
smtpd_restriction_classes = local_only
local_only = check_recipient_access mysql:/etc/postfix/ox_domains.cf, reject
smtpd_recipient_restrictions = check_sender_access mysql:/etc/postfix/ox_senderrestrictions.cf, permit_sasl_authenticated, p$
procmail_destination_concurrency_limit = 1
procmail_destination_recipient_limit = 1
maximal_queue_lifetime = 1d
... Any idea??
Thanks in advance
when i want to send mail from open-xchange, when i click send button, a red line appear on the screen :
Internal error: Could not connect to SMTP host: localhost, port: 25, response: -1 (MSG-0020,619657516-12)
and in /var/log/mail.log i have :
Aug 26 10:30:03 localhost postfix/smtpd[16713]: connect from localhost.localdomain.com[127.0.0.1]
Aug 26 10:30:03 localhost postfix/smtpd[16713]: fatal: non-null host address bits in "127.0.0.1/25", perhaps you should use "127.0.0.0/25" instead
Aug 26 10:30:04 localhost postfix/master[16654]: warning: process /usr/lib/postfix/smtpd pid 16713 exit status 1
Aug 26 10:30:04 localhost postfix/master[16654]: warning: /usr/lib/postfix/smtpd: bad command startup -- throttling
"/var/log/mail.log" 8639L, 993549C
and this is my main.cf file :
# 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 = /etc/mailname
smtpd_banner = $myhostname ESMTP $mail_name (Ubuntu)
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
# TLS parameters
smtpd_tls_cert_file = /etc/ssl/certs/eecert.pem
smtpd_tls_key_file = /etc/ssl/private/eekey.pem
smtpd_use_tls=yes
smtpd_tls_session_cache_database = btree:${queue_directory}/smtpd_scache
smtp_tls_session_cache_database = btree:${queue_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.
mydomain = example.com
myhostname = mail.example.com
alias_maps = hash:/etc/aliases
alias_database = hash:/etc/aliases
#mydestination = $myhostname, localhost.$mydomain
relayhost =
mynetworks = 127.0.0.1/25
mailbox_size_limit = 0
recipient_delimiter = +
inet_interfaces = all
mailbox_transport = lmtp:unix:/var/run/cyrus/socket/lmtp
virtual_alias_domains = mysql:/etc/postfix/ox_domains.cf
virtual_alias_maps = mysql:/etc/postfix/ox_user_aliases.cf, mysql:/etc/postfix/ox_aliases.cf, mysql:/etc/postfix/ox_resource$smtpd_sender_restrictions = check_sender_access mysql:/etc/postfix/ox_externaldomaincheck.cf
smtpd_restriction_classes = local_only
local_only = check_recipient_access mysql:/etc/postfix/ox_domains.cf, reject
smtpd_recipient_restrictions = check_sender_access mysql:/etc/postfix/ox_senderrestrictions.cf, permit_sasl_authenticated, p$
procmail_destination_concurrency_limit = 1
procmail_destination_recipient_limit = 1
maximal_queue_lifetime = 1d
... Any idea??
Thanks in advance
Comment