This is a discussion on sendmail.sendmail? within the Linux General forums, part of the Linux Forums category; I'm setting up a newly configured server from the hosting provider, and the sendmail file is in /usr/lib/...
|
|||||||
| FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
|
|||
|
I'm setting up a newly configured server from the hosting provider, and the
sendmail file is in /usr/lib/sendmail.sendmail I'm not sure why sendmail.sendmail is repeating. Is there some configuration remaining or do I just need to rename the file to sendmail? Thanks |
|
|||
|
Dan DeLion <noemail@northpole.nowhere> wrote:
> I'm setting up a newly configured server from the hosting provider, and the > sendmail file is in > /usr/lib/sendmail.sendmail > I'm not sure why sendmail.sendmail is repeating. Is there some > configuration remaining or do I just need to rename the file to sendmail? > Thanks Actually, if your setup is similar to mine, the sendmail binary is in /usr/sbin/sendmail. I have the /usr/lib/sendmail.sendmail too. I never did anything with it though. Not sure what it's for. Doug -------- Senior UNIX Admin O'Leary Computer Enterprises dkoleary@attbi.com (w) 630-904-6098 (c) 630-248-2749 resume: http://home.attbi.com/~dkoleary/resume.html |
|
|||
|
dkoleary@attbi.com wrote:
> Dan DeLion <noemail@northpole.nowhere> wrote: > > I'm setting up a newly configured server from the hosting provider, and the > > sendmail file is in > > /usr/lib/sendmail.sendmail > > I'm not sure why sendmail.sendmail is repeating. Is there some > > configuration remaining or do I just need to rename the file to sendmail? > > Thanks > Actually, if your setup is similar to mine, the sendmail binary > is in /usr/sbin/sendmail. I have the /usr/lib/sendmail.sendmail too. > I never did anything with it though. Not sure what it's for. Sounds as if you'd run RH, if you take a closer look: $ ls -al /usr/sbin/sendmail* lrwxrwxrwx 1 root root 21 Mar 16 00:33 /usr/sbin/sendmail -> /etc/alternatives/mta -rwxr-sr-x 1 root smmsp 704770 Mar 31 00:58 /usr/sbin/sendmail.sendmail $ ls -al /etc/alternatives/mta lrwxrwxrwx 1 root root 27 Mar 31 01:00 /etc/alternatives/mta -> /usr/sbin/sendmail.sendmail $ rpm -qf /usr/sbin/sendmail.sendmail sendmail-8.12.9-1.73 It's AFAIR used to switch MTA via 'setup'. -- Michael Heiming - RHCE Remove +SIGNS and www. if you expect an answer, sorry for inconvenience, but I get tons of SPAM |
|
|||
|
"d" == dkoleary@attbi.com <dkoleary@attbi.com>:
d> Actually, if your setup is similar to mine, the sendmail binary d> is in /usr/sbin/sendmail. I have the /usr/lib/sendmail.sendmail too. d> d> I never did anything with it though. Not sure what it's for. You are supposed to tell all your MUA programs to use /usr/sbin/sendmail, which is a link to the real sendmail program (eg. original sendmail, qmail's sendmail etc). If/when you decide to switch MTA's and sendmail functionality is then provided by some other program, all you have to do is update the link, instead of reconfiguring all the MUA's. |