* The dkim_status ACL condition may now be used in data ACLs * The dkim_verbose logging control also enables logging of signing * The dkim_timestamps signing option now accepts zero to include a current timestamp but no expiry timestamp. * The recipients_max main option is now expanded. * Setting variables for "exim -be" can set a tainted value. * A dns:fail event. * The dsearch lookup supports search for a sub-path. * Include mailtest utility for simple connection checking. * Add SMTP WELLKNOWN extension. OBS-URL: https://build.opensuse.org/package/show/server:mail/exim?expand=0&rev=290
19 lines
622 B
Diff
19 lines
622 B
Diff
From: Ruediger Oertel <ro at suse dot de>
|
|
Subject: fix deprecated tail call syntax (-1)
|
|
Reported-Upstream: Yes
|
|
Bugtracker: bugs.exim.org 1080
|
|
|
|
Index: scripts/Configure-config.h
|
|
===================================================================
|
|
--- scripts/Configure-config.h.orig
|
|
+++ scripts/Configure-config.h
|
|
@@ -47,7 +47,7 @@ fi
|
|
|
|
# Double-check that config.h is complete.
|
|
|
|
-if [ "`tail -1 config.h`" != "/* End of config.h */" ] ; then
|
|
+if [ "`tail -n 1 config.h`" != "/* End of config.h */" ] ; then
|
|
echo "*** config.h appears to be incomplete"
|
|
echo "*** unexpected failure in buildconfig program"
|
|
exit 1
|