faqts : Computers : Internet : Mail Servers : qmail : Life with qmail

+ Search
Add Entry AlertManage Folder Edit Entry Add page to http://del.icio.us/
Did You Find This Entry Useful?

4 of 5 people (80%) answered Yes
Recently 3 of 4 people (75%) answered Yes

Entry

How can I modify the LWQ startup scripts to start and stop only smtpd?

May 7th, 2003 11:47
Dave Sill, Nathan Wallace, Dave Sill


Just add additional tags to the "case" statement, e.g.:
  stop-smtpd)
    echo -n "Stopping qmail-smtpd: "
    svc -d /service/qmail-smtpd
    echo "done."
    ;;
  start-smtpd)
    echo -n "Starting qmail-smtpd: "
    svc -u /service/qmail-smtpd
    echo "done."
    ;;