aboutsummaryrefslogtreecommitdiffstats
path: root/src/ragel
diff options
context:
space:
mode:
Diffstat (limited to 'src/ragel')
-rw-r--r--src/ragel/smtp_base.rl2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ragel/smtp_base.rl b/src/ragel/smtp_base.rl
index 26999eb51..9ff231450 100644
--- a/src/ragel/smtp_base.rl
+++ b/src/ragel/smtp_base.rl
@@ -25,7 +25,7 @@
ctext = 33..39 | 42..91 | 93..126 | UTF8_non_ascii;
dcontent = 33..90 | 94..126 | UTF8_non_ascii;
- Let_dig = alpha | digit;
+ Let_dig = alpha | digit | UTF8_non_ascii;
Ldh_str = ( alpha | digit | "_" | "-" )* Let_dig;
quoted_pairSMTP = "\\" 32..126;