- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: Sendmail not function with an remote user of e...
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
09-20-2004 11:17 AM
09-20-2004 11:17 AM
Sendmail not function with an remote user of exchange server
Sep 20 16:00:03 itanium sendmail[4396]: i8KL03e04396: to=user@domain.com, delay=00:00:00, mailer=relay, pri=0,
relay=domain.com, dsn=4.4.3, stat=Transient parse error -- message queued for future delivery
Sep 20 16:00:03 itanium sendmail[4396]: i8KL03e04396: from=root, size=6, class=0, nrcpts=0, msgid=<
200409202100.i8KL03e04396@itaniumname.com>, relay=root@localhost
Sep 20 16:00:03 itanium sendmail[4396]: i8KL03e04396: to=user@domain.com, delay=00:00:00, mailer=relay, pri=6,
dsn=4.4.3, stat=queued
I have this in the /etc/hosts
128.1.4.155 itaniumname.com itanium
127.0.0.1 localhost loopback
128.1.40.3 domain.com
I write this in /etc/mail/sendmail.cf
# "Smart" relay host (may be null)
DSdomain.com
Help me please!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-20-2004 11:25 AM
09-20-2004 11:25 AM
Re: Sendmail not function with an remote user of exchange server
# vi /etc/hosts
128.1.4.155 itaniumname.com itanium
127.0.0.1 localhost loopback
128.1.40.3 exchsvr.domain.com
#
Try pinging exchsvr.domain.com
# ping exchsvr.domain.com
You should be able to ping the servername
# vi /etc/mail/sendmail.cf
DSexchsvr.domain.com
#
# sendmail -v user@domain.com
..
^D
#
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-20-2004 11:40 AM
09-20-2004 11:40 AM
Re: Sendmail not function with an remote user of exchange server
ip_addy exchange.domain.com
its not a sure bet that the domain server is the exchange server.
Better of though with this in sendmail.cf
DS
[128.1.40.3]
the exchange server must be explicitly set up to allow relays from 128.1.4.155
then:
/sbin/init.d/sendmail stop
/sbin/init.d/sendmail start
Other tools:
mailq
# any mail backed up in the itanium boxes mail queue
sendmail -v -q
# attempts to process any mail queue interactively with diagnosis.
sendmail -v -d8.99 -d38.99 user@domain.com
type some text
.
These diagnostics will give you a full picture of the situation.
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
09-20-2004 11:46 AM
09-20-2004 11:46 AM
Re: Sendmail not function with an remote user of exchange server
# sendmail -v user@domain.com
domain.com: Name server timeout
user@domain.com... Transient parse error -- message queued for future delivery
user@domain.comt... queued
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-20-2004 11:56 AM
09-20-2004 11:56 AM
Re: Sendmail not function with an remote user of exchange server
You can change the DS directive to the ip address of the exchange server and restart sendmail(see my previous post)
or you can change your networking so that you resolve the exchange server, also shown in my post.
Additionally, make sure /etc/nsswitch.conf points to files for host name resolution so that your /etc/hosts file actually works.
An alternative that sendmail works well with is go to dns name resolution in /etc/nsswitch.conf and set up /etc/resolv.con f to contain a valid dns server in your organization.
resolv.conf looks like this.
ip_address_of_dns_server1
ip_address_of_dns_server2
ip_address_of_dns_server3
search domain.com
example
192.168.0.20
192.168.0.21
192.168.0.29
search domain.com
SEP
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com