diff options
author | Arun Isaac | 2021-10-24 02:59:08 +0530 |
---|---|---|
committer | Arun Isaac | 2021-10-24 02:59:08 +0530 |
commit | a00a8e5e4a9ac6ca9a603c799982bcd46137c3de (patch) | |
tree | e7431fecb36830584f9c804dda00efee8ae5d795 /email | |
parent | 9d2c3b593a583eff3a1aa4ce95808644bb0b54ae (diff) | |
download | guile-email-a00a8e5e4a9ac6ca9a603c799982bcd46137c3de.tar.gz guile-email-a00a8e5e4a9ac6ca9a603c799982bcd46137c3de.tar.lz guile-email-a00a8e5e4a9ac6ca9a603c799982bcd46137c3de.zip |
email: Handle Received header with two tokens but no timestamp.
* email/email.scm (parse-email-headers): Match Received header with
timestamp more precisely.
* tests/email.scm ("Parse Received header with two tokens but no
timestamp"): No test.
Diffstat (limited to 'email')
-rw-r--r-- | email/email.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/email/email.scm b/email/email.scm index 7aea2d3..71f0718 100644 --- a/email/email.scm +++ b/email/email.scm @@ -1043,7 +1043,7 @@ list of header keys and values." (peg:tree (match-pattern fields headers)) `((received . ,(match-lambda* - (`(received ,tokens ,timestamp) + (('received tokens (? date? timestamp)) (list 'received (string-join tokens) timestamp)) (('received tokens ...) (list 'received (string-join tokens))))) |