aboutsummaryrefslogtreecommitdiffstats
path: root/smtpd
diff options
context:
space:
mode:
authorgilles <gilles@openbsd.org>2012-08-26 13:38:43 +0000
committergilles <gilles@openbsd.org>2012-08-26 13:38:43 +0000
commit97938f890773ac6aebb99decf54a4aa5f99f09cf (patch)
tree6bbbaf5cabd05aa5790de6fb13dd0e553e0e50be /smtpd
parent- define ZLIB_BUFFER_SIZE instead of hardcoding 8192 (diff)
downloadOpenSMTPD-97938f890773ac6aebb99decf54a4aa5f99f09cf.tar.xz
OpenSMTPD-97938f890773ac6aebb99decf54a4aa5f99f09cf.zip
- use the same compression algorithm, gzip, for message file and envelopes
- rename compress_zlib.c to compress_gzip.c with this commit it is possible to inspect a compressed queue with gzcat :)
Diffstat (limited to 'smtpd')
-rw-r--r--smtpd/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/smtpd/Makefile b/smtpd/Makefile
index 407aabc4..ee59922e 100644
--- a/smtpd/Makefile
+++ b/smtpd/Makefile
@@ -1,4 +1,4 @@
-# $OpenBSD: Makefile,v 1.48 2012/08/25 23:35:09 chl Exp $
+# $OpenBSD: Makefile,v 1.49 2012/08/26 13:38:43 gilles Exp $
.PATH: ${.CURDIR}/.. ${.CURDIR}/../../../lib/libc/asr
@@ -16,7 +16,7 @@ SRCS= aliases.c auth.c bounce.c compress_backend.c config.c \
# backends
SRCS+= auth_bsd.c
SRCS+= auth_pwd.c
-SRCS+= compress_zlib.c
+SRCS+= compress_gzip.c
SRCS+= delivery_filename.c
SRCS+= delivery_maildir.c
SRCS+= delivery_mbox.c