From cbe59734b6400b896f95084ed5166e4381330c80 Mon Sep 17 00:00:00 2001 From: Denis Shulyaka Date: Wed, 1 Oct 2014 01:08:26 +0400 Subject: Postfix MTA Signed-off-by: Denis Shulyaka --- mail/postfix/patches/300-init.patch | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 mail/postfix/patches/300-init.patch (limited to 'mail/postfix/patches/300-init.patch') diff --git a/mail/postfix/patches/300-init.patch b/mail/postfix/patches/300-init.patch new file mode 100644 index 000000000..3c1bb7f5f --- /dev/null +++ b/mail/postfix/patches/300-init.patch @@ -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 ++} -- cgit v1.2.3