diff options
author | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2016-11-25 15:27:22 +0000 |
---|---|---|
committer | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2016-11-25 15:27:22 +0000 |
commit | 8eacee21da2b2a78759fc03d90f609c1136d1835 (patch) | |
tree | 5a8632cefc102ee0861f414d5c1f722f94ef0033 /src | |
parent | 45a5a84c71b49fed9fc1419e86a0b9cd0631df7c (diff) | |
download | rspamd-8eacee21da2b2a78759fc03d90f609c1136d1835.tar.gz rspamd-8eacee21da2b2a78759fc03d90f609c1136d1835.zip |
[Fix] Relax requirements for Received as gmail cannot RFC
Diffstat (limited to 'src')
-rw-r--r-- | src/ragel/smtp_received.rl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ragel/smtp_received.rl b/src/ragel/smtp_received.rl index c1fd46703..8b88d4ffe 100644 --- a/src/ragel/smtp_received.rl +++ b/src/ragel/smtp_received.rl @@ -42,7 +42,7 @@ no_fold_literal = "[" dtext* "]"; id_right = dot_atom_text | no_fold_literal; msg_id = "<" id_left "@" id_right ">"; - ID = CFWS "ID"i FWS ( Atom | msg_id ); + ID = CFWS "ID"i FWS ( Dot_string | msg_id ); For = CFWS "FOR"i FWS ( Path | Mailbox ) >For_Start %For_End; Additional_Registered_Clauses = CFWS Atom FWS String; |