- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- sendmail 8.9.3.1 and sending to multiple domains
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
08-28-2002 06:18 AM
08-28-2002 06:18 AM
Got the above sendmail version on HPUX 11.00. Trying to setup to mail so that the mail being sent will be routed to the appropriate smart host.
In other words;
mail destined for domainA will be routed and delivered through the smart host at domainA. mail for domainB will be routed and delivered through the smart host at domainB. All other mail will be routed and delivered through smart host at domainC.
How can I?
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-28-2002 06:22 AM
08-28-2002 06:22 AM
SolutionThis may be helpful:
http://support2.itrc.hp.com/service/cki/docDisplay.do?docLocale=en_US&docId=200000062909644
Doc ID - KBRC00008883
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-28-2002 06:43 AM
08-28-2002 06:43 AM
Re: sendmail 8.9.3.1 and sending to multiple domains
If you want to override this behavior (and the sendmail host we're talking about is a gate or relay for the domains in question), use a mailertable entry like
a.com smtp:[name.of.the.smart.relay]
on HP-UX, use somthing like
makemap dbm /etc/mail/mailtertable < /etc/mail/mailertable
Don't forget to uncomment the mailertable rulesets in sendmail.cf
BTW, is this configuration, the host were on now generally appears as an MX for the domain in question (while the smartrelay doesn't).
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-28-2002 07:32 AM
08-28-2002 07:32 AM
Re: sendmail 8.9.3.1 and sending to multiple domains
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-28-2002 07:42 AM
08-28-2002 07:42 AM
Re: sendmail 8.9.3.1 and sending to multiple domains
a.com smtp:[1.2.3.4]
b.com smtp:[1.2.3.5]
Relay everything else to c.
BTW, mailertable should use anthing that's available to the resolver (/etc/hosts, DNS, etc.) as long as resolv.conf /nsswitch.conf are correct.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-28-2002 09:17 AM
08-28-2002 09:17 AM
Re: sendmail 8.9.3.1 and sending to multiple domains
Many thanks for the assistance!