- Feb 12, 2025
-
-
Stephan Bosch authored
-
Stephan Bosch authored
-
Stephan Bosch authored
It doesn't match Dovecot convention.
-
Stephan Bosch authored
-
- Nov 20, 2023
-
-
Timo Sirainen authored
-
Timo Sirainen authored
-
- Jan 12, 2023
-
-
Timo Sirainen authored
-
- Nov 17, 2022
-
-
Timo Sirainen authored
-
- Nov 16, 2022
-
-
Timo Sirainen authored
-
- Mar 16, 2021
-
-
Timo Sirainen authored
mailbox_get_last_error() should be used only for client-visible errors. The internal errors should be used for logging.
-
- Aug 12, 2020
-
-
Timo Sirainen authored
-
- Mar 24, 2020
-
-
Timo Sirainen authored
Found by latest clang scan-build.
-
- Feb 03, 2020
-
-
Timo Sirainen authored
-
- Oct 03, 2019
-
-
Stephan Bosch authored
-
- Jun 18, 2019
-
-
Martti Rannanjärvi authored
This makes the use of compound literal explicit.
-
- May 09, 2019
-
-
Timo Sirainen authored
-
- May 03, 2019
-
-
Stephan Bosch authored
-
- Apr 28, 2018
-
-
Phil Carmody authored
The tests blow through these limits all of the time, which makes the logs very noisy. These three cases are about 4/5ths of the test logs. Presumably they're the ones that are also most often needing expansion in real world use too. Signed-off-by:
Phil Carmody <phil@dovecot.fi>
-
- Apr 25, 2018
-
-
Stephan Bosch authored
The str_append_n() function is now deprecated. At no occasion, the occurence of NUL in the data is possible or relevant, so each instance is replaced with str_append_data() rather than str_append_max().
-
- Jan 01, 2018
-
-
Stephan Bosch authored
-
- Dec 16, 2017
-
-
Stephan Bosch authored
Only calls that require space allocation are to be changed.
-
- Nov 26, 2017
-
-
Stephan Bosch authored
Now using struct smtp_address rather than sieve_address. In some cases, struct message_address may prove to be more suitable, but this is the best fit for now. Adjusted to the renamed fields in struct mail_deliver_context.
-
- Sep 22, 2017
-
-
Martti Rannanjärvi authored
-
- Jan 11, 2017
-
-
Stephan Bosch authored
The situation where no headers are found was not always handled correctly.
-
- 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
-
Stephan Bosch authored
-
- Aug 20, 2016
-
-
Stephan Bosch authored
perl -i -pe 's/unsigned int ([^,:;]+):1;/bool $1:1;/' **/*.[ch]
-
- Jun 20, 2016
-
-
Stephan Bosch authored
This prevents trouble with o_stream_nsend_istream() later.
-
- May 16, 2016
-
-
Timo Sirainen authored
-
- May 09, 2016
-
-
Stephan Bosch authored
The previous change prompted some futher code review and similar improvements/fixes were applied at various places in the code.
-
- Apr 05, 2016
-
-
Stephan Bosch authored
Futher changes are needed to prevent accessing the envelope in the first place.
-
- Jan 08, 2016
-
-
Stephan Bosch authored
Added support for getting message part information and content.
-
- Jan 03, 2016
-
-
Stephan Bosch authored
-
Stephan Bosch authored
-
Stephan Bosch authored
lib-sieve: mime extension: Fixed the header :mime :anychild test to work properly outside a foreverypart loop.
-
Stephan Bosch authored
lib-sieve: message body: Fixed erroneous changes to the message part tree structure performed when re-parsing the message.
-
- Jan 02, 2016
-
-
Stephan Bosch authored
-
Stephan Bosch authored
-
- Dec 30, 2015
-
-
Stephan Bosch authored
lib-sieve: message body: Fixed assert failure occurring when text extraction is attempted on a empty or broken text part.
-