My internet service provider has recently tightened up security
by requiring a login to the SMTP server. I have set up everything I know how
to do, but get the following message when I try to send to an address that is outside
my mail domain:
<xxxxx@xxxxxxxxxxxxx>:
host mx00.mail.bellsouth.net[205.152.59.32] said:
550 .net
022: Your current IP address is not allowed to relay to
bellsouth.com Solution: Connect using BellSouth Internet Service. (in reply
to RCPT
TO command)
I have attached relevant main.cf segment:
readme_directory =
/usr/share/doc/packages/postfix/README_FILES
mail_spool_directory = /var/mail
canonical_maps = hash:/etc/postfix/canonical
virtual_maps = hash:/etc/postfix/virtual
relocated_maps = hash:/etc/postfix/relocated
transport_maps = hash:/etc/postfix/transport
sender_canonical_maps =
hash:/etc/postfix/sender_canonical
masquerade_exceptions = root
masquerade_classes = envelope_sender, header_sender,
header_recipient
myhostname = server.local
program_directory = /usr/lib/postfix
inet_interfaces = 127.0.0.1
masquerade_domains =
mydestination = $myhostname, localhost.$mydomain
defer_transports =
disable_dns_lookups = no
relayhost = mail.bellsouth.net
content_filter =
mailbox_command =
mailbox_transport =
smtpd_sender_restrictions = hash:/etc/postfix/access
smtpd_client_restrictions =
smtpd_helo_required = no
smtpd_helo_restrictions =
strict_rfc821_envelopes = no
smtpd_recipient_restrictions = permit_mynetworks,reject_unauth_destination
smtp_sasl_auth_enable = yes
smtpd_sasl_auth_enable = no
smtpd_use_tls = no
smtp_use_tls = no
alias_maps = hash:/etc/aliases
mailbox_size_limit = 0
message_size_limit = 10240000
smtp_sasl_security_options =
smtp_sasl_password_maps =
hash:/etc/postfix/sasl_passwd
Also, the /etc/postfix/sasl_passwd file includes an entry:
mail.bellsouth.net <mailbox>:<password>
I have also tried it with:
mail.bellsouth.net <mailbox@xxxxxxxxxxxxx>:<password>
with same result.
Any help would be appreciated.