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

Fixed non-standard behavior for the encoded-character extension.

parent d2cbd795
No related branches found
No related tags found
No related merge requests found
...@@ -7,5 +7,5 @@ if address :contains "from" "idiot.com" { ...@@ -7,5 +7,5 @@ if address :contains "from" "idiot.com" {
} elsif header :contains "subject" "idiot" { } elsif header :contains "subject" "idiot" {
fileinto "INBOX.${hex: 49 44 49 4F 54}"; fileinto "INBOX.${hex: 49 44 49 4F 54}";
} else { } else {
fileinto "INBOX.${unicode: 0052 00e6}vh${unicode: 00f8 006c}"; fileinto "INBOX.${unicode: 0052 00E6}vh${unicode: 00F8 006C}";
} }
...@@ -59,7 +59,8 @@ static bool _skip_whitespace ...@@ -59,7 +59,8 @@ static bool _skip_whitespace
continue; continue;
} }
if ( **in != ' ' && **in != '\n' ) /* Loose LF is non-standard */ /* (Loose LF is non-standard) */
if ( **in != ' ' && **in != '\n' && **in != '\t' )
break; break;
(*in)++; (*in)++;
...@@ -78,8 +79,9 @@ static bool _parse_hexint ...@@ -78,8 +79,9 @@ static bool _parse_hexint
if ( (**in) >= '0' && (**in) <= '9' ) if ( (**in) >= '0' && (**in) <= '9' )
*result = ((*result) << 4) + (**in) - ((unsigned int) '0'); *result = ((*result) << 4) + (**in) - ((unsigned int) '0');
/* Lower-case version is not allowed by RFC
else if ( (**in) >= 'a' && (**in) <= 'f' ) else if ( (**in) >= 'a' && (**in) <= 'f' )
*result = ((*result) << 4) + (**in) - ((unsigned int) 'a') + 0x0a; *result = ((*result) << 4) + (**in) - ((unsigned int) 'a') + 0x0a;*/
else if ( (**in) >= 'A' && (**in) <= 'F' ) else if ( (**in) >= 'A' && (**in) <= 'F' )
*result = ((*result) << 4) + (**in) - ((unsigned int) 'A') + 0x0a; *result = ((*result) << 4) + (**in) - ((unsigned int) 'A') + 0x0a;
else else
......
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.