Postfix MTA

Signed-off-by: Denis Shulyaka <Shulyaka@gmail.com>
This commit is contained in:
Denis Shulyaka
2014-10-01 01:08:26 +04:00
parent 99f0ea47ce
commit cbe59734b6
9 changed files with 1360 additions and 0 deletions

View File

@@ -0,0 +1,23 @@
diff -rupN postfix-2.8.1/postfix_init postfix-2.8.1_patched/postfix_init
--- postfix-2.8.1/postfix_init 1970-01-01 03:00:00.000000000 +0300
+++ postfix-2.8.1_patched/postfix_init 2011-03-06 21:44:50.000000000 +0300
@@ -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
+}