
5th November 2009, 20:05
|
|
Junior Member
|
|
Join Date: Nov 2009
Posts: 4
Thanks: 0
Thanked 0 Times in 0 Posts
|
|
Remote host said: 554 5.7.1 Recipient address rejected: Access denied
I can send emails from mydomain.com but i can not receive.
sending mail from user@mydomain.com to user@gmail.com (or any other provider) is working
but
sending mail from user@gmail.com (or any other provider) to user@mydomain.com is not working
and mailer-daemon@gmail it says:
123.45.67.89 does not like recipient.
Remote host said: 554 5.7.1 <user@mydomain.com>: Recipient address rejected: Access denied
Giving up on 123.45.67.89.
I use ISPConfig version 2.2.33 and Postfix 2.5.5
main.cf looks like this:
smtpd_banner = $myhostname ESMTP $mail_name (Ubuntu)
biff = no
append_dot_mydomain = no
readme_directory = no
smtpd_tls_cert_file = /etc/postfix/ssl/smtpd.crt
smtpd_tls_key_file = /etc/postfix/ssl/smtpd.key
smtpd_use_tls = yes
smtpd_tls_session_cache_database = btree:${data_directory}/smtpd_scache
smtp_tls_session_cache_database = btree:${data_directory}/smtp_scache
myhostname = host.mydomain.com
alias_maps = hash:/etc/aliases
alias_database = hash:/etc/aliases
myorigin = /etc/mailname
mydestination = /etc/postfix/local-host-names
relayhost =
mynetworks = 127.0.0.0/8 [::ffff:127.0.0.0]/104 [::1]/128, 192.168.1.0/24
mynetwork_style = class
mailbox_command = procmail -a "$EXTENSION"
mailbox_size_limit = 0
recipient_delimiter = +
inet_interfaces = all
inet_protocols = all
smtpd_sasl_local_domain =
smtpd_sasl_auth_enable = yes
smtpd_sasl_security_options = noanonymous
broken_sasl_auth_clients = yes
smtpd_sasl_authenticated_header = yes
smtpd_recipient_restrictions = permit_sasl_authenticated,permit_mynetworks,reject _unauth_destination
mydestination = host.mydomain.com, localhost.mydomain.com, localhost.localdomain, localhost
smtpd_tls_auth_only = no
smtp_use_tls = yes
smtp_tls_note_starttls_offer = yes
smtpd_tls_CAfile = /etc/postfix/ssl/cacert.pem
smtpd_tls_loglevel = 1
smtpd_tls_received_header = yes
smtpd_tls_session_cache_timeout = 3600s
tls_random_source = dev:/dev/urandom
append_at_myorigin = no
virtual_maps = hash:/etc/postfix/virtusertable
virtusertable looks like this
File: virtusertable Line 1 Col 0 317 bytes 100%
###################################
#
# ISPConfig virtusertable Configuration File
# Version 1.0
#
###################################
user@www.mydomain.com user
user@mydomain.com user
#### MAKE MANUAL ENTRIES BELOW THIS LINE! ####
any idea?
thanks!
|

5th November 2009, 20:53
|
|
Moderator
|
|
Join Date: Dec 2005
Location: Montfoort, The Netherlands
Posts: 1,986
Thanks: 123
Thanked 542 Times in 240 Posts
|
|
I think you have to make a small modification within your /etc/postfix/main.cf.
So here is my suggestion:
Replace the line:
mydestination = host.mydomain.com, localhost.mydomain.com, localhost.localdomain, localhost
with:
#mydestination = host.mydomain.com, localhost.mydomain.com, localhost.localdomain, localhost
And add the line:
mydestination = /etc/postfix/local-host-names
Restart postfix afterwards by executing:
/etc/init.d/postfix restart
|

5th November 2009, 21:00
|
|
Junior Member
|
|
Join Date: Nov 2009
Posts: 4
Thanks: 0
Thanked 0 Times in 0 Posts
|
|
@hans
i did but no effect...
|

5th November 2009, 21:17
|
|
Moderator
|
|
Join Date: Dec 2005
Location: Montfoort, The Netherlands
Posts: 1,986
Thanks: 123
Thanked 542 Times in 240 Posts
|
|
Oeps, i see you had the line mydestination = /etc/postfix/local-host-names already. Commenting out the other mydestination line is fine.
Is the recipient address within the file:
/etc/postfix/virtusertable
What do you see within your mail.log ?
Also try setting your option "My outgoing server SMTP requires authentication" and then select "Use same settings as my incoming mail server" within your e-mailaclient.
|

5th November 2009, 21:33
|
|
Junior Member
|
|
Join Date: Nov 2009
Posts: 4
Thanks: 0
Thanked 0 Times in 0 Posts
|
|
Quote:
Originally Posted by Hans
Oeps, i see you had the line mydestination = /etc/postfix/local-host-names already. Commenting out the other mydestination line is fine.
Is the recipient address within the file:
/etc/postfix/virtusertable
What do you see within your mail.log ?
Also try setting your option "My outgoing server SMTP requires authentication" and then select "Use same settings as my incoming mail server" within your e-mailaclient.
|
the recipient address is ok (only one address just for testing first) so.. i cant confuse it
from log:
postfix/smtpd[11655]: Anonymous TLS connection established from host1.domain1.com[xx.xx.xx.xx]: TLSv1 with cipher DHE-RSA-AES256-SHA (2$
$ejected: Access denied; from=<user1@domain1.com> to=<user@mydomain.com> proto=ESMTP helo=<host1.domain1.com>
postfix/smtpd[11655]: warning: restriction `_unauth_destination' after `reject' is ignored
postfix/smtpd[11655]: disconnect from host1.domain1.com[xx.xx.xx.xx]
*where user1, hos1 and domain1 are sender data
the email client is not so important cuz i can send email from every service (yahoo, gmail, etc) which does not need smtp authentication etc
|

6th November 2009, 16:05
|
|
Super Moderator
|
|
Join Date: Apr 2005
Location: Lüneburg, Germany
Posts: 31,842
Thanks: 781
Thanked 1,557 Times in 1,476 Posts
|
|
Does the MX record for your domain point to the correct server? You can check that with
Code:
dig mx yourdomain.com
Please make sure that reject_unauth_destination is one word in your main.cf.
|

6th November 2009, 16:35
|
|
Junior Member
|
|
Join Date: Nov 2009
Posts: 4
Thanks: 0
Thanked 0 Times in 0 Posts
|
|
Quote:
Originally Posted by falko
Does the MX record for your domain point to the correct server? You can check that with
Code:
dig mx yourdomain.com
Please make sure that reject_unauth_destination is one word in your main.cf.
|
man i can't believe it... the problem was that space between "reject" and "_"
thnaks!
i should by 10 pairs of glasses... thank you again!
|
| Thread Tools |
|
|
| Display Modes |
Linear Mode
|
Posting Rules
|
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts
HTML code is Off
|
|
|
All times are GMT +2. The time now is 09:48.
|
Recent comments
1 day 44 min ago
1 day 4 hours ago
1 day 6 hours ago
1 day 15 hours ago
1 day 16 hours ago
1 day 18 hours ago
1 day 19 hours ago
1 day 19 hours ago
1 day 23 hours ago
2 days 4 hours ago