- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Sending a message to a pager
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
11-08-2000 09:09 AM
11-08-2000 09:09 AM
Sending a message to a pager
gets to filled or if the power if lost.
Are ther any ideas on how to do this?
Thanks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-08-2000 09:14 AM
11-08-2000 09:14 AM
Re: Sending a message to a pager
This assumes that sendmail is always up and running. Some other packages available use a modem hooked up to a system. When a condition is met, a page is sent via the modem to the paging service. One such package is TelAlert. This is a cost package but should do what you want.
There are many avenues available and the choice will depend on your environment.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-08-2000 09:18 AM
11-08-2000 09:18 AM
Re: Sending a message to a pager
check the thread:
http://my1.itrc.hp.com/cm/QuestionAnswer/1,1150,0xeff06c96588ad4118fef0090279cd0f9,00.html
I have a script that will generate a page to a numeric pager. In combination with a cron job that does regular checks, you can get it to page different call codes.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-08-2000 09:42 AM
11-08-2000 09:42 AM
Re: Sending a message to a pager
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-08-2000 10:15 AM
11-08-2000 10:15 AM
Re: Sending a message to a pager
Here's an example:
# mailx -s "subject" recepient_email_address < logfile_which_contains_message
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-08-2000 01:34 PM
11-08-2000 01:34 PM
Re: Sending a message to a pager
Rick G - Do I have to purchase a mailing product?
Kofi A. - I looked at the thread and did not see how to send a numberic page?
Alan R. & Fnhalili - How do you know if the server is configured for sendmail. I greped
for sendmail and received "sendmail: accepting connections:" does this mean it is?
I feel as though I'm missing something
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-08-2000 01:51 PM
11-08-2000 01:51 PM
Re: Sending a message to a pager
However, if you have a flaky sendmail process you may want to purchase a product that will contact a modem on the system, the modem dials out to the pager, and the page message is sent. (This is only if you feel sendmail is not a good enough process for the procedure.)
Initial, nothing is needed for purchasing. sendmail is part of the UNIX distribution. You may want to test this using the info from the other messages in this post. That is, sending pages out via the sendmail process.
Check with your paging service to see if they are setup for pages via e-mail. Most are but not all of them.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-08-2000 01:53 PM
11-08-2000 01:53 PM
Re: Sending a message to a pager
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-08-2000 02:03 PM
11-08-2000 02:03 PM
Re: Sending a message to a pager
# date | mailx -s "Local sendmail Test" joe
If this works then you have sned mail working locally.
2) Test sendmail for outside mail
# mailx -s "Test from my local server" joe@hotmail.com < test_file
If this works then you can send email outside.
3) Most pagers by default ( just ask for the plan ...) supports email ... let's say you can page a pager 123456@pagerservice.net
# mailx -s "test mail" 123456@pagerservice.net < test_file
If this works then your ok and you don't have to buy any paging software.....enjoy
- fnhalili