aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/ragel/smtp_whitespace.rl3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/ragel/smtp_whitespace.rl b/src/ragel/smtp_whitespace.rl
index 5bac17a4e..635d47c92 100644
--- a/src/ragel/smtp_whitespace.rl
+++ b/src/ragel/smtp_whitespace.rl
@@ -23,7 +23,8 @@
Atom = atext+;
Dot_string = Atom ("." Atom)*;
dot_atom_text = atext+ ("." atext+)*;
- FWS = ((WSP* CRLF)? WSP+);
+ #FWS = ((WSP* CRLF)? WSP+);
+ FWS = WSP+; # We work with unfolded headers, so we can simplify machine
comment = "(" (FWS? ctext)* FWS? ")";
CFWS = ((FWS? comment)+ FWS?) | FWS;