- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- HPUX: SMS notification
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
02-20-2009 12:25 AM
02-20-2009 12:25 AM
HPUX: SMS notification
I've configured sendmail on my HPUX server which enable the Dataprotector to send alert via email. I would like to know how I can send the alert via sms. Now, the email received contains a lot of details. I can't possibly send all these details to my mobile phone. So would like to have the subject of the alert to be send to my mobile phone. How can I do that?
Please advise. Thanks.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-23-2009 06:10 AM
02-23-2009 06:10 AM
Re: HPUX: SMS notification
Below is a list of the major carrier domains:
Alltel
@message.alltel.com
Cingular/AT&T
@txt.att.net
Nextel
@messaging.nextel.com
Sprint
@messaging.sprintpcs.com
SunCom
@tms.suncom.com
T-mobile
@tmomail.net
VoiceStream
@voicestream.net
Verizon
@vtext.com
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-23-2009 06:30 AM
02-23-2009 06:30 AM
Re: HPUX: SMS notification
SMS is nothing but email in the background. Every mobilephone will have SMS address of
What you need to do is call the Service provider and get the cell mail address for your mobile number. Important thing is, ask them to enable cell mail service. So that the email come to your mobile will be send to your mobile.
Once you have done it, Configure unix to grep the subject and mail it to that address.
Ganesh.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-23-2009 11:49 AM
02-23-2009 11:49 AM
Re: HPUX: SMS notification
http://forums13.itrc.hp.com/service/forums/questionanswer.do?admit=109447627+1235418485928+28353475&threadId=1264696
http://forums13.itrc.hp.com/service/forums/questionanswer.do?admit=109447627+1235418491155+28353475&threadId=182232
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-23-2009 07:05 PM
02-23-2009 07:05 PM
Re: HPUX: SMS notification
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-24-2009 05:54 AM
02-24-2009 05:54 AM
Re: HPUX: SMS notification
This traps a message "Received" from the IP and the "To" line contains either 111 or 452 and contains the string "Call Alert Message".
Procmail performs a "MATCH" on all characters starting with Message by the specified by the "\/M...."
the formail command inserts a mail header into the message (not needed for your question)
:0
*^Received: from 10.0.0.25
*^Subject:.*Call Alert \/Message.*
*^To:.*(111|452)
{
:0 f
| formail -I "X-VMAIL: alert mail"
:0c
| mailx -s "$MATCH" 9995551212@vtext.com
:0
alert_mail
}