Your message dated Sun, 23 Sep 2012 10:47:38 +0000
with message-id <[email protected]>
and subject line Bug#687645: fixed in exim4 4.80-5
has caused the Debian Bug report #687645,
regarding exim4: Hardening flags missing
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact [email protected]
immediately.)


-- 
687645: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=687645
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
Package: exim4
Version: 4.80-4
Severity: important
Tags: patch

Dear Maintainer,

The CPPFLAGS and LDFLAGS hardening flags are missing because they
are ignored by the build system. For more hardening information
please have a look at [1], [2] and [3].

The attached patches (exim_debian_rules.patch and
fix-missing-ldflags.patch) fix the issue but I'm not sure if
forcing LFLAGS to LDFLAGS is the best way to handle the LDFLAGS
problem.

To check if all flags were correctly enabled you can use
`hardening-check` from the hardening-includes package and check
the build log with `blhc` (hardening-check doesn't catch
everything):

    $ hardening-check /usr/lib/exim4/eximon.bin /usr/sbin/exim4 /usr/sbin/exim4 
/usr/sbin/exim_lock /usr/sbin/exim_dbmbuild /usr/sbin/exim_tidydb ...
    /usr/lib/exim4/eximon.bin:
     Position Independent Executable: yes
     Stack protected: yes
     Fortify Source functions: yes (some protected functions found)
     Read-only relocations: yes
     Immediate binding: yes
    /usr/sbin/exim4:
     Position Independent Executable: yes
     Stack protected: yes
     Fortify Source functions: yes (some protected functions found)
     Read-only relocations: yes
     Immediate binding: yes
    /usr/sbin/exim4:
     Position Independent Executable: yes
     Stack protected: yes
     Fortify Source functions: yes (some protected functions found)
     Read-only relocations: yes
     Immediate binding: yes
    /usr/sbin/exim_lock:
     Position Independent Executable: yes
     Stack protected: yes
     Fortify Source functions: yes
     Read-only relocations: yes
     Immediate binding: yes
    /usr/sbin/exim_dbmbuild:
     Position Independent Executable: yes
     Stack protected: yes
     Fortify Source functions: yes (some protected functions found)
     Read-only relocations: yes
     Immediate binding: yes
    /usr/sbin/exim_tidydb:
     Position Independent Executable: yes
    ...

Use find -type f \( -executable -o -name \*.so\* \) -exec
hardening-check {} + on the build result to check all files.

When checking the build log with blhc the build system causes
many false positives, the attached patches
makefile-missing-fullecho.patch and fix-too-verbose.patch fix
this issue - I'm not sure if it's worth including them but they
are useful while testing.

Regards,
Simon

[1]: https://wiki.debian.org/ReleaseGoals/SecurityHardeningBuildFlags
[2]: https://wiki.debian.org/HardeningWalkthrough
[3]: https://wiki.debian.org/Hardening
-- 
+ privacy is necessary
+ using gnupg http://gnupg.org
+ public key id: 0x92FEFDB7E44C32F9
diff -Nru exim4-4.80/debian/rules exim4-4.80/debian/rules
--- exim4-4.80/debian/rules	2012-06-03 16:28:53.000000000 +0200
+++ exim4-4.80/debian/rules	2012-09-14 17:11:25.000000000 +0200
@@ -22,6 +22,8 @@
 endif
 
 CFLAGS := $(CFLAGS) $(shell getconf LFS_CFLAGS) -D_LARGEFILE_SOURCE -fno-strict-aliasing -Wall
+# The build system ignores CPPFLAGS, append them to CFLAGS.
+CFLAGS += $(CPPFLAGS)
 export CFLAGS
 
 LC_ALL=C
Description: Use LDFLAGS from environment (dpkg-buildflags).
 Necessary for hardening flags.
.
 The buildsystem uses LFLAGS and LDFLAGS, but doesn't pass LDFLAGS when
 linking some binaries, fix that.
Author: Simon Ruderich <[email protected]>
Last-Update: 2012-09-14

Index: exim4-4.80/OS/Makefile-Linux
===================================================================
--- exim4-4.80.orig/OS/Makefile-Linux	2012-09-14 17:07:28.926489036 +0200
+++ exim4-4.80/OS/Makefile-Linux	2012-09-14 17:07:31.190489123 +0200
@@ -22,6 +22,8 @@
 XLFLAGS=-L$(X11)/lib
 X11_LD_LIB=$(X11)/lib
 
+LFLAGS=$(LDFLAGS)
+
 EXIWHAT_PS_ARG=ax
 EXIWHAT_EGREP_ARG='/exim4( |$$)'
 EXIWHAT_MULTIKILL_CMD=killall
Index: exim4-4.80/OS/Makefile-Base
===================================================================
--- exim4-4.80.orig/OS/Makefile-Base	2012-09-14 17:07:28.926489036 +0200
+++ exim4-4.80/OS/Makefile-Base	2012-09-14 17:07:31.190489123 +0200
@@ -113,7 +113,7 @@
 # Targets for special-purpose configuration header builders
 buildconfig: buildconfig.c
 	@echo "$(CC) buildconfig.c"
-	$(FE)$(CC) $(CFLAGS) $(INCLUDE) -o buildconfig buildconfig.c $(LIBS)
+	$(FE)$(CC) $(CFLAGS) $(LFLAGS) $(INCLUDE) -o buildconfig buildconfig.c $(LIBS)
 
 
 # Target for the exicyclog utility script
Description: Add missing $(FE) to Makefiles.
Author: Simon Ruderich <[email protected]>
Last-Update: 2012-09-14

Index: exim4-4.80/src/transports/Makefile
===================================================================
--- exim4-4.80.orig/src/transports/Makefile	2012-09-14 17:07:28.110489005 +0200
+++ exim4-4.80/src/transports/Makefile	2012-09-14 17:07:34.374489244 +0200
@@ -7,7 +7,7 @@
 transports.a:    $(OBJ)
 		 @$(RM_COMMAND) -f transports.a
 		 @echo "$(AR) transports.a"
-		 @$(AR) transports.a $(OBJ)
+		 $(FE)$(AR) transports.a $(OBJ)
 		 $(RANLIB) $@
 
 .SUFFIXES:       .o .c
Index: exim4-4.80/src/routers/Makefile
===================================================================
--- exim4-4.80.orig/src/routers/Makefile	2012-09-14 17:07:28.110489005 +0200
+++ exim4-4.80/src/routers/Makefile	2012-09-14 17:07:34.374489244 +0200
@@ -14,7 +14,7 @@
 routers.a:       $(OBJ)
 		 @$(RM_COMMAND) -f routers.a
 		 @echo "$(AR) routers.a"
-		 @$(AR) routers.a $(OBJ)
+		 $(FE)$(AR) routers.a $(OBJ)
 		 $(RANLIB) $@
 
 .SUFFIXES:       .o .c
Index: exim4-4.80/src/lookups/Makefile
===================================================================
--- exim4-4.80.orig/src/lookups/Makefile	2012-09-14 17:07:28.110489005 +0200
+++ exim4-4.80/src/lookups/Makefile	2012-09-14 17:07:34.374489244 +0200
@@ -14,7 +14,7 @@
 lookups.a:       $(OBJ)
 		 @$(RM_COMMAND) -f lookups.a
 		 @echo "$(AR) lookups.a"
-		 @$(AR) lookups.a $(OBJ)
+		 $(FE)$(AR) lookups.a $(OBJ)
 		 $(RANLIB) $@
 
 .SUFFIXES:       .o .c .so
Description: WTF
Author: Simon Ruderich <[email protected]>
Last-Update: 2012-09-14

Index: exim4-4.80/OS/Makefile-Base
===================================================================
--- exim4-4.80.orig/OS/Makefile-Base	2012-09-14 17:07:31.190489123 +0200
+++ exim4-4.80/OS/Makefile-Base	2012-09-14 17:07:37.078489347 +0200
@@ -112,7 +112,6 @@
 
 # Targets for special-purpose configuration header builders
 buildconfig: buildconfig.c
-	@echo "$(CC) buildconfig.c"
 	$(FE)$(CC) $(CFLAGS) $(LFLAGS) $(INCLUDE) -o buildconfig buildconfig.c $(LIBS)
 
 
@@ -320,7 +319,6 @@
 exim:   lookups/lookups.a auths/auths.a pdkim/pdkim.a \
         routers/routers.a transports/transports.a \
         $(OBJ_EXIM) version.o
-	@echo "$(LNCC) -o exim"
 	$(FE)$(PURIFY) $(LNCC) -o exim $(LFLAGS) $(OBJ_EXIM) version.o \
 	  routers/routers.a transports/transports.a lookups/lookups.a \
 	  auths/auths.a pdkim/pdkim.a \
@@ -341,7 +339,6 @@
 OBJ_DUMPDB = exim_dumpdb.o util-os.o util-store.o
 
 exim_dumpdb: $(OBJ_DUMPDB)
-	@echo "$(LNCC) -o exim_dumpdb"
 	$(FE)$(LNCC) $(CFLAGS) $(INCLUDE) -o exim_dumpdb $(LFLAGS) $(OBJ_DUMPDB) \
 	  $(LIBS) $(EXTRALIBS) $(DBMLIB)
 	@if [ x"$(STRIP_COMMAND)" != x"" ]; then \
@@ -356,7 +353,6 @@
 OBJ_FIXDB = exim_fixdb.o util-os.o util-store.o
 
 exim_fixdb:  $(OBJ_FIXDB) auths/auths.a
-	@echo "$(LNCC) -o exim_fixdb"
 	$(FE)$(LNCC) $(CFLAGS) $(INCLUDE) -o exim_fixdb $(LFLAGS) $(OBJ_FIXDB) \
 	  auths/auths.a $(LIBS) $(EXTRALIBS) $(DBMLIB)
 	@if [ x"$(STRIP_COMMAND)" != x"" ]; then \
@@ -371,7 +367,6 @@
 OBJ_TIDYDB = exim_tidydb.o util-os.o util-store.o
 
 exim_tidydb: $(OBJ_TIDYDB)
-	@echo "$(LNCC) -o exim_tidydb"
 	$(FE)$(LNCC) $(CFLAGS) $(INCLUDE) -o exim_tidydb $(LFLAGS) $(OBJ_TIDYDB) \
 	  $(LIBS) $(EXTRALIBS) $(DBMLIB)
 	@if [ x"$(STRIP_COMMAND)" != x"" ]; then \
@@ -384,7 +379,6 @@
 # The utility for building dbm files
 
 exim_dbmbuild: exim_dbmbuild.o
-	@echo "$(LNCC) -o exim_dbmbuild"
 	$(FE)$(LNCC) -o exim_dbmbuild $(LFLAGS) exim_dbmbuild.o \
 	  $(LIBS) $(EXTRALIBS) $(DBMLIB)
 	@if [ x"$(STRIP_COMMAND)" != x"" ]; then \
@@ -397,9 +391,7 @@
 # The utility for locking a mailbox while messing around with it
 
 exim_lock: exim_lock.c
-	@echo "$(CC) exim_lock.c"
 	$(FE)$(CC) -c $(CFLAGS) $(INCLUDE) exim_lock.c
-	@echo "$(LNCC) -o exim_lock"
 	$(FE)$(LNCC) -o exim_lock $(LFLAGS) exim_lock.o  \
 	  $(LIBS) $(EXTRALIBS)
 	@if [ x"$(STRIP_COMMAND)" != x"" ]; then \
@@ -427,10 +419,8 @@
 
 eximon.bin: $(EXIMON_EDITME) eximon $(OBJ_MONBIN) \
             ../exim_monitor/em_version.c
-	@echo "$(CC) exim_monitor/em_version.c"
 	$(FE)$(CC) -o em_version.o -c \
 	  $(CFLAGS) $(XINCLUDE) -I. ../exim_monitor/em_version.c
-	@echo "$(LNCC) -o eximon.bin"
 	$(FE)$(PURIFY) $(LNCC) -o eximon.bin em_version.o $(LFLAGS) $(XLFLAGS) \
 	$(OBJ_MONBIN) -lXaw -lXmu -lXt -lXext -lX11 $(PCRE_LIBS) \
 	  $(LIBS) $(LIBS_EXIMON) $(EXTRALIBS) $(EXTRALIBS_EXIMON) -lc
@@ -452,7 +442,7 @@
 PHDRS = ../config.h ../dbfunctions.h ../dbstuff.h ../exim.h ../functions.h ../globals.h ../local_scan.h ../macros.h ../mytypes.h ../structs.h
 
 .SUFFIXES: .o .c
-.c.o:;  @echo "$(CC) $*.c"
+.c.o:
 	$(FE)$(CC) -c $(CFLAGS) -I. $(INCLUDE) $(IPV6_INCLUDE) $(TLS_INCLUDE) $*.c
 
 # Update Exim's version information and build the version object.
@@ -473,27 +463,23 @@
 # Compile instructions for perl.o for when EXIM_PERL is set
 
 perl.o:          $(HDRS) perl.c
-	@echo "$(PERL_CC) perl.c"
 	$(FE)$(PERL_CC) $(PERL_CCOPTS) $(CFLAGS) $(INCLUDE) -c perl.c
 
 # Compile instructions for the database utility modules
 
 exim_dumpdb.o:   $(HDRS) exim_dbutil.c
-	@echo "$(CC) -DEXIM_DUMPDB exim_dbutil.c"
 	$(FE)$(CC) -c $(CFLAGS) $(INCLUDE) \
 				      -DCOMPILE_UTILITY \
 				      -DEXIM_DUMPDB \
 				      -o exim_dumpdb.o exim_dbutil.c
 
 exim_fixdb.o:    $(HDRS) exim_dbutil.c
-	@echo "$(CC) -DEXIM_FIXDB exim_dbutil.c"
 	$(FE)$(CC) -c $(CFLAGS) $(INCLUDE) \
 				      -DCOMPILE_UTILITY \
 				      -DEXIM_FIXDB \
 				      -o exim_fixdb.o exim_dbutil.c
 
 exim_tidydb.o:   $(HDRS) exim_dbutil.c
-	@echo "$(CC) -DEXIM_TIDYDB exim_dbutil.c"
 	$(FE)$(CC) -c $(CFLAGS) $(INCLUDE) \
 				      -DCOMPILE_UTILITY \
 				      -DEXIM_TIDYDB \
@@ -502,26 +488,21 @@
 # Compile instructions for exim_dbmbuild
 
 exim_dbmbuild.o: $(HDRS) exim_dbmbuild.c
-	@echo "$(CC) exim_dbmbuild.c"
 	$(FE)$(CC) -c $(CFLAGS) $(INCLUDE) -o exim_dbmbuild.o exim_dbmbuild.c
 
 # Utilities use special versions of some modules - typically with debugging
 # calls cut out.
 
 util-spool_in.o: $(HDRS) spool_in.c
-	@echo "$(CC) -DCOMPILE_UTILITY spool_in.c"
 	$(FE)$(CC) -c $(CFLAGS) $(INCLUDE) -DCOMPILE_UTILITY -o util-spool_in.o spool_in.c
 
 util-store.o:    $(HDRS) store.c
-	@echo "$(CC) -DCOMPILE_UTILITY store.c"
 	$(FE)$(CC) -c $(CFLAGS) $(INCLUDE) -DCOMPILE_UTILITY -o util-store.o store.c
 
 util-string.o:   $(HDRS) string.c
-	@echo "$(CC) -DCOMPILE_UTILITY string.c"
 	$(FE)$(CC) -c $(CFLAGS) $(INCLUDE) -DCOMPILE_UTILITY -o util-string.o string.c
 
 util-os.o:       $(HDRS) os.c
-	@echo "$(CC) -DCOMPILE_UTILITY os.c"
 	$(FE)$(CC) -c $(CFLAGS) $(INCLUDE) \
 				      -DCOMPILE_UTILITY \
 				      -DOS_LOAD_AVERAGE \
@@ -532,7 +513,6 @@
 # from a source whose location is set by configuration.
 
 local_scan.o:    Makefile config.h local_scan.h ../$(LOCAL_SCAN_SOURCE)
-	@echo "$(CC) local_scan.c"
 	$(FE)$(CC) -c $(CFLAGS) -I. $(INCLUDE) -o local_scan.o ../$(LOCAL_SCAN_SOURCE)
 
 # Dependencies for the "ordinary" exim modules
@@ -639,7 +619,6 @@
 em_xs.o:         ../exim_monitor/em_xs.c      ../exim_monitor/em_hdr.h
 em_version.o:    ../exim_monitor/em_version.c ../exim_monitor/em_hdr.h
 $(MONBIN): $(HDRS)
-		 @echo "$(CC) exim_monitor/`echo $@ | sed 's/o$$/c/'`"
 		 $(FE)$(CC) -o $@ -c $(CFLAGS) -I. -I../exim_monitor $(INCLUDE) $(XINCLUDE) \
 		   ../exim_monitor/`echo $@ | sed 's/o$$/c/'`
 
Index: exim4-4.80/src/transports/Makefile
===================================================================
--- exim4-4.80.orig/src/transports/Makefile	2012-09-14 17:07:34.374489244 +0200
+++ exim4-4.80/src/transports/Makefile	2012-09-14 17:07:37.078489347 +0200
@@ -6,12 +6,11 @@
 
 transports.a:    $(OBJ)
 		 @$(RM_COMMAND) -f transports.a
-		 @echo "$(AR) transports.a"
 		 $(FE)$(AR) transports.a $(OBJ)
 		 $(RANLIB) $@
 
 .SUFFIXES:       .o .c
-.c.o:;           @echo "$(CC) $*.c"
+.c.o:
 		 $(FE)$(CC) -c $(CFLAGS) $(INCLUDE) $*.c
 
 appendfile.o:    $(HDRS) appendfile.c appendfile.h tf_maildir.h
Index: exim4-4.80/src/routers/Makefile
===================================================================
--- exim4-4.80.orig/src/routers/Makefile	2012-09-14 17:07:34.374489244 +0200
+++ exim4-4.80/src/routers/Makefile	2012-09-14 17:07:37.078489347 +0200
@@ -13,12 +13,11 @@
 
 routers.a:       $(OBJ)
 		 @$(RM_COMMAND) -f routers.a
-		 @echo "$(AR) routers.a"
 		 $(FE)$(AR) routers.a $(OBJ)
 		 $(RANLIB) $@
 
 .SUFFIXES:       .o .c
-.c.o:;           @echo "$(CC) $*.c"
+.c.o:
 		 $(FE)$(CC) -c $(CFLAGS) $(INCLUDE) $*.c
 
 rf_change_domain.o:      $(HDRS) rf_change_domain.c      rf_functions.h
Index: exim4-4.80/src/pdkim/Makefile
===================================================================
--- exim4-4.80.orig/src/pdkim/Makefile	2012-09-14 17:07:27.374488977 +0200
+++ exim4-4.80/src/pdkim/Makefile	2012-09-14 17:07:37.082489347 +0200
@@ -4,12 +4,11 @@
 
 pdkim.a:         $(OBJ)
 		 @$(RM_COMMAND) -f pdkim.a
-		 @echo "$(AR) pdkim.a"
 		 $(FE)$(AR) pdkim.a $(OBJ)
 		 $(RANLIB) $@
 
 .SUFFIXES:       .o .c
-.c.o:;           @echo "$(CC) $*.c"
+.c.o:
 		 $(FE)$(CC) -c $(CFLAGS) $(INCLUDE) $*.c
 
 base64.o:           $(HDRS) base64.c
Index: exim4-4.80/src/lookups/Makefile
===================================================================
--- exim4-4.80.orig/src/lookups/Makefile	2012-09-14 17:07:34.374489244 +0200
+++ exim4-4.80/src/lookups/Makefile	2012-09-14 17:07:37.082489347 +0200
@@ -13,15 +13,14 @@
 
 lookups.a:       $(OBJ)
 		 @$(RM_COMMAND) -f lookups.a
-		 @echo "$(AR) lookups.a"
 		 $(FE)$(AR) lookups.a $(OBJ)
 		 $(RANLIB) $@
 
 .SUFFIXES:       .o .c .so
-.c.o:;           @echo "$(CC) $*.c"
+.c.o:
 		 $(FE)$(CC) -c $(CFLAGS) $(INCLUDE) $*.c
 
-.c.so:;          @echo "$(CC) -shared $*.c"
+.c.so:
 		 $(FE)$(CC) $(LOOKUP_$*_INCLUDE) $(LOOKUP_$*_LIBS) -DDYNLOOKUP $(CFLAGS_DYNAMIC) $(CFLAGS) $(INCLUDE) $(DLFLAGS) $*.c -o $@
 
 lf_check_file.o: $(PHDRS) lf_check_file.c  lf_functions.h
Index: exim4-4.80/src/auths/Makefile
===================================================================
--- exim4-4.80.orig/src/auths/Makefile	2012-09-14 17:07:27.374488977 +0200
+++ exim4-4.80/src/auths/Makefile	2012-09-14 17:07:37.082489347 +0200
@@ -13,12 +13,11 @@
 
 auths.a:         $(OBJ)
 		 @$(RM_COMMAND) -f auths.a
-		 @echo "$(AR) auths.a"
 		 $(FE)$(AR) auths.a $(OBJ)
 		 $(RANLIB) $@
 
 .SUFFIXES:       .o .c
-.c.o:;           @echo "$(CC) $*.c"
+.c.o:
 		 $(FE)$(CC) -c $(CFLAGS) $(INCLUDE) $*.c
 
 auth-spa.o:         $(HDRS) auth-spa.c

Attachment: signature.asc
Description: Digital signature


--- End Message ---
--- Begin Message ---
Source: exim4
Source-Version: 4.80-5

We believe that the bug you reported is fixed in the latest version of
exim4, which is due to be installed in the Debian FTP archive.

A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to [email protected],
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Andreas Metzler <[email protected]> (supplier of updated exim4 package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing [email protected])


-----BEGIN PGP SIGNED MESSAGE-----
Hash: RIPEMD160

Format: 1.8
Date: Sun, 23 Sep 2012 12:20:16 +0200
Source: exim4
Binary: exim4-base exim4-config exim4-daemon-light exim4 exim4-daemon-heavy 
exim4-daemon-custom eximon4 exim4-dbg exim4-daemon-light-dbg 
exim4-daemon-heavy-dbg exim4-daemon-custom-dbg exim4-dev
Architecture: source i386 all
Version: 4.80-5
Distribution: unstable
Urgency: low
Maintainer: Exim4 Maintainers <[email protected]>
Changed-By: Andreas Metzler <[email protected]>
Description: 
 exim4      - metapackage to ease Exim MTA (v4) installation
 exim4-base - support files for all Exim MTA (v4) packages
 exim4-config - configuration for the Exim MTA (v4)
 exim4-daemon-custom - custom Exim MTA (v4) daemon with locally set features
 exim4-daemon-custom-dbg - debugging symbols for the Exim MTA (v4) packages
 exim4-daemon-heavy - Exim MTA (v4) daemon with extended features, including 
exiscan-ac
 exim4-daemon-heavy-dbg - debugging symbols for the Exim MTA "heavy" daemon
 exim4-daemon-light - lightweight Exim MTA (v4) daemon
 exim4-daemon-light-dbg - debugging symbols for the Exim MTA "light" daemon
 exim4-dbg  - debugging symbols for the Exim MTA (utilities)
 exim4-dev  - header files for the Exim MTA (v4) packages
 eximon4    - monitor application for the Exim MTA (v4) (X11 interface)
Closes: 683385 687645
Changes: 
 exim4 (4.80-5) unstable; urgency=low
 .
   * Fix grammar error in debian/manpages/exim4-config_files.5. (Thanks,
     Regid Ichira)
   * Fix hardening support. (Thanks, Simon Ruderich)
     + Append $(CPPFLAGS) to CFLAGS, the exim buildsystem does not use it.
     + Set LFLAGS += $(LDFLAGS) in debian/rules.
     Closes: #687645
   * Correct typo in Russian debconf translation. (Thanks, Krasu)
     Closes: #683385
   * Point Vcs-* to git repository.
Checksums-Sha1: 
 c397be4fa48126ae6b170c05dc25cd57ea5a4efc 2157 exim4_4.80-5.dsc
 2fd455a8dd434edb9346490e9aee51d1294c1327 574301 exim4_4.80-5.debian.tar.gz
 20df2c6141802d7f650ac82525d42305004d50dd 1036316 exim4-base_4.80-5_i386.deb
 aed62b6d0a33b19cf267b716f4d60e1b03962aec 209444 eximon4_4.80-5_i386.deb
 ccece4680929c48213a98bfbf2a5fc32b98c6299 627928 
exim4-daemon-light_4.80-5_i386.deb
 ff4f62fa5ed70dbe242a921c1abecd65501ec669 685338 
exim4-daemon-heavy_4.80-5_i386.deb
 95cf47695d529820fd08903bfc7328443ecf8d58 1200934 
exim4-daemon-light-dbg_4.80-5_i386.deb
 44ab6fa17672751eaed84b9202b709645733a168 1346938 
exim4-daemon-heavy-dbg_4.80-5_i386.deb
 5d0c71cae94fc556b8274a7e5081dd6b4a612bae 439782 exim4-dbg_4.80-5_i386.deb
 802f793f02f045fa67b5bbd5aba05dedf378a1df 173566 exim4-dev_4.80-5_i386.deb
 b6028833e1bc828dec44a19e632e2206d17cdb69 477260 exim4-config_4.80-5_all.deb
 db49053773c1df4bbdb5e70ab5f98b1325c35c94 7806 exim4_4.80-5_all.deb
Checksums-Sha256: 
 767a46cdf10313d5d27031cb9a46eb50939f4e44719e7a160baab7c0c3aa55dd 2157 
exim4_4.80-5.dsc
 91e7c13b910ac7eb25fb723905f3b72d144b4048224e173dc163cd44c21fd97c 574301 
exim4_4.80-5.debian.tar.gz
 54bd5ecb0782cb311a1a7df05e1ffa134d0bffc2e06c6c689f237b85e9baf0aa 1036316 
exim4-base_4.80-5_i386.deb
 87421047e7a502b1bd8f9179c522e8ab47bd1e3ed68d72999949c7e8bded0b9f 209444 
eximon4_4.80-5_i386.deb
 69b10a868d81272cba1cecde88770255f1834ffe1eb81aa54021a83f4d8a4240 627928 
exim4-daemon-light_4.80-5_i386.deb
 7eebe46dde3f2edc4ee7db70aea8ae04633bb4320bd6afc2674941b80ab30668 685338 
exim4-daemon-heavy_4.80-5_i386.deb
 86b44feeacb25ae30572235a3dc91da5776c0a7d172d4b9ac641bf85a1590e5b 1200934 
exim4-daemon-light-dbg_4.80-5_i386.deb
 e49f24ac81f0c8fe0898a97f2462233476aa0416e14801c4dcddb7afeaec11f7 1346938 
exim4-daemon-heavy-dbg_4.80-5_i386.deb
 31bf033cd661b4be5393cdd680f83d36ca138fba0e9b18195fc450bad15af5ed 439782 
exim4-dbg_4.80-5_i386.deb
 fc3e1f4bd8d65037877762f4bbdcc2abd19c11285daf294bcb581dfece086259 173566 
exim4-dev_4.80-5_i386.deb
 46504b01f8502a6e079a15bb1cd264fb9891a2d4b157b6adc01bdf85a3d256a6 477260 
exim4-config_4.80-5_all.deb
 05b8aa2cc73aab4fb78d2a562de93ff70bc0b3b6cb049cabea9eca027107392b 7806 
exim4_4.80-5_all.deb
Files: 
 21e6cab381babf898cca8dc642c2d041 2157 mail standard exim4_4.80-5.dsc
 222090a8d6df33354c3911b0df624bf5 574301 mail standard 
exim4_4.80-5.debian.tar.gz
 f99be5451f8970dd503c7ab3a16af806 1036316 mail standard 
exim4-base_4.80-5_i386.deb
 5c7bd3d7188ffe2fb1359a644f3b3a0e 209444 mail optional eximon4_4.80-5_i386.deb
 03cc1a5e126a4dc36ada513b925d97a3 627928 mail standard 
exim4-daemon-light_4.80-5_i386.deb
 91c0022f6a869e8cbf7d844a0df2b965 685338 mail optional 
exim4-daemon-heavy_4.80-5_i386.deb
 b31d87e8c87958d3a95aca0fb2390c27 1200934 debug extra 
exim4-daemon-light-dbg_4.80-5_i386.deb
 74b57b5068b02eea319479b7e9ee613d 1346938 debug extra 
exim4-daemon-heavy-dbg_4.80-5_i386.deb
 24c6ca7784372edb60737d0d870e64e1 439782 debug extra exim4-dbg_4.80-5_i386.deb
 2f110f5ded0a540ad23f3cddb847fcc2 173566 mail extra exim4-dev_4.80-5_i386.deb
 a4427509657fdfc87da442c580f0dd28 477260 mail standard 
exim4-config_4.80-5_all.deb
 570368f5f91789282028ff16aecd20fb 7806 mail standard exim4_4.80-5_all.deb

-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.12 (GNU/Linux)

iEYEAREDAAYFAlBe5JIACgkQHTOcZYuNdmMxygCZAQBn4o6KmS5oDDS1RUiQRlNj
cQgAn2zBc7ZcJhfGKqfMvAGB6+Gi5FaA
=C41/
-----END PGP SIGNATURE-----

--- End Message ---

Reply via email to