- Community Home
- >
- Servers and Operating Systems
- >
- Legacy
- >
- Operating System - Tru64 Unix
- >
- Does sendmail mailertable exist for Tru64 UNIX 4.0...
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
12-09-2005 10:23 AM
12-09-2005 10:23 AM
Therefore I need the sendmail mailertable functionality.
For Red Hat this is well documented, but for Tru64 I can not find it.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-10-2005 11:15 AM
12-10-2005 11:15 AM
Re: Does sendmail mailertable exist for Tru64 UNIX 4.0F
Almost every major unix uses sendmail, which is an open source product.
Though HP partially re-wrote it on HP-UX there really was nothing to it other than the names and locations of some config files.
mailertable functinality should work just as it does at http://www.sendmail.org
I never touched Tru64 and may be totally off base. If it uses Sendmail you are in business.
SEP
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-11-2005 01:27 AM
12-11-2005 01:27 AM
SolutionMailertable is not enabled by default in Tru64 and there is no default location of the file.
Try doing what I described on this post:
http://forums1.itrc.hp.com/service/forums/questionanswer.do?threadId=979478
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-11-2005 09:34 AM
12-11-2005 09:34 AM
Re: Does sendmail mailertable exist for Tru64 UNIX 4.0F
OSF1 hbsitlin.bc V4.0 1229 alpha
Before my change, the m4 file contained only define & dnl commands
vi hbsitlin.m4
...
FEATURE(`mailertable',`hash -o /var/adm/sendmail/mailertable.db')dnl
make -f Makefile.cf.hbsitlin
m4 -D_ConfigFile=hbsitlin.m4 sendmail.m4 > hbsitlin.cf
diff hbsitlin.cf sendmail.cf
26c26
< FEATURE(`mailertable',`hash -o /var/adm/sendmail/mailertable.db')#(begin m4 junk)
makemap hash mailertable.db < mailertable
makemap: Type hash not supported in this version
I see 3 problems:
* The mailertable feature seems not to be available in Tru64 4.0F
* The makemap does not support the hash option
* My hardware does not support Tru64 V5
Any alternatives?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-12-2005 10:27 AM
12-12-2005 10:27 AM
Re: Does sendmail mailertable exist for Tru64 UNIX 4.0F
You could try to install the sedmail.org provided package. What exactly do you want to do? Do you really need mailertable?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-12-2005 11:01 AM
12-12-2005 11:01 AM
Re: Does sendmail mailertable exist for Tru64 UNIX 4.0F
I believe that I have found what I need, based on your hints... actually I do not need the full mailertable functionality.
What I actually need is the following:
- send all local mail directly to the hosts via ESMTP
- send mail for the company domain to the internal mail router
- send mail for internet via the external mail router
(mailertable extract from a Red Hat server)
belgacom.be relay:[exchange.bc]
.bc esmtp:%1.bc
.bgc.net esmtp:%1.bgc.net
.bgc-grp.net esmtp:%1.bgc-grp.net
And I have been able to implement this simple mailertable logic with the following m4 input file:
define(_MyDomain, {bc})dnl
define(_ParentDomain, {belgacom.be})dnl
define(_MyDomains, {bc bgc.net bgc-grp.net})dnl
define(_ExportedName, {belgacom.be})dnl
# internet gateway
define(_TransINET, {smtp})dnl
define(_GateINET, {hbsitlab.bc})dnl
# intranet gateway
define(_TransParent, {smtpr})dnl
define(_GateParent, {exchange.bc})dnl