- Apr 20, 2023
-
-
Aki Tuomi authored
Is now intended to the used for user deinitialization. This fixes mail_user_session_finished event not being sent with managesieve.
-
- Apr 19, 2023
-
-
Aki Tuomi authored
-
- Feb 03, 2023
- Jan 12, 2023
-
-
Timo Sirainen authored
Also change the callers to not bother storing it separately. Instead, they can just use mail_user_r->service_user.
-
- Jan 03, 2023
-
-
Stephan Bosch authored
-
- Feb 14, 2022
-
-
Timo Sirainen authored
This also drops the trailing period from the log message, which matches the changes to core.
-
- Feb 08, 2022
-
-
Timo Sirainen authored
-
Timo Sirainen authored
-
- May 14, 2021
-
-
Timo Sirainen authored
-
- Mar 06, 2021
-
-
Timo Sirainen authored
-
- Mar 02, 2021
-
-
Timo Sirainen authored
-
- Nov 13, 2019
-
-
Josef 'Jeff' Sipek authored
-
- Oct 28, 2019
-
-
Stephan Bosch authored
This makes more sense with the managesieve_command_name field.
-
- Oct 24, 2019
-
-
Stephan Bosch authored
-
Stephan Bosch authored
-
Stephan Bosch authored
-
Stephan Bosch authored
-
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
-