• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

How do i check which version of Sendmail i have installed on Linux?

hoihtah

Diamond Member
a newbie question for all you gurus.

i have linux 7.3 installed on a webserver.
it also has sendmail installed. since i didn't do the installation, i have no idea which version of sendmail is installed on the machine?

what's a linux command that displays which version i have on that server?

thanx
 
This should show you which sendmail rpm is installed:

rpm -qa | grep -i sendmail

the bits...
rpm -qa : This will list all of the rpms on the system
| : pipe: send the output of the previous command to the next command
grep -i sendmail: look for the string "sendmail" in the input stream and return any line that contains it. -i makes it case insensitive
 
Back
Top