Hi there.. I'm still can't startup my exim..
I found this script and I have some question about it...
source /etc/init.d/functions
on slackware.. Which is my "source"???
#!/bin/sh
# Begin /etc/init.d/exim
#
# Include the functions declared in the /etc/init.d/functions file
#
source /etc/init.d/functions
case "$1" in
start)
echo -n "Starting SMTP daemon: Exim"
loadproc /usr/local/bin/exim -bd
;;
stop)
echo -n "Stopping SMTP daemon: Exim"
killproc /usr/local/bin/exim
;;
reload)
echo -n "Reloading SMTP daemon: Exim"
reloadproc /usr/local/bin/exim -HUD
;;
restart)
$0 stop
/usr/bin/sleep 1
$0 start
;;
status)
statusproc /usr/local/bin/exim
;;
*)
echo "Usage: $0 {start|stop|reload|restart|status}"
exit 1
;;
esac
# End /etc/init.d/exim
--
## List details at http://lists.exim.org/mailman/listinfo/exim-users
## Exim details at http://www.exim.org/
## Please use the Wiki with this list - http://wiki.exim.org/