- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- SMTP Configuration for root on HP 11
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
10-30-2001 05:28 AM
10-30-2001 05:28 AM
I want to configure SMTP on hp 11. The basic perpose of that to recieve mails from root and all other users on my mailbox when i'm not in the office. I have a SMTP server available in the office.
Please help me.
Thanks
Manoj
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-30-2001 05:38 AM
10-30-2001 05:38 AM
Re: SMTP Configuration for root on HP 11
live free or die
harry
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-30-2001 05:39 AM
10-30-2001 05:39 AM
Re: SMTP Configuration for root on HP 11
If you want mail to be forwarded to
your personal account (outside office),
then you can setup a .forward file in
your home directory and mention your
email address in the file. For root
mails to go into your account, edit
/etc/mail/aliases and corresponding
to root entry add your mail id.
If you are looking for setting up
SMTP on your system for the first time,
then all you need to do is to run
the sendmail daemon. Go to /etc/rc.config.d/mailsrvs , and
enable the sendmail option to 1.
then run /sbin/init.d/sendmail start.
You can also run sendmail from the command
line.
Since you wanted mail within the local
system, there is no need for anything else.
Otherwise you would need to configure
/etc/mail/sendmail.cf file .
HTH
raj
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-30-2001 06:41 AM
10-30-2001 06:41 AM
SolutionIf u want entirely new set up do the following.Do the following.
(1) Get SMTP relay host name and IP address (Eg: 128.9.7.30 abcd_relay)
For sendmail to be activated to send mail to xxxxx.com.
a)put relay hostname to DS on sendmail.cf in /etc/mail directory (eg: DSabcd_relay).
b)Create nsswitch.conf in /etc by copying nsswitch.file as nsswitch.conf. (IF DNS is not enabled on ur HP server).
c)Add relay host IP entry to /etc/hosts file. (IP of abcd_relay)
d)Stop and start sendmail dameon again.
After this u can send a test mail using
# cat /etc/hosts | mailx -m -s "Test mail " mail_id@xxxx.com
If u want to get all mails to root forarded to ur mail_id then add the following in aliases file in /etc directory
# Unix Administration
root :unix_admin
unix_admin :mail_ID@xxxx.com (put ur mail id here.)
After changing the aliases file
stop and start sendmail daemon.
Hope this will help U.
Regards
Joe.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-30-2001 07:02 AM
10-30-2001 07:02 AM
Re: SMTP Configuration for root on HP 11
If you want to receive mail intended to all the users, the option you have is to create aliases. For ex., if your mail-id is manoj@yourdomain.com, edit your aliases file and keep the following (don't change the default entries).
root: manoj@yourdomain.com
Run newaliases command to get this into affect.
-Sri