- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- System alerts as email..
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
06-12-2007 08:37 PM
06-12-2007 08:37 PM
System alerts as email..
I want to configure the STM alerts as email.
how can i start configuring this.?
tks in advance.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-12-2007 11:25 PM
06-12-2007 11:25 PM
Re: System alerts as email..
emsmail: root@localhost,Mycorpbox@ourdomain
and via monconfig I modified alerts that send mail to root to send mail to emsmail - thus I have it in my box and local copy on host.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-13-2007 12:44 AM
06-13-2007 12:44 AM
Re: System alerts as email..
email id . But i thnk my mail service not started .is it required to confiure sendmail service ...?
thanks in advance.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-13-2007 01:15 AM
06-13-2007 01:15 AM
Re: System alerts as email..
Ummm.....Yes. In order to send e-mail from your HP-UX machine there are things that need to be configured. Sendmail does not necessarily need to be running, but options in /etc/mail/sendmail.cf need to be configured.
You may just need to set up your smart-relay host in sendmail.cf (the DS macro line). The sendmail.cf file is documented very well. Have a read about DS and see if that helps.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-13-2007 05:45 PM
06-13-2007 05:45 PM
Re: System alerts as email..
In sendmail.cf find a line that looks like
# "Smart" relay host (may be null)
DS
Change it to
DSyour-mail-server.your-domain
Be sure "your-mail-server.your-domain" can be resolved to IP via /etc/hosts or DNS
you can test sending in this way:
sendmail -v your-address
then type word "test", press Enter, type dot, press Enter.
sendmail will show something like this:
your-address... Connecting to your-mail-server.your-domain. via relay...
220 your-mail-server.your-domain ESMTP Postfix
>>> EHLO your-host
250-your-mail-server.your-domain
250-PIPELINING
250 8BITMIME
>>> MAIL From:
250 Ok
>>> RCPT To:
250 Ok
>>> DATA
354 End data with
>>> .
250 Ok: queued as XXXXXXXXXX
your-address... Sent (Ok: queued as XXXXXXXXXX)
Closing connection to your-mail-server.your-domain
>>> QUIT
221 Bye
Or it will show error, that can help you diagnose your config problems.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-13-2007 05:48 PM
06-13-2007 05:48 PM
Re: System alerts as email..
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-14-2007 09:26 AM
06-14-2007 09:26 AM
Re: System alerts as email..
monconfig and sendmail.cf for this..
once again thanks