Hey Guys,
i started into a new round "ispCP on FreeBSD".
My current problem is still Postfix.
- I´m able to Login via IMAP from the Webmailer
- I can send Mails from user1@domain.tld to user2@domain.tld
- The eMail is moved without any problems to the maildir
But i can´t send mails outside in the wide wide World to yahoo for example because of this Error:
Code:
Mar 16 11:49:29 root postfix/smtpd[2022]: connect from unknown[127.0.0.1]
Mar 16 11:49:29 root postfix/smtpd[2022]: NOQUEUE: reject: RCPT from unknown[127.0.0.1]: 450 4.1.2 <my-nick@yahoo.com>: Recipient address rejected: Domain not found; from=<bene2@root.mydomain.tld> to=<my-nick@yahoo.com> proto=ESMTP helo=<admin.root.mydomain.tld>
Mar 16 11:49:29 root postfix/smtpd[2022]: lost connection after RCPT from unknown[127.0.0.1]
Mar 16 11:49:29 root postfix/smtpd[2022]: disconnect from unknown[127.0.0.1]
As i said, from one User to the other on the same Domain it works fine.
Here is the current postfix config:
Code:
root# postconf -n
alias_database = hash:/usr/local/etc/postfix/ispcp/aliases
alias_maps = hash:/usr/local/etc/postfix/ispcp/aliases
append_at_myorigin = yes
append_dot_mydomain = no
biff = no
broken_sasl_auth_clients = yes
command_directory = /usr/local/sbin
config_directory = /usr/local/etc/postfix
daemon_directory = /usr/local/libexec/postfix
inet_interfaces = all
local_destination_recipient_limit = 1
local_recipient_maps = unix:passwd.byname $alias_database
local_transport = local
mail_spool_directory = /var/mail
mailbox_command = procmail -a "$EXTENSION"
mailbox_size_limit = 0
message_size_limit = 0
mydestination = $myhostname, $mydomain
mydomain = mail.root.mydomain.tld
myhostname = mail.root.mydomain.tld
mynetworks_style = host
myorigin = $myhostname
recipient_delimiter = +
setgid_group = maildrop
smtpd_banner = $myhostname ESMTP ispCP 1.0.5 OMEGA Managed
smtpd_data_restrictions = reject_multi_recipient_bounce, reject_unauth_pipelining
smtpd_helo_required = yes
smtpd_helo_restrictions = permit_mynetworks, permit_sasl_authenticated, reject_invalid_helo_hostname, reject_non_fqdn_helo_hostname
smtpd_recipient_restrictions = reject_non_fqdn_recipient, reject_unknown_recipient_domain, permit_mynetworks, permit_sasl_authenticated, reject_unauth_destination, reject_unlisted_recipient, check_policy_service inet:127.0.0.1:12525, check_policy_service inet:127.0.0.1:10023, permit
smtpd_sasl_auth_enable = yes
smtpd_sasl_local_domain =
smtpd_sasl_security_options = noanonymous
smtpd_sender_restrictions = reject_non_fqdn_sender, reject_unknown_sender_domain, permit_mynetworks, permit_sasl_authenticated
transport_maps = hash:/usr/local/etc/postfix/ispcp/transport
virtual_alias_maps = hash:/usr/local/etc/postfix/ispcp/aliases
virtual_gid_maps = static:125
virtual_mailbox_base = /var/mail/virtual
virtual_mailbox_domains = hash:/usr/local/etc/postfix/ispcp/domains
virtual_mailbox_limit = 0
virtual_mailbox_maps = hash:/usr/local/etc/postfix/ispcp/mailboxes
virtual_minimum_uid = 1003
virtual_transport = virtual
virtual_uid_maps = static:1003
I checked my DNS-Server of course - but yahoo for example is available for me:
Code:
root# ping yahoo.com
PING yahoo.com (209.131.36.159): 56 data bytes
64 bytes from 209.131.36.159: icmp_seq=0 ttl=55 time=194.066 ms
64 bytes from 209.131.36.159: icmp_seq=1 ttl=55 time=194.281 ms
64 bytes from 209.131.36.159: icmp_seq=2 ttl=55 time=193.731 ms
64 bytes from 209.131.36.159: icmp_seq=3 ttl=55 time=193.204 ms
64 bytes from 209.131.36.159: icmp_seq=4 ttl=55 time=194.828 ms
^C
--- yahoo.com ping statistics ---
5 packets transmitted, 5 packets received, 0.0% packet loss
round-trip min/avg/max/stddev = 193.204/194.022/194.828/0.543 ms
root#
I tried man other Mailadresses with the same result.
I can´t find the Error
Any tipps ?
Thanks & Greez
BeNe