- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- box to box smtp relay
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-25-2002 10:52 AM
03-25-2002 10:52 AM
box to box smtp relay
Scenario:
o Box A needs to send mail to TARGET (a relay host) but is not allowed to reach it/ping it.
o Box A can reach Box B
o Box B CAN reach the TARGET.
how can I make Box B accept and forward mail from Box A to TARGET?
That is:
mail on Box A -> relayed by Box B -> TARGET?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-25-2002 10:59 AM
03-25-2002 10:59 AM
Re: box to box smtp relay
All you should need to do is enable the 'Smart Relay' macro on BoxA, viz:
DSBoxB
You may also need to define the Dj macro if you are not using DNS and thus don't have fully qualified hostnames.
in /etc/mail/sendmail.cf. After making the changes stop/start sendmail on Box A and you should be done.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-25-2002 11:08 AM
03-25-2002 11:08 AM
Re: box to box smtp relay
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-25-2002 11:09 AM
03-25-2002 11:09 AM
Re: box to box smtp relay
NAA07171: Ruleset check_rcpt (
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-25-2002 11:09 AM
03-25-2002 11:09 AM
Re: box to box smtp relay
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-25-2002 11:13 AM
03-25-2002 11:13 AM
Re: box to box smtp relay
Please correct me if I am wrong:
It sounds like there is a firewall between box A and box B. If so, make sure your Firewall Admin will allow this traffic as well as associated traffic through, since you say that Box A cannot ping Box B, but can send mail to it because in addition to allowing traffic on port 25 (sendmail), I believe it also has to allow ping to get through also, since both machines have to send messages and acknoledgements before it even attempts to send the message(s).
Hope this helps.
Mike-
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-25-2002 11:18 AM
03-25-2002 11:18 AM
Re: box to box smtp relay
I did not say that Box A and Box B couldn't ping each other.
Box A cannot reach/ping TARGET RELAY HOST (For sake of discussion let's call that BOX C)
A can ping B
A cannot ping C
B can ping A
B can ping C
C can ping B
C cannot ping A
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-25-2002 11:24 AM
03-25-2002 11:24 AM
Re: box to box smtp relay
o Box A needs to send mail to TARGET (a relay host) but is not allowed to reach it/ping it.
Mike
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-25-2002 11:28 AM
03-25-2002 11:28 AM
Re: box to box smtp relay
Kevin: You said modify FR in sendmail.cf.... and then something about a relay-clients file??
I'm still getting:
NAA07171: Ruleset check_rcpt (
I don't see an FR macro in my sendmail.cf or a relay-clients file in /etc/mail.
How do I resolve/bypass/configure Ruleset check_rcpt, or tell the box to relay for one client only?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-25-2002 11:30 AM
03-25-2002 11:30 AM
Re: box to box smtp relay
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-25-2002 11:33 AM
03-25-2002 11:33 AM
Re: box to box smtp relay
Mike
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-25-2002 11:52 AM
03-25-2002 11:52 AM
Re: box to box smtp relay
What you need to do is fill in /etc/mail/access on the receiving machine (boxB) to allow relay from boxA.
You can specify either dotted-quad or hostname format (dotted quad is more secure) in the /etc/mail/access file with the term RELAY like this:
10.1.2.1 RELAY
Then you have to make the database from it (a process similar to aliases) with:
makemap hash /etc/mail/access
It should take effect immediately.
Good luck!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-25-2002 11:56 AM
03-25-2002 11:56 AM
Re: box to box smtp relay
Mike-