- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: Please recomend me pop3 or imap4 client for HP...
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
01-31-2001 02:44 AM
01-31-2001 02:44 AM
I whant to make script that automaticaly mail's message when some errors or events in system appears.
P.S.
If You know example of this script send it me please; If You can:)
BR.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-31-2001 03:09 AM
01-31-2001 03:09 AM
Solutionyour question. Do you need
to send or recieve mails?
Because sending is always
done via the smtp protocol,
and this can be done even with
/bin/mail. Imap (and pop) is only
used for reading mails.
I nice imap client for unix is pine
(verion 4.x and above), which run in
a simple ascii terminal.
University of Vienna
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-31-2001 03:37 AM
01-31-2001 03:37 AM
Re: Please recomend me pop3 or imap4 client for HPUX 11.0 for hp9000
Also what about scripts?
Do you know some examples?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-01-2001 03:28 AM
02-01-2001 03:28 AM
Re: Please recomend me pop3 or imap4 client for HPUX 11.0 for hp9000
directly to the machine/mailserver which holds your address:
In a script:
#!/bin/sh
if [ event ]
then
/bin/mail pavel@pavels.mail.server < message
fi
where message is a file with your
notification.
University of Vienna
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-01-2001 03:59 AM
02-01-2001 03:59 AM
Re: Please recomend me pop3 or imap4 client for HPUX 11.0 for hp9000
As long as sendmail is setup to forward to your primary mail server it should be no problem.
Regards,
Shannon
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-01-2001 08:04 AM
02-01-2001 08:04 AM
Re: Please recomend me pop3 or imap4 client for HPUX 11.0 for hp9000
I'd try to send message to my mail server and it's realy works, but i need to send message to another internet mail server, hotmail or yahoo for example. Unfortunetly it doesn't work on my system. As i sad, my mail server just dropping my mail after looking in DNS. I saw outgoing trafiic by sniffer. He's trying to find my hpux host HPUX.HOST.PAVEL.DOMAIN.COM in DNS, and ofcause he can't. Even he will find, IP adress of my host will not be valid becase my host is in intranet and he's using my internal network adress.
How can i solve this problem?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-01-2001 08:20 AM
02-01-2001 08:20 AM
Re: Please recomend me pop3 or imap4 client for HPUX 11.0 for hp9000
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-02-2001 01:24 AM
02-02-2001 01:24 AM
Re: Please recomend me pop3 or imap4 client for HPUX 11.0 for hp9000
sendmail machine to relay the mails
it gets from your intranet box (via a firewall, I guess) and send it to your exchange server. I guess you are using masquerading, so the sendmail machine will see the IP of your firewall. Now enable sendmail to relay messages from this address. It will send them, rewriting the sender to the exchange server, which thinks it comes from the sendmail machine - which has a official DNS entry.
University of Vienna