aboutsummaryrefslogtreecommitdiffstats
path: root/mail/exim-old/files
diff options
context:
space:
mode:
authormarkm <markm@FreeBSD.org>1998-12-08 23:23:43 +0800
committermarkm <markm@FreeBSD.org>1998-12-08 23:23:43 +0800
commitbb1af2d42db1a73667a304d7aa8a475e85ef4915 (patch)
tree147b5edbd30c0d3988df94655b23d2e7a4c04a1c /mail/exim-old/files
parenta6f79152ec7c3d3ed789bf1eff71d098d91004b4 (diff)
downloadfreebsd-ports-gnome-bb1af2d42db1a73667a304d7aa8a475e85ef4915.tar.gz
freebsd-ports-gnome-bb1af2d42db1a73667a304d7aa8a475e85ef4915.tar.zst
freebsd-ports-gnome-bb1af2d42db1a73667a304d7aa8a475e85ef4915.zip
Upgrade to 2.054 (Testing release!).
Patches incorporated by the author were removed. One new patch created to prevent core dumps when running non-listening queue-runners. Handle the difference in BINOWN between stable (bin) and current (root), obviating the need for an INSTALL script. Don't install shell script "place-holders" for eximon when built without USE_XLIB, just touch the files for package-friendliness. Graceful. Improve out-of-the-box relay handling; localhost symoblic name was weak, use private subnet numerical net instead. Submitted by: maintainer
Diffstat (limited to 'mail/exim-old/files')
-rw-r--r--mail/exim-old/files/configure.default2
-rw-r--r--mail/exim-old/files/patch-aa113
2 files changed, 12 insertions, 103 deletions
diff --git a/mail/exim-old/files/configure.default b/mail/exim-old/files/configure.default
index 962fb9579aca..6548c319e057 100644
--- a/mail/exim-old/files/configure.default
+++ b/mail/exim-old/files/configure.default
@@ -99,7 +99,7 @@ host_lookup_nets = 0.0.0.0/0
# unscrupulous people out there who will make use of open relays to try to
# disguise the source of unsolicited bulk mail.
-sender_host_accept_relay = localhost
+sender_net_accept_relay = 127.0.0.1/32
# If you want Exim to support the "percent hack" for all your local domains,
diff --git a/mail/exim-old/files/patch-aa b/mail/exim-old/files/patch-aa
index f75b135d69dd..3dc16f46f560 100644
--- a/mail/exim-old/files/patch-aa
+++ b/mail/exim-old/files/patch-aa
@@ -1,33 +1,15 @@
---- scripts/exim_install.orig Mon Nov 9 19:01:40 1998
-+++ scripts/exim_install Wed Nov 18 13:22:51 1998
-@@ -121,18 +121,4 @@
- fi
-
--# If info directory is needed and doesn't exist, try to create it
--
--if [ "${INFO_DIRECTORY}" != "" -a ! -d "${INFO_DIRECTORY}" ]; then
-- echo mkdir -p ${INFO_DIRECTORY}
-- ${real} mkdir -p ${INFO_DIRECTORY}
-- if [ $? -ne 0 ]; then
-- echo $com ""
-- echo $com "**** Exim installation ${ver}failed ****"
-- exit 1
-- else
-- echo $com ${INFO_DIRECTORY} created
-- fi
--fi
--
- # If no arguments, install everything
-
-@@ -202,4 +188,24 @@
-
+--- scripts/exim_install.orig Tue Dec 8 16:05:07 1998
++++ scripts/exim_install Tue Dec 8 16:09:49 1998
+@@ -186,25 +186,39 @@
+ fi
+ done
+# Install exim.sh startup script in FreeBSD's ${PREFIX}/etc/rc.d so that
+# exim will start up on boot once sendmail is disabled and
+# ${PREFIX}/etc/exim/configure is in place.
+
+echo $com ""
-+
+
+if [ -f ${PREFIX}/etc/rc.d/exim.sh ]; then
+ echo $com "${PREFIX}/etc/rc.d/exim.sh exists, not overwritten"
+else
@@ -41,10 +23,9 @@
+ exit 1
+ fi
+fi
-+
- # If there is no configuration file, install the default,
-@@ -208,9 +214,8 @@
+ # If there is no configuration file, install the default.
+
echo $com ""
-if [ ! -f ${CONFIGURE_FILE} ]; then
@@ -58,84 +39,12 @@
+ ${real} ${CP} ../src/configure.default ${CONFIGURE_FILE}.sample
if [ $? -ne 0 ]; then
echo $com ""
-@@ -218,44 +223,44 @@
+ echo $com "**** Exim installation ${ver}failed ****"
exit 1
fi
-else
- echo $com Configuration file ${CONFIGURE_FILE} already exists
-fi
--# Install info files if required; the existence of the directory is
--# tested above.
-+# Install info files if the directory is defined and the Texinfo
-+# source documentation is present.
-
--##### This enhancement is awaiting a shell equivalent of FreeBSD's
--##### 'install-info' command.
-+if [ "${INFO_DIRECTORY}" != "" -a -f ../doc/spec.texinfo ] ; then
-+ echo $com ""
-+ if [ ! -d "${INFO_DIRECTORY}" ] ; then
-+ echo mkdir -p ${INFO_DIRECTORY}
-+ ${real} mkdir -p ${INFO_DIRECTORY}
-+ if [ $? -ne 0 ]; then
-+ echo $com ""
-+ echo $com "**** Exim installation ${ver}failed ****"
-+ exit 1
-+ else
-+ echo $com ${INFO_DIRECTORY} created
-+ fi
-+ fi
-
-+ echo $com Info installation directory is ${INFO_DIRECTORY}
-+ echo $com ""
-
--# if [ "${INFO_DIRECTORY}" != "" ] ; then
--# echo $com ""
--# echo $com Info installation directory is ${INFO_DIRECTORY}
--# echo $com ""
--#
--# if [ -f ../doc/spec.texinfo ]; then
--# makeinfo --no-split --output exim_overview.info ../doc/oview.texinfo
--# echo ${CP} exim_overview.info ${INFO_DIRECTORY}
--# ${real} ${CP} exim_overview.info ${INFO_DIRECTORY}
--# install-info --section="Exim" \
--# --entry "* Overview: (exim_overview). Overview of the Exim system" \
--# ${INFO_DIRECTORY}/exim_overview.info ${INFO_DIRECTORY}/dir
--# makeinfo --no-split --output exim.info ../doc/spec.texinfo
--# echo ${CP} exim.info ${INFO_DIRECTORY}
--# ${real} ${CP} exim.info ${INFO_DIRECTORY}
--# install-info --section="Exim" \
--# --entry "* User guide: (exim). Exim manual" \
--# ${INFO_DIRECTORY}/exim.info ${INFO_DIRECTORY}/dir
--# makeinfo --no-split --output exim_filter.info ../doc/filter.texinfo
--# echo ${CP} exim_filter.info ${INFO_DIRECTORY}
--# ${real} ${CP} exim_filter.info ${INFO_DIRECTORY}
--# install-info --section="Exim" \
--# --entry "* Filtering: (exim_filter). Filtering mail with Exim" \
--# ${INFO_DIRECTORY}/exim_filter.info ${INFO_DIRECTORY}/dir
--# else
--# echo $com "**** Texinfo documentation not found in doc directory ****"
--# exit 1
--# fi
--# fi
-+ makeinfo --no-split --output exim_overview.info ../doc/oview.texinfo
-+ echo ${CP} exim_overview.info ${INFO_DIRECTORY}
-+ ${real} ${CP} exim_overview.info ${INFO_DIRECTORY}
-+ install-info --section="Exim" \
-+ --entry "* Overview: (exim_overview). Overview of the Exim system" \
-+ ${INFO_DIRECTORY}/exim_overview.info ${INFO_DIRECTORY}/dir
-+ makeinfo --no-split --output exim.info ../doc/spec.texinfo
-+ echo ${CP} exim.info ${INFO_DIRECTORY}
-+ ${real} ${CP} exim.info ${INFO_DIRECTORY}
-+ install-info --section="Exim" \
-+ --entry "* User guide: (exim). Exim manual" \
-+ ${INFO_DIRECTORY}/exim.info ${INFO_DIRECTORY}/dir
-+ makeinfo --no-split --output exim_filter.info ../doc/filter.texinfo
-+ echo ${CP} exim_filter.info ${INFO_DIRECTORY}
-+ ${real} ${CP} exim_filter.info ${INFO_DIRECTORY}
-+ install-info --section="Exim" \
-+ --entry "* Filtering: (exim_filter). Filtering mail with Exim" \
-+ ${INFO_DIRECTORY}/exim_filter.info ${INFO_DIRECTORY}/dir
-+fi
-
- # Everything OK
+ # Install info files if the directory is defined and the Texinfo
+ # source documentation is present.