Updated copyright notices to include the year 2018.
Updated copyright notices to include the year 2017.
global: Replaced all instances of memset(p, 0, sizeof(*p)) with the new i_zero() macro. Used the following script: C_FILES=`git ls-files *.c` H_FILES=`git ls-files *.h` for F in "$C_FILES $H_FILES"; do echo "$F" perl -p -i -e 's/safe_memset\(&\(?([^,]*)\)?,\s*0,\s*sizeof\(\g1\)\)/i_zero_safe(&$1)/g' $F perl -p -i -e 's/safe_memset\(([^,]*),\s*0,\s*sizeof\(\*\g1\)\)/i_zero_safe($1)/g' $F perl -p -i -e 's/memset\(&\(?([^,]*)\)?,\s*0,\s*sizeof\(\g1\)\)/i_zero(&$1)/g' $F perl -p -i -e 's/memset\(([^,]*),\s*0,\s*sizeof\(\*\g1\)\)/i_zero($1)/g' $F done
global: freshen copyright git ls-files | xargs perl -p -i -e 's/(\d+)-201[0-5]/$1-2016/g;s/ (201[0-5]) Dovecot/ $1-2016 Dovecot/'
global: freshen copyright Robomatically: git ls-files | xargs perl -p -i -e 's/(\d+)-201[0-4]/$1-2015/g;s/ (201[0-4]) Dovecot/ $1-2015 Dovecot/' Happy 2015 everyone! Signed-off-by: Phil Carmody <phil@dovecot.fi>
lib-imap: Use case-insensitive comparisons everywhere for imap_id_send setting parsing. "os" and "os-version" were case-sensitive while others were not. Patch by Apple.
imap: Allow longer ID command parameters without disconnecting the client.
Updated copyright notices to include year 2014.
Oops :) Update copyrights to 2013 without breaking all .c files.
Updated copyright notices to include year 2013.
Use imap_append_*string() instead of imap_quote_append*() where possible. This makes it clearer what types of output should be sent.
lib-imap: Renamed imap_dquote_append() to imap_append_quoted()
Updated copyright notices to include year 2012.
lib-imap: Added reference counting to imap parser.
IMAP: Fixed ID command to log the parameters properly. Patch by Mike Abbott / Apple.
Updated copyright notices to include year 2011.
lib-imap: Changed imap_arg accessing APIs. The new one is easier for both coders and static analyzers. --HG-- branch : HEAD
Updated copyright notices to include year 2010. --HG-- branch : HEAD
Updated copyright notices to include year 2009. --HG-- branch : HEAD
Added support for IMAP ID extension. --HG-- branch : HEAD