postfix 2.11.3

Signed-off-by: Denis Shulyaka <Shulyaka@gmail.com>
This commit is contained in:
Denis Shulyaka
2014-10-25 21:17:54 +04:00
parent 31db0a0ca6
commit 977968bf65
5 changed files with 842 additions and 850 deletions
+19
View File
@@ -0,0 +1,19 @@
#!/bin/sh /etc/rc.common
# Copyright (C) 2014 OpenWrt.org
START=50
STOP=50
create_users() {
group_exists postfix || group_add postfix 87
user_exists postfix || user_add postfix 87
group_exists postdrop || group_add postdrop 88
}
start() {
postfix start
}
stop() {
postfix stop
}