diff options
Diffstat (limited to 'imap')
| -rw-r--r-- | imap/ChangeLog | 9 | ||||
| -rw-r--r-- | imap/configure.ac | 4 | ||||
| -rw-r--r-- | imap/imaplogin.c | 2 | 
3 files changed, 12 insertions, 3 deletions
| diff --git a/imap/ChangeLog b/imap/ChangeLog index 23ba001..26df793 100644 --- a/imap/ChangeLog +++ b/imap/ChangeLog @@ -1,3 +1,12 @@ +5.1.5 + +2022-01-16  Sam Varshavchik  <mrsam@courier-mta.com> + +	* Fix minor memory leaks. If valgrind is installed, "make check" will +	run it to check for memory leaks. + +	* Convert to PCRE2. +  2022-01-15  Sam Varshavchik  <mrsam@courier-mta.com>  	* libcouriertls: use ALARM to kill couriertls if the server process diff --git a/imap/configure.ac b/imap/configure.ac index d8c4a3b..3f1358f 100644 --- a/imap/configure.ac +++ b/imap/configure.ac @@ -1,10 +1,10 @@  dnl Process this file with autoconf to produce a configure script.  dnl  dnl -dnl Copyright 1998 - 2021 Double Precision, Inc.  See COPYING for +dnl Copyright 1998 - 2022 Double Precision, Inc.  See COPYING for  dnl distribution information. -AC_INIT(courier-imap, 5.1.4, [courier-users@lists.sourceforge.net]) +AC_INIT(courier-imap, 5.1.5, [courier-users@lists.sourceforge.net])  >confdefs.h  # Kill PACKAGE_ macros diff --git a/imap/imaplogin.c b/imap/imaplogin.c index 7b407fa..5e1255b 100644 --- a/imap/imaplogin.c +++ b/imap/imaplogin.c @@ -481,7 +481,7 @@ int main(int argc, char **argv)  	writes("* OK [CAPABILITY ");  	imapcapability();  	writes("] Courier-IMAP ready. " -	       "Copyright 1998-2021 Double Precision, Inc.  " +	       "Copyright 1998-2022 Double Precision, Inc.  "  	       "See COPYING for distribution information.\r\n");  	fprintf(stderr, "DEBUG: Connection, ip=[%s], port=[%s]\n", ip, port);  	writeflush(); | 
