- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - Linux
- >
- Re: SMTP Services
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
02-24-2004 08:32 AM
02-24-2004 08:32 AM
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-24-2004 08:45 AM
02-24-2004 08:45 AM
Re: SMTP Services
the easiest will be (assuming you are logged in to this server)
telnet 127.0.0.1 25
If you can connect and talk to port 25 you have an SMTP server listening.
Else /etc/[x]inted.conf should contain the information if the service is supposed to be started and which software you want to run.
Greetings, Martin
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-24-2004 09:23 AM
02-24-2004 09:23 AM
Solutionrpm -q sendmail postfix
These are the two main SMTP services that are installed on a standard RH box. On a RH7.2 box, it'll be sendmail by default.
If you want to use it just for your local machine, just starting it should be sufficient (if it isn't already):
service sendmail start
chkconfig sendmail on
The second command will make it start after a reboot.
If you want SMTP to be open to the world however, you'll need to make some changes to the configuration, after updating sendmail to the latest version using up2date or pulling the updated RPM's yourself from ftp.redhat.com/pub/redhat/updates/7.2/en/os/i386/sendmail* (or from your favourite mirror).
Once that is done, you'll need to modify the /etc/mail/sendmail.mc, commenting out the DaemonPortOptions line.
Sendmail config is a beast though.. Get back to us if you need more details.
NOTE: www.tldp.org is your friend ;)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-24-2004 09:35 AM
02-24-2004 09:35 AM
Re: SMTP Services
To run it as a deamon
chkconfig --level 12345 sendmail on
If the server is exposed to the Internet it is vulnerable to use as a smtp relay server.
It is very important to take the following basic steps after activation.
Makes sure there are no servers set for relay in /etc/mail/access
If you are doing virtual domain hosting have no entries in /etc/aliases, /etc/mail/virtusertable /etc/mail/genericstable with the @domainname.com entry.
This will let someone connect to your server on port 25 and send mail to anyone on the domain and cc hundreds of people.
Its a lot of work to secure an smtp server. Once complete, it does prove to be a very robust tools.
Take a look at recent sendmail threads. You will find them interesting.
SEP
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-25-2004 01:12 AM
02-25-2004 01:12 AM
Re: SMTP Services
Now.. i want to configure my sendmail for send email to other sites on my domain. i use sendmail edruiz@taca.com but messages are missing. want changes can i do?
Pls help me
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-26-2004 12:28 AM
02-26-2004 12:28 AM
Re: SMTP Services
www.qmail.org