| Linode Forum https://forum.linode.com/ |
|
| How to find out what email program is running on my server. https://forum.linode.com/viewtopic.php?f=11&t=9184 |
Page 1 of 1 |
| Author: | wai_user [ Tue Jul 24, 2012 7:35 pm ] |
| Post subject: | How to find out what email program is running on my server. |
Is there anyway to find out what email program is being used on a server whether it's sendmail, postfix, exim or whatever? |
|
| Author: | AGWA [ Wed Jul 25, 2012 12:41 am ] |
| Post subject: | Re: How to find out what email program is running on my serv |
Try running Code: telnet localhost 25on the server. The mail server should reply saying what software it is. For example, sendmail would reply with this: Code: $ telnet localhost 25 If that doesn't work you can run Code: ps -efto get a list of running processes, and look through the list for exim, sendmail, postfix, etc. You can pipe that to the grep command to search for a particular process, like this: Code: $ ps -ef |grep sendmail |
|
| Author: | obs [ Wed Jul 25, 2012 1:58 am ] |
| Post subject: | Re: How to find out what email program is running on my serv |
You could also run netstat -lpnt and see what's listening on port 25 Code: netstat -lpnt In this case postfix shows as master |
|
| Author: | wai_user [ Wed Jul 25, 2012 1:51 pm ] |
| Post subject: | Re: How to find out what email program is running on my serv |
Thank you Agwa, that was very helpful. |
|
| Page 1 of 1 | All times are UTC-04:00 |
| Powered by phpBB® Forum Software © phpBB Group http://www.phpbb.com/ |
|