- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - Linux
- >
- Sendmail questions.
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
12-20-2004 04:36 AM
12-20-2004 04:36 AM
Sendmail questions.
I am just starting with a Linux system administration, and have a few problems.
One of them is sendmail configuration.
Could you, please, answer me, can I configure sendmail application to by a relay (and send all incoming mails to Exchange server 8((( ), and is there any script or command which allows to see how my outgoing mail is going out (something like traceroute, but for emails?)
I would be really grateful for any help.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-20-2004 07:07 AM
12-20-2004 07:07 AM
Re: Sendmail questions.
Sendmail can be configured to relay mails to exchange. Sendmail has a not so easy way to be configured and has some security problems. I guess that to make sendmail to relay messages to exchange you only have to make sendmail your mta to the incomming messages (from the internet I supose) and configure exchange server as internal MX on your domain's dns server. I prefer to use Postfix because it's easier to configure and administer. You may install Postfix in all linux distributions.
But if you realy want to use sendmail see documentation at http://www.sendmail.org/
regards,
Xyko
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-20-2004 10:02 PM
12-20-2004 10:02 PM
Re: Sendmail questions.
I presume that you want to configure sendmail as a nullclient and the exchange to be mallhub of the domain. I have configure Postfix to be nullclient.
For sendmail, I think you can add this:
define(`MAIL_HUB', `-u-mailhub-host') dnl
If you want to see the procedure, I think you can keep check on /var/log/maillog:
# tail -f /var/log/maillog
Hope this help for you.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-20-2004 10:25 PM
12-20-2004 10:25 PM
Re: Sendmail questions.
Here are a document that may help you.
http://linux.iastate.edu/rhel/index.php?option=content&task=view&id=50&Itemid=33
Your exchange server must be set on relayhost parameter. But only if you decide to change sendmail by postfix.
regards,
xyko
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-21-2004 02:53 AM
12-21-2004 02:53 AM
Re: Sendmail questions.
Thank you very much for your help!