diff options
author | grant <grant> | 2004-05-30 08:48:09 +0000 |
---|---|---|
committer | grant <grant> | 2004-05-30 08:48:09 +0000 |
commit | 53752b4dbd95cbd7910a579322002b6ab6a07896 (patch) | |
tree | 9c4e0e8061585d6937115ca08ce1f8cc4249f337 | |
parent | 5cf47f50d19d45f84c7f670d7888043685247eaf (diff) | |
download | pkgsrc-53752b4dbd95cbd7910a579322002b6ab6a07896.tar.gz |
Pull up revision 1.1 (requested by abs in ticket #28):
Update exim3 to exim-3.36nb2
- Fix buffer overflows listed at http://www.guninski.com/exim1.html
-rw-r--r-- | mail/exim3/patches/patch-aa | 104 | ||||
-rw-r--r-- | mail/exim3/patches/patch-ad | 13 |
2 files changed, 117 insertions, 0 deletions
diff --git a/mail/exim3/patches/patch-aa b/mail/exim3/patches/patch-aa new file mode 100644 index 00000000000..5044a6910b2 --- /dev/null +++ b/mail/exim3/patches/patch-aa @@ -0,0 +1,104 @@ +$NetBSD: patch-aa,v 1.1.2.2 2004/05/30 08:48:09 grant Exp $ + +--- Local/Makefile.netbsd.orig Fri May 7 18:36:39 2004 ++++ Local/Makefile.netbsd +@@ -78,7 +78,7 @@ + # CHGRP_COMMAND=/usr/bin/chgrp + # MV_COMMAND=/bin/mv + # RM_COMMAND=/bin/rm +-# PERL_COMMAND=/usr/bin/perl ++PERL_COMMAND=@PREFIX@/bin/perl + + + # The following macro can be used to change the command for building a library +@@ -92,8 +92,8 @@ + # appropriate code is included in the binary. You then need to set up the + # runtime configuration to make use of the mechanism(s) selected. + +-# AUTH_CRAM_MD5=yes +-# AUTH_PLAINTEXT=yes ++AUTH_CRAM_MD5=yes ++AUTH_PLAINTEXT=yes + + + # The binary directory: This variable defines where the exim binary will be +@@ -103,7 +103,7 @@ + # installed in this directory. There is no default for this variable built into + # the source files; it must be set in one of the local configuration files. + +-BIN_DIRECTORY=/usr/exim/bin ++BIN_DIRECTORY=@PREFIX@/sbin + + + # The default distribution of Exim contains only the plain text form of the +@@ -121,14 +121,14 @@ BIN_DIRECTORY=/usr/exim/bin + # files. Both the name of the command and the suffix that it adds to files + # need to be defined here. See also the EXICYCLOG_MAX configuration. + +-COMPRESS_COMMAND=/opt/gnu/bin/gzip ++COMPRESS_COMMAND=@GZIP_CMD@ + COMPRESS_SUFFIX=gz + + + # If the exigrep utility is fed compressed log files, it tries to uncompress + # them using this command. + +-ZCAT_COMMAND=/opt/gnu/bin/zcat ++ZCAT_COMMAND=@GZCAT@ + + + # The runtime configuration file: This variable defines where Exim's runtime +@@ -137,7 +137,7 @@ ZCAT_COMMAND=/opt/gnu/bin/zcat + # location of all other runtime files and directories can be changed in the + # runtime configuration file. + +-CONFIGURE_FILE=/usr/exim/configure ++CONFIGURE_FILE=@PKG_SYSCONFDIR@/configure + + + # In some installations there may be multiple machines sharing file systems, +@@ -243,7 +243,7 @@ EXICYCLOG_MAX=10 + # are defaulted in the OS/Makefile-Default file, and can be overridden + # in local OS-specific make files. + +-EXIM_MONITOR=eximon.bin ++# EXIM_MONITOR=eximon.bin + + + # Compiling in support for embedded Perl: If you want to be able to +@@ -286,7 +286,7 @@ EXIM_MONITOR=eximon.bin + # "panic", or "reject" to form the final file name. For example, some + # installations may want something like this: + +-# LOG_FILE_PATH=/var/log/exim_%slog ++LOG_FILE_PATH=/var/log/exim/%slog + + # which results in files with names /var/log/exim_mainlog, etc. The directory + # in which the log files are placed must exist; Exim does not try to create +@@ -411,7 +411,7 @@ LOOKUP_LSEARCH=yes + # the file name, allowing sites that run two separate daemons to distinguish + # them. Some installations may want something like this + +-# PID_FILE_PATH=/var/lock/exim%s.pid ++PID_FILE_PATH=/var/run/exim%s.pid + + # If PID_FILE_PATH is not defined, Exim writes a file in its spool directory + # (see SPOOL_DIRECTORY below) with the name "exim-daemon.pid" for the standard +@@ -460,7 +460,7 @@ ROUTER_QUERYPROGRAM=yes + # uid and gid. + + # Many installations will want something like this: +-# SPOOL_DIRECTORY=/var/spool/exim ++SPOOL_DIRECTORY=/var/spool/exim + + # Others may prefer to keep all Exim things under one directory: + # SPOOL_DIRECTORY=/usr/exim/spool +@@ -567,7 +567,7 @@ TRANSPORT_SMTP=yes + # This one is special-purpose, and commonly not required, so do not include + # it by default. + +-# TRANSPORT_LMTP=yes ++TRANSPORT_LMTP=yes + + + # TCP wrappers: If you want to use tcpwrappers from within Exim, uncomment diff --git a/mail/exim3/patches/patch-ad b/mail/exim3/patches/patch-ad new file mode 100644 index 00000000000..fde81f00b4a --- /dev/null +++ b/mail/exim3/patches/patch-ad @@ -0,0 +1,13 @@ +$NetBSD: patch-ad,v 1.1.2.2 2004/05/30 08:48:32 grant Exp $ + +--- src/accept.c.orig Thu Apr 4 13:56:16 2002 ++++ src/accept.c +@@ -1895,7 +1895,7 @@ if (headers_check_syntax) + char *verb = "is"; + int len; + +- while (*t != ':') *tt++ = *t++; ++ while (*t != ':' && tt < &hname[sizeof(hname)-2]) *tt++ = *t++; + *tt = 0; + + /* Arrange not to include any white space at the end in the |