Skip to content
Snippets Groups Projects
Commit 8de497f0 authored by Stephan Bosch's avatar Stephan Bosch
Browse files

Added stripping of right white space from header content.

parent ed2c80bc
No related branches found
No related tags found
No related merge requests found
......@@ -3,7 +3,6 @@ Next (in order of descending priority/precedence):
* Full standards compliance review for the engine and all fully implemented
sieve extensions. Issues discovered so far:
- Header test does not strip trailing whitespace
- Fix/Report issues listed in 'doc/rfc/RFC Controversy.txt'
* Code cleanup
* Full security review. Enforce limits on number of created objects, script
......
......@@ -144,6 +144,20 @@ static bool tst_header_operation_dump
* Code execution
*/
static inline string_t *_header_right_trim(const char *raw)
{
string_t *result;
int i;
for ( i = strlen(raw)-1; i >= 0; i-- ) {
if ( raw[i] != ' ' && raw[i] != '\t' ) break;
}
result = t_str_new(i+1);
str_append_n(result, raw, i + 1);
return result;
}
static int tst_header_operation_execute
(const struct sieve_operation *op ATTR_UNUSED,
const struct sieve_runtime_env *renv, sieve_size_t *address)
......@@ -200,7 +214,10 @@ static int tst_header_operation_execute
int i;
for ( i = 0; !matched && headers[i] != NULL; i++ ) {
if ( (ret=sieve_match_value(mctx, headers[i], strlen(headers[i]))) < 0 )
string_t *theader = _header_right_trim(headers[i]);
if ( (ret=sieve_match_value(mctx, str_c(theader), str_len(theader)))
< 0 )
{
result = FALSE;
break;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment

Consent

On this website, we use the web analytics service Matomo to analyze and review the use of our website. Through the collected statistics, we can improve our offerings and make them more appealing for you. Here, you can decide whether to allow us to process your data and set corresponding cookies for these purposes, in addition to technically necessary cookies. Further information on data protection—especially regarding "cookies" and "Matomo"—can be found in our privacy policy. You can withdraw your consent at any time.