- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- sendmail configuration
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
10-02-2001 04:03 PM
10-02-2001 04:03 PM
Unable to get canonical name of client, err = 0
Where can I look into (/etc/mail/sendmail.cf maybe?) to correct this.
E.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-02-2001 04:36 PM
10-02-2001 04:36 PM
Re: sendmail configuration
-Santosh
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-03-2001 03:38 AM
10-03-2001 03:38 AM
Re: sendmail configuration
This file should contain all possible names that "this" host might be known as.
if you have a host entry like
127.0.0.1 localhost
192.192.100.20 myhost MYHOST backuphost
example:
localhost
myhost
myhost.foo
myhost.foo.com
MYHOST
MYHOST.foo
MYHOST.foo.com
backuphost
backuphost.foo
backuphost.foo.com
stop and start sendmail
/sbin/init.d/sendmail stop
/sbin/init.d/sendmail start
(or try kill -HUP on the sendmail process)
to activate.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-03-2001 03:29 PM
10-03-2001 03:29 PM
Re: sendmail configuration
I am still getting the same error. I did went through your change requests and even rebooted my box!
I did notice however that once I run:
/usr/lib/sendmail -d0.4,37.1
the system returns:
======= SYSTEM IDENTITY (after readcf)===
(short domain name) $w = abcsrvr
(canonical domain name) $j = $w.$Y.$D
(subdomain name) $m = abcsrvr.MY.DOMAIN
(node name) $k = abcsrvr
=================================
What is that $j variable? Could it be configurable somewhere?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-03-2001 03:34 PM
10-03-2001 03:34 PM
SolutionLook in /etc/mail/sendmail.cf. Search for $j and you will see the $j macro and a pretty good explanation of what it does and how to set it. Before you change sendmail.cf make a safe copy so that you don't kill sendmail by accident. Make your changes to sendmail.cf and stop/start sendmail and your syslog messages should disappear.
Regards, Clay
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-03-2001 05:29 PM
10-03-2001 05:29 PM
Re: sendmail configuration
What does your /var/adm/syslog/mail.log
tell you? Also are you trying to send mail to an outside box on your network or just local users? What output do you get when you do
echo test | sendmail -v root@localhost
or
echo test | sendmail -v user@anydomain.com
Richard
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-04-2001 09:42 AM
10-04-2001 09:42 AM
Re: sendmail configuration
You've got the missing link! Thanks for the tip. Also thanks to all participating peers for your ideas.
E.