From patchwork Thu Feb 14 09:49:11 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: Rob Brewer X-Patchwork-Id: 2085 Return-Path: Received: from mail01.ipfire.org (unknown [172.28.1.200]) (using TLSv1.2 with cipher ECDHE-ECDSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mail01.ipfire.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by web07.i.ipfire.org (Postfix) with ESMTPS id BAB7A88B5C1 for ; Wed, 13 Feb 2019 22:49:23 +0000 (GMT) Received: from mail01.i.ipfire.org (localhost [IPv6:::1]) by mail01.ipfire.org (Postfix) with ESMTP id 440F8262M7z5DLrj; Wed, 13 Feb 2019 22:49:22 +0000 (GMT) Received: from tuscan3.grantura.co.uk (mail.grantura.uk [217.169.17.29]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mail01.ipfire.org (Postfix) with ESMTPS id 440F7z1qPcz5DLrg for ; Wed, 13 Feb 2019 22:49:18 +0000 (GMT) Received: from tuscan3.grantura.co.uk (localhost [127.0.0.1]) by tuscan3.grantura.co.uk (8.15.2/8.15.2/Debian-12) with ESMTP id x1DMnBIj021339 for ; Wed, 13 Feb 2019 22:49:11 GMT Received: (from news@localhost) by tuscan3.grantura.co.uk (8.15.2/8.15.2/Submit) id x1DMnBEd021338 for development@lists.ipfire.org; Wed, 13 Feb 2019 22:49:11 GMT To: development@lists.ipfire.org From: Rob Brewer Newsgroups: grantura.local.ipfire-devel Subject: [PATCH] sendEmail Date: Wed, 13 Feb 2019 22:49:11 +0000 Organization: Megadodo Publications Lines: 24 Message-ID: References: <034C7493-33F3-4F53-BA30-02B1EEAA2462@ipfire.org> <5AF3AA5F-37F8-457D-B3A7-0939D1B33A3A@ipfire.org> Mime-Version: 1.0 User-Agent: KNode/4.14.10 Authentication-Results: mail01.ipfire.org X-Spamd-Result: default: False [-3.79 / 11.00]; ARC_NA(0.00)[]; SUBJECT_ENDS_SPACES(0.50)[]; MX_INVALID(0.50)[greylisted]; FROM_HAS_DN(0.00)[]; TO_MATCH_ENVRCPT_ALL(0.00)[]; MV_CASE(0.50)[]; MIME_GOOD(-0.10)[text/plain]; PREVIOUSLY_DELIVERED(0.00)[development@lists.ipfire.org]; TO_DN_NONE(0.00)[]; AUTH_NA(1.00)[]; RCPT_COUNT_ONE(0.00)[1]; HAS_ORG_HEADER(0.00)[]; RCVD_COUNT_THREE(0.00)[3]; MIME_TRACE(0.00)[0:+]; IP_SCORE(-3.04)[ip: (-7.98), ipnet: 217.169.0.0/19(-3.99), asn: 20712(-3.19), country: GB(-0.06)]; BAYES_HAM(-3.00)[100.00%]; DMARC_NA(0.00)[grantura.co.uk]; NEURAL_HAM(-0.94)[-0.314,0]; R_SPF_NA(0.00)[]; FORGED_SENDER(0.30)[ipfire-devel@grantura.co.uk,news@tuscan3.grantura.co.uk]; R_DKIM_NA(0.00)[]; CTE_CASE(0.50)[]; ASN(0.00)[asn:20712, ipnet:217.169.0.0/19, country:GB]; FROM_NEQ_ENVFROM(0.00)[ipfire-devel@grantura.co.uk,news@tuscan3.grantura.co.uk]; RCVD_TLS_LAST(0.00)[] X-Spam-Status: No, score=-3.79 X-Rspamd-Server: mail01.i.ipfire.org X-BeenThere: development@lists.ipfire.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: IPFire development talk List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: development-bounces@lists.ipfire.org Sender: "Development" Michael Tremer wrote: > Would you re-submit this patch with “git send-email” so that Patchwork can > pick it up and it can be merged? > I'm still getting my head around git. Hopefully this is what is needed. HTH Rob diff --git a/lfs/sendEmail b/lfs/sendEmail index 28646ef93..cc9f67aaa 100644 --- a/lfs/sendEmail +++ b/lfs/sendEmail @@ -63,6 +63,7 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects)) @$(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)