From mboxrd@z Thu Jan 1 00:00:00 1970 From: Rob Brewer To: development@lists.ipfire.org Subject: Re: sendEmail-1.56-1 Date: Sun, 10 Feb 2019 22:00:18 +0000 Message-ID: In-Reply-To: MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="===============0126562055690787243==" List-Id: --===============0126562055690787243== Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: 7bit Hi Michael, Rob Brewer wrote: >> No. Please change the patch accordingly and submit again. >> > > Updated..... > > --- lfs/sendEmail 2019-02-03 09:52:33.517456033 +0000 > +++ lfs/sendEmail.2 2019-02-10 16:21:30.662927661 +0000 > @@ -63,8 +63,8 @@ > @$(PREBUILD) > @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar zxf $(DIR_DL)/$(DL_FILE) > cd $(DIR_APP) && cp -pvf sendEmail /usr/local/bin > - chown root.nobody /usr/local/bin/sendEmail > - chmod 04750 /usr/local/bin/sendEmail > + chown root.root /usr/local/bin/sendEmail > + chmod 755 /usr/local/bin/sendEmail > @rm -rf $(DIR_APP) > @$(POSTBUILD) Sorry the above is wrong. It is a diff from my modified sendEmail To patch the original use: --- lfs/sendEmail 2019-02-10 21:49:48.392705266 +0000 +++ lfs/sendEmail.2 2019-02-10 16:21:30.662927661 +0000 @@ -63,6 +63,7 @@ @$(PREBUILD) @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar zxf $(DIR_DL)/$(DL_FILE) cd $(DIR_APP) && cp -pvf sendEmail /usr/local/bin + chown root.root /usr/local/bin/sendEmail chmod 755 /usr/local/bin/sendEmail @rm -rf $(DIR_APP) @$(POSTBUILD) Rob --===============0126562055690787243==--