diff options
author | tv <tv@pkgsrc.org> | 2004-10-22 14:45:47 +0000 |
---|---|---|
committer | tv <tv@pkgsrc.org> | 2004-10-22 14:45:47 +0000 |
commit | ff43024122e09ce1ac0fc6a647bded0b2a09e213 (patch) | |
tree | 6174709ad0465345fd9abf55247c60010ab33035 /mail/ssmtp/patches | |
parent | 09b4166252932ce024d7fc388566a64d07b914e4 (diff) | |
download | pkgsrc-ff43024122e09ce1ac0fc6a647bded0b2a09e213.tar.gz |
Update to 2.61, and obey USE_INET6. Change highlights:
* Fixed two format string vulnerabilities (die() and log_event()) (Closes: #243945)
* Segfaults when trying to send mail with authenticated smtp (Closes: #261975)
* Make address rewriting possible to disable (Closes: #146238)
* Add AuthUser, AuthPass, AuthMethod to configuration file (Closes: #249905)
* Logic to choose cram-md5 authentication is backwards (Closes: #249907)
* SSMTP builds with MD5 support but during the exchange it segfaults (Closes: #249203)
* The source compilaton fails if ./configure --enable-logfile is selected (Closes: #242905)
* SSL/TLS support cannot handle STARTTLS (Closes: #244666)
* Creates bad date headers on some systems (Closes: #230864)
* Fix 'MAIL FROM' problems with cron and the like setting bad 'From:'
address when FromLineOverride=YES is set (Closes: #205513)
* Update version string in ssmtp.c (Closes: #198763)
* Work around missing spaces in headers (Closes: #192445)
Diffstat (limited to 'mail/ssmtp/patches')
-rw-r--r-- | mail/ssmtp/patches/patch-ab | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/mail/ssmtp/patches/patch-ab b/mail/ssmtp/patches/patch-ab index 4cfec55cc05..7cfa05be6a9 100644 --- a/mail/ssmtp/patches/patch-ab +++ b/mail/ssmtp/patches/patch-ab @@ -1,10 +1,13 @@ -$NetBSD: patch-ab,v 1.1.1.1 2003/06/19 20:39:10 jlam Exp $ +$NetBSD: patch-ab,v 1.2 2004/10/22 14:45:47 tv Exp $ ---- ssmtp.c.orig Sun Dec 8 18:26:20 2002 -+++ ssmtp.c Mon Apr 7 01:24:52 2003 -@@ -14,6 +14,7 @@ +--- ssmtp.c.orig Fri Jul 23 01:58:48 2004 ++++ ssmtp.c +@@ -12,8 +12,9 @@ + See COPYRIGHT for the license + */ - #define VERSION "2.60.1" +-#define VERSION "2.60.4" ++#define VERSION "2.61" +#include <sys/types.h> #include <sys/socket.h> |