- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- smtp software for HPUX 11.00
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
03-20-2002 09:16 PM
03-20-2002 09:16 PM
smtp software for HPUX 11.00
Where I can get a SMTP software for HPUX 11.00?
Thanks in advance.
Bal Biyo
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-20-2002 09:46 PM
03-20-2002 09:46 PM
Re: smtp software for HPUX 11.00
Hope this helpful!
Regards,
Li Chunfeng
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-20-2002 10:00 PM
03-20-2002 10:00 PM
Re: smtp software for HPUX 11.00
http://hpux.connect.org.uk
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-20-2002 10:31 PM
03-20-2002 10:31 PM
Re: smtp software for HPUX 11.00
smtp is inbuilt in hp OS(in fact in all unix)
you can startstop by
#/sbin/init.d/sendmail start/stop
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-20-2002 11:00 PM
03-20-2002 11:00 PM
Re: smtp software for HPUX 11.00
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-21-2002 03:14 AM
03-21-2002 03:14 AM
Re: smtp software for HPUX 11.00
If you simply want the sendmail server to forward all messages to the exchange server, then the DS macro is all you need to configure. Are you getting an error in /var/adm/syslog/mail.log when you try and send a message? There may be some configuration necessary on the Exchange side for it to accept SMTP from this host.
Regards,
Steve
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-21-2002 04:52 PM
03-21-2002 04:52 PM
Re: smtp software for HPUX 11.00
Regards,
Bal Biyo
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-22-2002 01:05 AM
03-22-2002 01:05 AM
Re: smtp software for HPUX 11.00
Is you sendmail a relay ? I mean a Mail Transfert Agent between your exchange server and internet or another netwok ?
Or is your sendmail a mail server/client in your network ?
In the first case, you have to specify e relay-domains file :
in sendmail.cf uncomment or add the line :
FR-o /etc/mail/relay-domains
and in the file /etc/mail/relay-domains
you specify the domain name for which you authorize relay.
ex. yourdomain.com
If you manage more than 1 domain, add the others.
warning : this command works only for releases after 8.6 of sendmail.
An other parameter to add is a /etc/mail/virtusertable file in the sendmail.cf to specify that users to your domain will be transfered to your exchange server.
this is to manage incoming email
and last but not least :
/etc/mail/access where you specify the name of you exchange server, and the word RELAY to accept relaying this server !!!
(it works also with the domain name !)
for this file in sendmail.cf :
Kaccess hash /etc/mail/access
or something like that (it depends of the release of sendmail you are using !!)
Don't forget to manage masquerading for outgoing email (if you go to internet !!).
To accept email to local user, user the Cm in sendmail.cf
I know it's not very easy, but you can do all what you want with sendmail !!! You just have to spend time to see how ot works !