]> git.ipfire.org Git - ipfire-2.x.git/commitdiff
Drop sendEmail add-on
authorPeter Müller <peter.mueller@ipfire.org>
Mon, 17 May 2021 21:58:54 +0000 (23:58 +0200)
committerMichael Tremer <michael.tremer@ipfire.org>
Thu, 20 May 2021 09:32:10 +0000 (09:32 +0000)
As discussed in https://wiki.ipfire.org/devel/telco/2021-05-03.

Signed-off-by: Peter Müller <peter.mueller@ipfire.org>
Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
config/rootfiles/packages/sendEmail [deleted file]
lfs/sendEmail [deleted file]

diff --git a/config/rootfiles/packages/sendEmail b/config/rootfiles/packages/sendEmail
deleted file mode 100644 (file)
index ee206e2..0000000
+++ /dev/null
@@ -1 +0,0 @@
-usr/local/bin/sendEmail
diff --git a/lfs/sendEmail b/lfs/sendEmail
deleted file mode 100644 (file)
index ea2345f..0000000
+++ /dev/null
@@ -1,70 +0,0 @@
-###############################################################################
-# IPFire.org    - An Open Source Firewall Solution                            #
-# Copyright (C) 2007-2018  IPFire Team  <info@ipfire.org>                     #
-###############################################################################
-
-###############################################################################
-# Definitions
-###############################################################################
-
-include Config
-
-VER        = 1.56
-
-THISAPP    = sendEmail-v$(VER)
-DL_FILE    = $(THISAPP).tar.gz
-DL_FROM    = $(URL_IPFIRE)
-DIR_APP    = $(DIR_SRC)/$(THISAPP)
-TARGET     = $(DIR_INFO)/$(THISAPP)
-PROG       = sendEmail
-PAK_VER    = 2
-
-DEPS       =
-
-###############################################################################
-# Top-level Rules
-###############################################################################
-
-objects = $(DL_FILE)
-
-$(DL_FILE) = $(DL_FROM)/$(DL_FILE)
-
-$(DL_FILE)_MD5 = 5b7bec4373268fa6446fa59416bb99fb
-
-install : $(TARGET)
-
-check : $(patsubst %,$(DIR_CHK)/%,$(objects))
-
-download :$(patsubst %,$(DIR_DL)/%,$(objects))
-
-md5 : $(subst %,%_MD5,$(objects))
-
-dist: 
-       @$(PAK)
-
-###############################################################################
-# Downloading, checking, md5sum
-###############################################################################
-
-$(patsubst %,$(DIR_CHK)/%,$(objects)) :
-       @$(CHECK)
-
-$(patsubst %,$(DIR_DL)/%,$(objects)) :
-       @$(LOAD)
-
-$(subst %,%_MD5,$(objects)) :
-       @$(MD5)
-
-###############################################################################
-# Installation Details
-###############################################################################
-
-$(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)
-