14 lines
185 B
Bash
14 lines
185 B
Bash
#!/bin/sh
|
|
|
|
. /etc/rc.common
|
|
|
|
##
|
|
# Start mail server
|
|
##
|
|
|
|
if [ "${MAILSERVER:=-NO-}" = "-YES-" ]; then
|
|
|
|
ConsoleMessage "Starting Postfix mail services"
|
|
/usr/sbin/postfix start
|
|
fi
|