- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- sendmail !
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
Discussions
Discussions
Discussions
Forums
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
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-10-2002 01:04 PM
тАО09-10-2002 01:04 PM
sendmail !
I'm triying to find information about how can I configure the sendmail or something similar in HPUX for send messages to determinate e-mail address.
My intention is send a file generated in HPUX to determinate e-mail account (user@company.com). I have HP-UX 11.00.
Somebody know when can i start ?.
Best Regards !
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО09-10-2002 01:19 PM
тАО09-10-2002 01:19 PM
Re: sendmail !
start from this link,
http://docs.hp.com/cgi-bin/fsearch/framedisplay?top=/hpux/onlinedocs/B2355-90685/B2355-90685_top.html&con=/hpux/onlinedocs/B2355-90685/00/00/35-con.html&toc=/hpux/onlinedocs/B2355-90685/00/00/35-toc.html&searchterms=sendmail&queryid=20020910-142312
Then do a search on the forum solution to learn more about using relay and other sendmail configuration issues.
Hope this helps.
Regds
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО09-10-2002 01:36 PM
тАО09-10-2002 01:36 PM
Re: sendmail !
mailx -s "Subject or Title" email_address@domain <
this will take the contents of a message file and make it the input to a mailx command.... if you have a standard install of sendmail, it may not need much. Make sure the aliases file has what you need. If you make a change, run newaliases to create a new alias database for sendmail. If you are not chasing down security stuff with sendmail, the main thing that may need a tweak is the smart relay variable in the sendmail.cf file.... DS
good luck
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО09-10-2002 01:47 PM
тАО09-10-2002 01:47 PM
Re: sendmail !
mailx -s "subject text" userid@test.com < filename
Don't forget to assign points if the answer suits you.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО09-11-2002 05:21 AM
тАО09-11-2002 05:21 AM
Re: sendmail !
I also had to do this recently, and the forum was the place to start.
Steps I took:
1) Change sendmail.cf settings, (in HP-UX 11.0 this is in /etc/mail) so the the "Smart" Relay Host entry is set to your relay server, (it was exchange 5.5 here)the entry should be DS
2) Edit /etc/hosts so the mail (relay) server is listed, using the fully qualified domain name if applicable.
3) You may need to have an entry in nsswitch.conf to resolve DNS. I needed the entry
"hosts: files"
4) Stop/Start sendmail daemon
# /sbin/init.d/sendmail stop
# /sbin/init.d/sendmail start
This should do it. Hope this helps as the forum helped me.
John