summary refs log tree commit diff
path: root/tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests')
-rw-r--r--tests/email.scm10
1 files changed, 10 insertions, 0 deletions
diff --git a/tests/email.scm b/tests/email.scm
index 52f38b6..50625f1 100644
--- a/tests/email.scm
+++ b/tests/email.scm
@@ -523,6 +523,16 @@ Received: from zzz ([1.2.3.5]) by ooo.ooo.com  with Maccrosoft SMTPSVC(5.5.1877.
                   (charset . "utf-8"))
     (content-transfer-encoding . 7bit)))
 
+;; See ยง6.4 in RFC2045.
+(test-alist= "Assume application/octet-stream Content-Type if Content-Transfer-Encoding is unrecognized"
+  (parse-email-headers
+   "Content-Transfer-Encoding: some-unrecognized-encoding
+Content-Type: text/plain; charset=utf-8
+")
+  `((content-type (type . application)
+                  (subtype . octet-stream))
+    (content-transfer-encoding . binary)))
+
 
 ;;;
 ;;; Email addresses