⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 postfix

📁 邮件系统是Linux网络应用的重要组成
💻
字号:
#!/bin/sh# Gerben Wierda, Oct 2001. Adapted from an existing example. I waive every# copyright on this and I also do not give any warranty.# Updated Sepember 29, 2002# To work properly, the POSTFIX variable needs to be set to -YES-#	in /etc/hostconfig. /etc/rc.commonif [ "${POSTFIX:=-NO-}" = "-YES-" -a "${MAILSERVER:=-NO-}" = "-YES-" ]then	ConsoleMessage "Cannot run concurrent postfix and sendmail"	sleep 2	exitfi### Start mail server##if [ "$1" == "start" ]then	if [ "${POSTFIX:=-NO-}" = "-YES-" ]	then		ConsoleMessage "Starting Postfix mail services"		/usr/sbin/postfix start	fielif [ "$1" == "stop" ]then	ConsoleMessage "Stopping Postfix mail services"	/usr/sbin/postfix stopelif [ "$1" == "restart" ]then	if [ "${POSTFIX:=-NO-}" = "-YES-" ]	then		ConsoleMessage "Reloading Postfix configuration"		/usr/sbin/postfix reload	else		ConsoleMessage "Stopping Postfix mail services"		/usr/sbin/postfix stop	fifi

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -