Include patchset from the community and Debian package maintainers to support OpenSSL version 1.1. This is the more feature rich version of imapproxy. Last official changelog entries: 2016-09-12 Paul Lesniewski <paul@squirrelmail.org> * Added support for systemd startup * Added support for accepting pre-auth ID commands (RFC 2971) * Added support for DNS RR to cycle through multiple IMAP server backends (thanks to Wolfgang Breyha) * Added ability to restrict DNS lookups to IPv4 or IPv6 only (thanks to Wolfgang Breyha) * Make EGD support conditional, provide compatibility with LibreSSL, other small fixes provided by the BSD team * Fixed anomalous crashes recycling used connections (thanks to Emmanuel Dreyfus) * Retain compatibility with older OpenSSL versions (thanks to Wolfgang Breyha) * Make use of the no_new_privs flag (Linux only) when becoming non-root (thanks to Shawn Landden) 2014-01-20 Paul Lesniewski <paul@squirrelmail.org> * Added support for up to TLS v1.2 (thanks to Emmanuel Dreyfus) * Added support for ECDHE ciphers (thanks to Emmanuel Dreyfus) * Added ability to manually specify TLS ciphers (thanks to Emmanuel Dreyfus) * Added server certificate validation (thanks to Emmanuel Dreyfus) 2012-01-01 Paul Lesniewski <paul@squirrelmail.org> * Fixed problem where default TLS CA data would never be loaded (thanks to Orion Poplawski) * Fixed bug in SSL context initialization
18 lines
579 B
C
18 lines
579 B
C
$NetBSD: patch-fix-size_t-formatters-hash.c,v 1.1 2020/04/17 11:28:02 tm Exp $
|
|
|
|
Fix size_t formatters
|
|
|
|
Richard Laager <rlaager@wiktel.com>
|
|
https://sourceforge.net/p/squirrelmail/mailman/message/35526927/
|
|
|
|
--- src/hash.c.orig
|
|
+++ src/hash.c
|
|
@@ -69,7 +69,7 @@
|
|
|
|
if ( Size > sizeof Hash_Buffer )
|
|
{
|
|
- syslog(LOG_ERR, "Hash(): Maximum of %d for '%s' exceeds architectural limit of %d", Size, Input_Key, sizeof Hash_Buffer );
|
|
+ syslog(LOG_ERR, "Hash(): Maximum of %d for '%s' exceeds architectural limit of %zd", Size, Input_Key, sizeof Hash_Buffer );
|
|
exit(1);
|
|
}
|
|
|