<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML><HEAD>
<META http-equiv=Content-Type content="text/html; charset=iso-8859-1">
<META content="MSHTML 6.00.2800.1400" name=GENERATOR>
<STYLE></STYLE>
</HEAD>
<BODY bgColor=#ffffff>
<DIV><FONT face=Arial size=2>Hi everyone,</FONT></DIV>
<DIV><FONT face=Arial size=2></FONT> </DIV>
<DIV><FONT face=Arial size=2>In my /etc/rc.d/init.d/sendmail file, this is what 
there was originally</FONT></DIV>
<DIV><FONT face=Arial size=2></FONT> </DIV>
<DIV><FONT face=Arial size=2>start() 
{<BR>        # Start daemons.</FONT></DIV>
<DIV> </DIV>
<DIV><FONT face=Arial size=2>        echo -n 
$"Starting $prog: "<BR>        
/usr/bin/newaliases > /dev/null 
2>&1<BR>        if test -x 
/usr/bin/make -a -f /etc/mail/Makefile ; 
then<BR>          make all -C 
/etc/mail -s<BR>        
else<BR>          for i in 
virtusertable access domaintable mailertable ; 
do<BR>            if [ -f 
/etc/mail/$i ] ; 
then<BR>                
makemap hash /etc/mail/$i < 
/etc/mail/$i<BR>            
fi<BR>          
done<BR>        
fi<BR>        daemon /usr/sbin/sendmail $([ 
"x$DAEMON" = xyes ] && echo -bd) $([ -n "$QUEUE" ] && echo 
-q$QUEUE)<BR>        
RETVAL=$?<BR>        
echo<BR>        [ $RETVAL -eq 0 ] && 
touch /var/lock/subsys/sendmail</FONT></DIV>
<DIV> </DIV>
<DIV><FONT face=Arial size=2>        if ! 
test -f /var/run/sm-client.pid ; 
then<BR>        echo -n $"Starting sm-client: 
"<BR>        touch 
/var/run/sm-client.pid<BR>        chown 
smmsp:smmsp /var/run/sm-client.pid<BR>        
daemon --check sm-client /usr/sbin/sendmail -L sm-msp-queue -Ac -q 
$SMQUEUE<BR>        
RETVAL=$?<BR>        
echo<BR>        [ $RETVAL -eq 0 ] && 
touch /var/lock/subsys/sm-client<BR>        
fi</FONT></DIV>
<DIV><FONT face=Arial size=2></FONT> </DIV>
<DIV><FONT face=Arial size=2>        return 
$RETVAL<BR>}</FONT></DIV>
<DIV><FONT face=Arial size=2></FONT> </DIV>
<DIV><FONT face=Arial size=2></FONT> </DIV>
<DIV><FONT face=Arial size=2></FONT> </DIV>
<DIV><FONT face=Arial size=2></FONT> </DIV>
<DIV><FONT face=Arial size=2></FONT> </DIV>
<DIV><FONT face=Arial size=2></FONT> </DIV>
<DIV><FONT face=Arial size=2>I added the following line because the 
sm-client.pid file was being created and it's always empty, so when I shut 
sendmail down or restart it, it would fail, and I would have to kill manually. I 
added this right after the daemon sm-client line.</FONT></DIV>
<DIV><FONT face=Arial size=2></FONT> </DIV>
<DIV><FONT face=Arial size=2><BR>        ps 
waux | grep '^smmsp' | cut -d ' ' -f 5 > 
/var/run/sm-client.pid<BR></FONT></DIV>
<DIV><FONT face=Arial size=2></FONT> </DIV>
<DIV><FONT face=Arial size=2></FONT> </DIV>
<DIV><FONT face=Arial size=2></FONT> </DIV>
<DIV><FONT face=Arial size=2></FONT> </DIV>
<DIV><FONT face=Arial size=2>This worked, but could someone show me what your 
files contain. The way I did it probably isn't the best way to fix 
this.</FONT></DIV>
<DIV><FONT face=Arial size=2></FONT> </DIV>
<DIV><FONT face=Arial size=2></FONT> </DIV>
<DIV><FONT face=Arial size=2></FONT> </DIV>
<DIV><FONT face=Arial size=2></FONT> </DIV>
<DIV><FONT face=Arial size=2>Thanks,<BR>Jake McHenry</FONT></DIV>
<DIV><FONT face=Arial size=2></FONT> </DIV>
<DIV><FONT face=Arial size=2>MIS Coordinator<BR>Nittany Travel<BR><A 
href="http://www.nittanytravel.com">http://www.nittanytravel.com</A><BR>570.748.6611 
x108</FONT></DIV>
<DIV><FONT face=Arial size=2></FONT> </DIV>
<DIV><FONT face=Arial size=2></FONT> </DIV>
<DIV><FONT face=Arial size=2></FONT> </DIV>
<DIV><FONT face=Arial size=2></FONT> </DIV></BODY></HTML>