Variable: rfc2047-allow-incomplete-encoded-text
rfc2047-allow-incomplete-encoded-text is a customizable variable
defined in rfc2047.el.gz.
Value
t
Documentation
Non-nil means allow incomplete encoded-text in successive encoded-words.
Dividing of encoded-text in the place other than character boundaries violates RFC2047 section 5, while we have a capability to decode it. If it is non-nil, the decoder will decode B- or Q-encoding in each encoded-word, concatenate them, and decode it by charset. Otherwise, the decoder will fully decode each encoded-word before concatenating them.
Source Code
;; Defined in /usr/src/emacs/lisp/mail/rfc2047.el.gz
(defcustom rfc2047-allow-incomplete-encoded-text t
"Non-nil means allow incomplete encoded-text in successive encoded-words.
Dividing of encoded-text in the place other than character boundaries
violates RFC2047 section 5, while we have a capability to decode it.
If it is non-nil, the decoder will decode B- or Q-encoding in each
encoded-word, concatenate them, and decode it by charset. Otherwise,
the decoder will fully decode each encoded-word before concatenating
them."
:type 'boolean)