LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Newbie (https://www.linuxquestions.org/questions/linux-newbie-8/)
-   -   How to setup Mail Relay server on SUSE Linux ES9 using Postfix 2.1.2 (https://www.linuxquestions.org/questions/linux-newbie-8/how-to-setup-mail-relay-server-on-suse-linux-es9-using-postfix-2-1-2-a-651444/)

su-se 06-24-2008 11:31 PM

How to setup Mail Relay server on SUSE Linux ES9 using Postfix 2.1.2
 
Hi All,

Please find below the scenario, which I need to setup. Please help me to setup the same.

OS : SUSE Linux ES9
SMTP using Postfix 2.1.2
Bind : ver 9

Simple Mail Transfer Protocol Relay

In order to relay mail to the XYZ corporate email servers, the following relays must be configured:

SMTP Relay Configuration
Relay Description

mail1.pif.XYZ.com.au XYZ Corporate
mail2.qif.XYZ.com.au XYZ Corporate
mail3.pif.XYZ.com.au XYZ Corporate
mail4.qif.XYZ.com.au XYZ Corporate
exteralmail.com XYZ

Below are the configuration which needs to be done.

1) In-Bound Email
The SMTP server will not receive any email from the Internet, so Postfix must be configured to block in-bound emails.

2) Out-Bound Email
The SMTP server will be configured to masquerade ‘XYZ.com’ as the default domain name for Out-Bound emails.

I would be grateful if anyone can help me to setup the above scenario.

Thanks & Regards,
Su-Se
(MB)

billymayday 06-25-2008 12:16 AM

Have you read any of the docs on the postfix website (I'd guess not given question 1)

I think the second part you can achieve with simple transport maps (but your relay description doesn't make lot of sense). You can probably achieve (1) with the simple use of inet_interfaces in main.cf. You could do it through iptables pretty simply too

There's a whole section on address rewriting on the postfix documentation page. You should start there.

su-se 06-25-2008 02:44 AM

Thanks for you reply.

I am Newbie to this SUSE Linux.

I had read some docs regarding Postfix configuration, but I am not able to find the exact details.

Could you please send the steps how to configure it.

Appreciate you kind help.

Regards,
Su-Se
(MB)

billymayday 06-25-2008 03:30 AM

No, but read

http://www.postfix.org/postconf.5.html#inet_interfaces

and

http://www.postfix.org/STANDARD_CONF...ON_README.html

then

http://www.postfix.org/ADDRESS_REWRITING_README.html

Once you've done that, come back with some specific questions with detail on what you've tried.

su-se 06-25-2008 06:03 AM

Thanks for the links.

I will go through and let you know if any questions.

Regards,
Su-Se
(MB)

su-se 08-06-2008 11:20 PM

I configured all the required parameters. Now i need to make this as DNS server for external name resolution (for ex: www.google.com) in production stage and I need an another server has DNS client in another stage.

Can you please help how to configure DNS server and DNS client as well.

Cheers,
Su-se

su-se 09-11-2008 06:58 PM

I am getting the below error while sending mail from client maching. Can anyone help me.


bash-3.00# telnet 10.80.0.112 25
Trying 10.80.0.112...
Connected to 10.80.0.112.
Escape character is '^]'.
220 example.com ESMTP Postfix
EHLO testingserver.com
250-example.com
250-PIPELINING
250-SIZE 10240000
250-VRFY
250-ETRN
250-AUTH LOGIN
250 8BITMIME
mail from: <sendinguser@otherdomain.com>
250 Ok
rcpt to: <recepientuser@mydomain.com>
554 <recepientuser@mydomain.com>: Relay access denied

I appreciate your kind help.

billymayday 09-11-2008 07:23 PM

How are you authenticating with example.com (I assume that is a server you are trying to relay through)?

Can you post the output of "postconf -n"

bsswartz 09-11-2008 07:30 PM

Quote:

Originally Posted by su-se (Post 3277716)
rcpt to: <recepientuser@mydomain.com>
554 <recepientuser@mydomain.com>: Relay access denied


If postfix is supposed to accept mail for delivery to users, then your configuration does not correctly specify that mydomain.com is a destination domain of virtual domain.

If postfix is supposed relay mail to another domain, your configuration fails to specify that mydomain.com is a relay domain.

If postfix is supposed to relay mail from local users to the internet, you have failed to specify that the server should accept outbound relay mail from the connecting subnet.

billymayday 09-11-2008 08:06 PM

Quote:

Originally Posted by bsswartz (Post 3277744)
If postfix is supposed to accept mail for delivery to users, then your configuration does not correctly specify that mydomain.com is a destination domain of virtual domain.

If postfix is supposed relay mail to another domain, your configuration fails to specify that mydomain.com is a relay domain.

If postfix is supposed to relay mail from local users to the internet, you have failed to specify that the server should accept outbound relay mail from the connecting subnet.

I suspect from the chatter that the OP is trying to relay from his server via example.com.

If that's the case, the relevant doc would be http://www.postfix.org/SASL_README.html#client_sasl

We will see.

su-se 09-12-2008 04:54 AM

Hi Guys,

Thanks for your valuable reply.

Here is the output of postconf -n

Server2:~ # postconf -n
command_directory = /usr/sbin
config_directory = /etc/postfix
daemon_directory = /usr/lib/postfix
debug_peer_level = 2
html_directory = /usr/share/doc/packages/postfix/html
ignore_mx_lookup_error = no
inet_interfaces = all
local_transport = error:local mail delivery is disabled
mail_owner = postfix
mailq_path = /usr/bin/mailq
manpage_directory = /usr/share/man
masquerade_domains = $mydomain
mydomain = mydomain.com
myhostname = server2.mydomain.XYZ.com
mynetworks = hash:/etc/postfix/network_table
myorigin = $mydomain
newaliases_path = /usr/bin/newaliases
queue_directory = /var/spool/postfix
readme_directory = /usr/share/doc/packages/postfix/README_FILES
relay_domains = hash:/etc/postfix/relay_domains_table
relayhost =
sample_directory = /usr/share/doc/packages/postfix/samples
sendmail_path = /usr/sbin/sendmail
setgid_group = maildrop
smtpd_client_restrictions =
smtpd_helo_restrictions = permit_mynetworks, warn_if_reject reject_non_fqdn_hostname, reject_invalid_hostname, permit
smtpd_recipient_restrictions = permit_mynetworks, permit_sasl_authenticated, reject_unauth_destination, permit
smtpd_sasl_auth_enable = yes
smtpd_sender_restrictions = permit_mynetworks, warn_if_reject reject_non_fqdn_sender, reject_unknown_sender_domain, reject_unauth_pipelining, permit
transport_maps = hash:/etc/postfix/transport
unknown_local_recipient_reject_code = 550


Please find below the relay domains table

Server2:~# cat /etc/postfix/relay_domains_table
mail1.pif.XYZ.com.au XYZ Corporate
mail2.qif.XYZ.com.au XYZ Corporate
mail3.pif.XYZ.com.au XYZ Corporate
mail4.qif.XYZ.com.au XYZ Corporate
externalmail.com XYZ

And here is the output of transport file

Server2:~#cat /etc/postfix/transport
mydomain.XYZ.com :
.mydomain.XYZ.com :
* smtp:[externalmail.com]

NOTE: Mail should go directly to internet( for ex: gmail.com or yahoo.com) using mail relay server (ie, server2) from Client machine.


All times are GMT -5. The time now is 03:29 AM.