From 9d82904011516530b6ef1bcd53cef220db485e7a Mon Sep 17 00:00:00 2001 From: Arun Isaac Date: Sat, 28 Sep 2019 13:27:33 +0530 Subject: email: Tolerate decoding errors in MIME encoded words. * email/email.scm (decode-mime-encoded-word): Tolerate decoding errors in MIME encoded words using the substitute conversion strategy. * tests/email.scm ("tolerate decoding errors in MIME encoded words"): New test. Reported-by: Christopher Baines --- email/email.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'email/email.scm') diff --git a/email/email.scm b/email/email.scm index ef2efe9..a791a0e 100644 --- a/email/email.scm +++ b/email/email.scm @@ -564,7 +564,7 @@ ((q) q-encoding-decode) (else (error "Encoding of MIME word unknown" word))) encoded-text) - charset))) + charset 'substitute))) 'post)) (define (body->mime-entities body boundary) -- cgit v1.2.3