From 3a9c9d043656daa084faf2f91ea07c75ceb01d4c Mon Sep 17 00:00:00 2001 From: ofthesun9 Date: Mon, 4 May 2020 17:15:15 +0000 Subject: [PATCH] Fixed typo --- core/postfix/start.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/postfix/start.py b/core/postfix/start.py index e8766175..c5bf073e 100755 --- a/core/postfix/start.py +++ b/core/postfix/start.py @@ -66,6 +66,6 @@ multiprocessing.Process(target=start_podop).start() os.system("/usr/libexec/postfix/post-install meta_directory=/etc/postfix create-missing") # Before starting postfix, we need to check permissions on /queue # in the event that postfix,postdrop id have changed -os.system("chown postfix -R /queue/{active,bounce,corrupt,defer,deferred,flush,hold,incoming,maildrop,pid,private,public,saved,trace}") -os.system("chown postdrop -R /queue/{maildrop,public}") +os.system("chown -R postfix /queue/{active,bounce,corrupt,defer,deferred,flush,hold,incoming,maildrop,pid,private,public,saved,trace}") +os.system("chgrp -R postdrop /queue/{maildrop,public}") os.system("postfix start-fg")