- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - Linux
- >
- sendmail configuration
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
11-26-2005 07:00 PM
11-26-2005 07:00 PM
sendmail configuration
i need to configure th sendmail to as a gatway,that a mails from a certain domain to go to a certain IP and another mails to go to another IP,how to make this.
BR,
Faida
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-26-2005 08:56 PM
11-26-2005 08:56 PM
Re: sendmail configuration
/etc/mail/virtusertable
put 2 entries there:
@first_source.com @first_dest.com
@second_source.com @second_dest.com
after that cd to /etc/mail
and do: make
or
restart the sendmail service with
service sendmail restart
Note that putting these entries in
/etc/mail/virtusertable means that you're gonna need dns server that "knows" about source and destination domains.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-26-2005 09:00 PM
11-26-2005 09:00 PM
Re: sendmail configuration
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-26-2005 09:15 PM
11-26-2005 09:15 PM
Re: sendmail configuration
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-27-2005 10:50 PM
11-27-2005 10:50 PM
Re: sendmail configuration
domain1.com smtp:server1.domain.com
domain2.com smtp:server2.domain.com
Specify the FQDN instead of the ip address, or use:
domain1.com smtp:[192.168.1.1]
domain2.com smtp:[192.168.2.100]