- Oct 24, 2019
-
-
Stephan Bosch authored
-
- Oct 16, 2019
-
-
Stephan Bosch authored
-
- Jan 01, 2018
-
-
Stephan Bosch authored
-
- Dec 15, 2017
-
-
Stephan Bosch authored
Also dropped the single-letter identifier for most fields to prevent conflicts with mail user variables; these were undocumented anyway.
-
Stephan Bosch authored
Cleanup performed with the following semantic patch: @@ expression E; @@ - if (E != NULL) { - timeout_remove(&E); - } + timeout_remove(&E);
-
Stephan Bosch authored
Cleanup performed with the following semantic patch: @@ expression E; @@ - if (E != NULL) { - io_remove(&E); - } + io_remove(&E); @@ expression E; @@ - if (E != NULL) { - io_remove_closed(&E); - } + io_remove_closed(&E);
-
- Oct 05, 2017
-
-
Stephan Bosch authored
Mirrors imap fix in Dovecot: 42149f48624b82fdf9631c256497580154c2e412 It's impossible for the command's pointer to be NULL at this point. Previously, the command_find() would have returned NULL, but this check presumably short-circuits that search in the trivial case, so has some real use. Problem now found by GCC 7.
-
- Feb 26, 2017
-
-
Stephan Bosch authored
This used strftime() directly and allocated memory from the heap before i_fatal(). It also used printf() to send the BYE message, which will only work right when the service is running stand-alone.
-
- Feb 22, 2017
-
-
Timo Sirainen authored
-
- Jan 01, 2017
-
-
Stephan Bosch authored
-
- Dec 30, 2016
-
-
Stephan Bosch authored
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
-
- Nov 13, 2016
-
-
Stephan Bosch authored
Apparently, this causes GCC warnings.
-
- Nov 03, 2016
-
-
Stephan Bosch authored
This avoids accidents with the array numbering being wrong.
-
- Nov 02, 2016
-
-
Timo Sirainen authored
-
- Oct 21, 2016
-
-
Stephan Bosch authored
This at least partially replaces the "rawlog" post-login binary. For now the "rawlog" binary supports some parameters, which aren't configurable for rawlog_dir.
-
- Aug 28, 2016
-
-
Stephan Bosch authored
Clang -Wvargargs complained about passing a bool argument to va_start().
-
- Aug 25, 2016
-
-
Stephan Bosch authored
Found with clang -Wstrict-bool.
-
- Jun 09, 2016
-
-
Aki Tuomi authored
-
- May 30, 2016
-
-
Martti Rannanjärvi authored
Plain t_malloc was deprecated in dovecot.
-
- May 15, 2016
-
-
Stephan Bosch authored
This could have happened with Maildir/mbox and autoexpunging. Mimics Dovecot/IMAP change ddffbb277e212adb9d594b3d7d1e1d39fa78f7c6.
-
Stephan Bosch authored
Mimics Dovecot/IMAP change 1001bda65e9f592d852a26ddd6a993f7973050bf.
-
- Jan 03, 2016
-
-
Stephan Bosch authored
-
- Oct 29, 2015
-
-
Stephan Bosch authored
This allows completely disabling Sieve processing for a particular user.
-
- Sep 23, 2015
-
-
Stephan Bosch authored
-
- Sep 07, 2015
-
-
Stephan Bosch authored
-
- May 13, 2015
-
-
Stephan Bosch authored
-
- Jan 08, 2015
-
-
Stephan Bosch authored
-
- Oct 19, 2014
-
-
Stephan Bosch authored
-
- Aug 23, 2014
-
-
Stephan Bosch authored
Changed handling of ENOSPACE to a normal temporary failure and added handling of ENOQUOTA as a user error. Patch by Timo Sirainen.
-
- Jul 23, 2014
-
-
Stephan Bosch authored
Doveadm-sieve plugin may be broken at this point; not tested so far.
-
- Jun 18, 2014
-
-
Stephan Bosch authored
Most important change is that mail service_user was not freed.
-
- Jun 17, 2014
-
-
Stephan Bosch authored
Parallel to identical Dovecot change for imap and pop3.
-
- Jan 01, 2014
-
-
Stephan Bosch authored
-
- Jun 02, 2013
-
-
Stephan Bosch authored
This change is bigger than I would have liked, so this needs to be tested more.
-
- May 09, 2013
-
-
Stephan Bosch authored
Sieve storage now updates sieve attributes in the user's INBOX if used by ManageSieve.
-
- Apr 19, 2013
-
-
Stephan Bosch authored
Added flag to prevent warnings about non-link active scripts and disable critical error logging. A rather fundamental synchronization problem remains to be solved.
-
- Apr 06, 2013
-
-
Stephan Bosch authored
-
- Oct 03, 2012
-
-
Stephan Bosch authored
-
- Aug 12, 2012
-
-
Stephan Bosch authored
-
- Apr 22, 2012
-
-
Stephan Bosch authored
- Built generic interface for alternative script sources. - Implemented dict script location. NOTE: ManageSieve will not work with this yet, nor will sieve_before/sieve_after.
-