This commit is contained in:
David Woodhouse 2007-02-06 18:08:56 +00:00
parent a3f96de6b6
commit d62f19c941
4 changed files with 31 additions and 8 deletions

View File

@ -115,16 +115,18 @@
#------------------------------------------------------------------------------ #------------------------------------------------------------------------------
# Compiling Exim with experimental features. These are documented in # Compiling Exim with experimental features. These are documented in
@@ -464,10 +466,10 @@ @@ -464,11 +466,11 @@
# included in the Exim binary. You will then need to set up the run time # included in the Exim binary. You will then need to set up the run time
# configuration to make use of the mechanism(s) selected. # configuration to make use of the mechanism(s) selected.
-# AUTH_CRAM_MD5=yes -# AUTH_CRAM_MD5=yes
-# AUTH_CYRUS_SASL=yes -# AUTH_CYRUS_SASL=yes
-# AUTH_DOVECOT=yes
-# AUTH_PLAINTEXT=yes -# AUTH_PLAINTEXT=yes
-# AUTH_SPA=yes -# AUTH_SPA=yes
+AUTH_CRAM_MD5=yes +AUTH_CRAM_MD5=yes
+AUTH_CYRUS_SASL=yes +AUTH_CYRUS_SASL=yes
+AUTH_DOVECOT=yes
+AUTH_PLAINTEXT=yes +AUTH_PLAINTEXT=yes
+AUTH_SPA=yes +AUTH_SPA=yes
@ -206,6 +208,15 @@
+EXIM_PERL=perl.o +EXIM_PERL=perl.o
#------------------------------------------------------------------------------
@@ -691,7 +696,7 @@ EXIM_PERL=perl.o
# that the local_scan API is made available by the linker. You may also need
# to add -ldl to EXTRALIBS so that dlopen() is available to Exim.
-# EXPAND_DLFUNC=yes
+EXPAND_DLFUNC=yes
#------------------------------------------------------------------------------ #------------------------------------------------------------------------------
@@ -696,7 +699,7 @@ @@ -696,7 +699,7 @@
# support, which is intended for use in conjunction with the SMTP AUTH # support, which is intended for use in conjunction with the SMTP AUTH
@ -245,7 +256,7 @@
-# USE_READLINE=yes -# USE_READLINE=yes
+USE_READLINE=yes +USE_READLINE=yes
# You may need to add -ldl to EXTRA_LIBS when you set USE_READLINE=yes. # You may need to add -ldl to EXTRALIBS when you set USE_READLINE=yes.
# Note that this option adds to the size of the Exim binary, because the # Note that this option adds to the size of the Exim binary, because the
# dynamic loading library is not otherwise included. # dynamic loading library is not otherwise included.

View File

@ -10,8 +10,8 @@ of exim until Philip has to break the API and increase the major number)
Marc MERLIN <marc_soft@merlins.org> Marc MERLIN <marc_soft@merlins.org>
diff -urN exim-4.14-0/src/EDITME exim-4.14-1/src/EDITME diff -urN exim-4.14-0/src/EDITME exim-4.14-1/src/EDITME
--- exim-4.14-0/src/EDITME Tue Mar 11 04:20:18 2003 --- exim-4.14-0/Local/Makefile Tue Mar 11 04:20:18 2003
+++ exim-4.14-1/src/EDITME Sun Mar 23 15:34:15 2003 +++ exim-4.14-1/Local/Makefile Sun Mar 23 15:34:15 2003
@@ -388,6 +388,20 @@ @@ -388,6 +388,20 @@

View File

@ -73,14 +73,21 @@ case "$1" in
restart) restart)
restart restart
;; ;;
reload)
if [ -f /var/lock/subsys/exim ]; then
echo -n $"Reloading exim:"
killproc exim -HUP
echo
fi
;;
condrestart) condrestart)
[ -f /var/lock/subsys/exim ] && restart || : [ -f /var/lock/subsys/exim ] && restart || :
;; ;;
status) status)
status exim status exim
;; ;;
*) *)
echo $"Usage: $0 {start|stop|restart|status|condrestart}" echo $"Usage: $0 {start|stop|restart|reload|status|condrestart}"
exit 1 exit 1
esac esac

View File

@ -11,8 +11,8 @@
Summary: The exim mail transfer agent Summary: The exim mail transfer agent
Name: exim Name: exim
Version: 4.63 Version: 4.66
Release: 6%{?dist} Release: 1%{?dist}
License: GPL License: GPL
Url: http://www.exim.org/ Url: http://www.exim.org/
Group: System Environment/Daemons Group: System Environment/Daemons
@ -395,6 +395,11 @@ test "$1" = 0 || %{_initrddir}/clamd.exim condrestart >/dev/null || :
%endif %endif
%changelog %changelog
* Tue Feb 6 2007 David Woodhouse <dwmw2@infradead.org> 4.66-1
- Update to 4.66
- Add dovecot authenticator
- Add 'reload' in init script (#219174)
* Tue Oct 17 2006 Christian Iseli <Christian.Iseli@licr.org> 4.63-6 * Tue Oct 17 2006 Christian Iseli <Christian.Iseli@licr.org> 4.63-6
- Own /etc/exim directory - Own /etc/exim directory