Add workaround for non-standard MIME encoding types used by Microsoft.
authorChris Hanson <org/chris-hanson/cph>
Thu, 25 Oct 2001 15:57:16 +0000 (15:57 +0000)
committerChris Hanson <org/chris-hanson/cph>
Thu, 25 Oct 2001 15:57:16 +0000 (15:57 +0000)
v7/src/imail/imail-top.scm

index 28648d612cc4f9c53f6ad7a2dbfac272a57d63cf..2efbd87b5df997321d7f47b4cf4f208a00a00a29 100644 (file)
@@ -1,6 +1,6 @@
 ;;; -*-Scheme-*-
 ;;;
-;;; $Id: imail-top.scm,v 1.275 2001/10/01 16:22:50 cph Exp $
+;;; $Id: imail-top.scm,v 1.276 2001/10/25 15:57:16 cph Exp $
 ;;;
 ;;; Copyright (c) 1999-2001 Massachusetts Institute of Technology
 ;;;
@@ -2620,7 +2620,10 @@ Negative argument means search in reverse."
     (insert-newline mark)))
 \f
 (define (known-mime-encoding? encoding)
-  (memq encoding '(7BIT 8BIT BINARY QUOTED-PRINTABLE BASE64)))
+  (memq encoding
+       '(7BIT 8BIT BINARY QUOTED-PRINTABLE BASE64
+              ;; Microsoft sometimes uses these non-standard values:
+              7-BIT 8-BIT)))
 
 (define (mime-attachment-name info provide-default?)
   (or (mime-body-parameter (mime-info-body info) 'NAME #f)