(find-file-hook, find-file-not-found-hook): Don't use the old ...-hooks.
[bpt/emacs.git] / lisp / gnus / rfc2047.el
CommitLineData
715a2ca2 1;;; rfc2047.el --- functions for encoding and decoding rfc2047 messages
7f0321ff 2;; Copyright (C) 1998, 1999, 2000, 2002 Free Software Foundation, Inc.
c113de23
GM
3
4;; Author: Lars Magne Ingebrigtsen <larsi@gnus.org>
5;; MORIOKA Tomohiko <morioka@jaist.ac.jp>
6;; This file is part of GNU Emacs.
7
8;; GNU Emacs is free software; you can redistribute it and/or modify
9;; it under the terms of the GNU General Public License as published by
10;; the Free Software Foundation; either version 2, or (at your option)
11;; any later version.
12
13;; GNU Emacs is distributed in the hope that it will be useful,
14;; but WITHOUT ANY WARRANTY; without even the implied warranty of
15;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16;; GNU General Public License for more details.
17
18;; You should have received a copy of the GNU General Public License
19;; along with GNU Emacs; see the file COPYING. If not, write to the
20;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
21;; Boston, MA 02111-1307, USA.
22
23;;; Commentary:
24
d49a4975
DL
25;; RFC 2047 is "MIME (Multipurpose Internet Mail Extensions) Part
26;; Three: Message Header Extensions for Non-ASCII Text".
27
c113de23
GM
28;;; Code:
29
7f0321ff
DL
30(eval-when-compile
31 (require 'cl)
32 (defvar message-posting-charset))
c113de23
GM
33
34(require 'qp)
35(require 'mm-util)
7f0321ff 36;; Fixme: Avoid this (used for mail-parse-charset) mm dependence on gnus.
c113de23 37(require 'mail-prsvr)
f2307f18 38(require 'base64)
f2307f18 39(autoload 'mm-body-7-or-8 "mm-bodies")
1c33719f 40
c113de23
GM
41(defvar rfc2047-header-encoding-alist
42 '(("Newsgroups" . nil)
43 ("Message-ID" . nil)
7f0321ff
DL
44 ("\\(Resent-\\)?\\(From\\|Cc\\|To\\|Bcc\\|Reply-To\\|Sender\\)" .
45 address-mime)
c113de23
GM
46 (t . mime))
47 "*Header/encoding method alist.
48The list is traversed sequentially. The keys can either be
f2307f18 49header regexps or t.
c113de23
GM
50
51The values can be:
52
531) nil, in which case no encoding is done;
542) `mime', in which case the header will be encoded according to RFC2047;
7f0321ff
DL
553) `address-mime', like `mime', but takes account of the rules for address
56 fields (where quoted strings and comments must be treated separately);
574) a charset, in which case it will be encoded as that charset;
585) `default', in which case the field will be encoded as the rest
c113de23
GM
59 of the article.")
60
61(defvar rfc2047-charset-encoding-alist
62 '((us-ascii . nil)
63 (iso-8859-1 . Q)
64 (iso-8859-2 . Q)
65 (iso-8859-3 . Q)
66 (iso-8859-4 . Q)
67 (iso-8859-5 . B)
68 (koi8-r . B)
7f0321ff
DL
69 (iso-8859-7 . B)
70 (iso-8859-8 . B)
c113de23 71 (iso-8859-9 . Q)
f2307f18
DL
72 (iso-8859-14 . Q)
73 (iso-8859-15 . Q)
c113de23
GM
74 (iso-2022-jp . B)
75 (iso-2022-kr . B)
76 (gb2312 . B)
676a7cc9
SZ
77 (big5 . B)
78 (cn-big5 . B)
c113de23
GM
79 (cn-gb . B)
80 (cn-gb-2312 . B)
81 (euc-kr . B)
82 (iso-2022-jp-2 . B)
83 (iso-2022-int-1 . B))
84 "Alist of MIME charsets to RFC2047 encodings.
7f0321ff
DL
85Valid encodings are nil, `Q' and `B'. These indicate binary (no) encoding,
86quoted-printable and base64 respectively.")
c113de23
GM
87
88(defvar rfc2047-encoding-function-alist
89 '((Q . rfc2047-q-encode-region)
90 (B . rfc2047-b-encode-region)
91 (nil . ignore))
92 "Alist of RFC2047 encodings to encoding functions.")
93
94(defvar rfc2047-q-encoding-alist
7f0321ff
DL
95 '(("\\(Resent-\\)?\\(From\\|Cc\\|To\\|Bcc\\|Reply-To\\|Sender\\):"
96 . "-A-Za-z0-9!*+/" )
ce9401f3 97 ;; = (\075), _ (\137), ? (\077) are used in the encoded word.
a553a9f5 98 ;; Avoid using 8bit characters.
ce9401f3
DL
99 ;; Equivalent to "^\000-\007\011\013\015-\037\200-\377=_?"
100 ("." . "\010\012\014\040-\074\076\100-\136\140-\177"))
c113de23
GM
101 "Alist of header regexps and valid Q characters.")
102
103;;;
104;;; Functions for encoding RFC2047 messages
105;;;
106
107(defun rfc2047-narrow-to-field ()
108 "Narrow the buffer to the header on the current line."
109 (beginning-of-line)
110 (narrow-to-region
111 (point)
112 (progn
113 (forward-line 1)
114 (if (re-search-forward "^[^ \n\t]" nil t)
115 (progn
116 (beginning-of-line)
117 (point))
118 (point-max))))
119 (goto-char (point-min)))
120
7f0321ff
DL
121(defvar rfc2047-encoding-type 'address-mime
122 "The type of encoding done by `rfc2047-encode-region'.
123This should be dynamically bound around calls to
124`rfc2047-encode-region' to either `mime' or `address-mime'. See
125`rfc2047-header-encoding-alist', for definitions.")
126
c113de23
GM
127(defun rfc2047-encode-message-header ()
128 "Encode the message header according to `rfc2047-header-encoding-alist'.
129Should be called narrowed to the head of the message."
130 (interactive "*")
131 (save-excursion
132 (goto-char (point-min))
133 (let (alist elem method)
134 (while (not (eobp))
135 (save-restriction
136 (rfc2047-narrow-to-field)
137 (if (not (rfc2047-encodable-p))
138 (if (and (eq (mm-body-7-or-8) '8bit)
139 (mm-multibyte-p)
140 (mm-coding-system-p
141 (car message-posting-charset)))
142 ;; 8 bit must be decoded.
143 ;; Is message-posting-charset a coding system?
f2307f18
DL
144 (mm-encode-coding-region
145 (point-min) (point-max)
c113de23
GM
146 (car message-posting-charset)))
147 ;; We found something that may perhaps be encoded.
148 (setq method nil
149 alist rfc2047-header-encoding-alist)
150 (while (setq elem (pop alist))
151 (when (or (and (stringp (car elem))
152 (looking-at (car elem)))
153 (eq (car elem) t))
154 (setq alist nil
155 method (cdr elem))))
7f0321ff
DL
156 (goto-char (point-min))
157 (re-search-forward "^[^:]+: *" nil t)
c113de23 158 (cond
7f0321ff
DL
159 ((eq method 'address-mime)
160 (rfc2047-encode-region (point) (point-max)))
c113de23 161 ((eq method 'mime)
7f0321ff
DL
162 (let (rfc2047-encoding-type)
163 (rfc2047-encode-region (point) (point-max))))
c113de23
GM
164 ((eq method 'default)
165 (if (and (featurep 'mule)
1bde0b39
DL
166 (if (boundp 'default-enable-multibyte-characters)
167 default-enable-multibyte-characters)
c113de23 168 mail-parse-charset)
7f0321ff 169 (mm-encode-coding-region (point) (point-max)
c113de23
GM
170 mail-parse-charset)))
171 ((mm-coding-system-p method)
1bde0b39
DL
172 (if (and (featurep 'mule)
173 (if (boundp 'default-enable-multibyte-characters)
174 default-enable-multibyte-characters))
7f0321ff 175 (mm-encode-coding-region (point) (point-max) method)))
c113de23
GM
176 ;; Hm.
177 (t)))
178 (goto-char (point-max)))))))
179
a553a9f5
DL
180;; Fixme: This, and the require below may not be the Right Thing, but
181;; should be safe just before release. -- fx 2001-02-08
182(eval-when-compile (defvar message-posting-charset))
183
f2307f18
DL
184(defun rfc2047-encodable-p ()
185 "Return non-nil if any characters in current buffer need encoding in headers.
186The buffer may be narrowed."
a553a9f5 187 (require 'message) ; for message-posting-charset
c113de23 188 (let ((charsets
7f0321ff
DL
189 (mm-find-mime-charset-region (point-min) (point-max))))
190 (and charsets (not (equal charsets (list message-posting-charset))))))
191
192;; Use this syntax table when parsing into regions that may need
193;; encoding. Double quotes are string delimiters, backslash is
194;; character quoting, and all other RFC 2822 special characters are
195;; treated as punctuation so we can use forward-sexp/forward-word to
196;; skip to the end of regions appropriately. Nb. ietf-drums does
197;; things differently.
198(defconst rfc2047-syntax-table
199 (let ((table (make-char-table 'syntax-table '(2))))
200 (modify-syntax-entry ?\\ "\\" table)
201 (modify-syntax-entry ?\" "\"" table)
202 (modify-syntax-entry ?\( "." table)
203 (modify-syntax-entry ?\) "." table)
204 (modify-syntax-entry ?\< "." table)
205 (modify-syntax-entry ?\> "." table)
206 (modify-syntax-entry ?\[ "." table)
207 (modify-syntax-entry ?\] "." table)
208 (modify-syntax-entry ?: "." table)
209 (modify-syntax-entry ?\; "." table)
210 (modify-syntax-entry ?, "." table)
211 (modify-syntax-entry ?@ "." table)
212 table))
c113de23
GM
213
214(defun rfc2047-encode-region (b e)
7f0321ff
DL
215 "Encode words in region B to E that need encoding.
216By default, the region is treated as containing RFC2822 addresses.
217Dynamically bind `rfc2047-encoding-type' to change that."
218 (save-restriction
219 (narrow-to-region b e)
220 (if (eq 'mime rfc2047-encoding-type)
221 ;; Simple case -- treat as single word.
222 (progn
223 (goto-char (point-min))
224 ;; Does it need encoding?
225 (skip-chars-forward "\000-\177" e)
226 (unless (eobp)
227 (rfc2047-encode b e)))
228 ;; `address-mime' case -- take care of quoted words, comments.
229 (with-syntax-table rfc2047-syntax-table
230 (let ((start (point)) ; start of current token
231 end ; end of current token
232 ;; Whether there's an encoded word before the current
233 ;; tpken, either immediately or separated by space.
234 last-encoded)
235 (goto-char (point-min))
236 (condition-case nil ; in case of unbalanced quotes
237 ;; Look for rfc2822-style: sequences of atoms, quoted
238 ;; strings, specials, whitespace. (Specials mustn't be
239 ;; encoded.)
240 (while (not (eobp))
241 (setq start (point))
242 ;; Skip whitespace.
243 (unless (= 0 (skip-chars-forward " \t"))
244 (setq start (point)))
245 (cond
246 ((not (char-after))) ; eob
247 ;; else token start
248 ((eq ?\" (char-syntax (char-after)))
249 ;; Quoted word.
250 (forward-sexp)
251 (setq end (point))
252 ;; Does it need encoding?
253 (goto-char start)
254 (skip-chars-forward "\000-\177" end)
255 (if (= end (point))
256 (setq last-encoded nil)
257 ;; It needs encoding. Strip the quotes first,
258 ;; since encoded words can't occur in quotes.
259 (goto-char end)
260 (delete-backward-char 1)
261 (goto-char start)
262 (delete-char 1)
263 (when last-encoded
264 ;; There was a preceding quoted word. We need
265 ;; to include any separating whitespace in this
266 ;; word to avoid it getting lost.
267 (skip-chars-backward " \t")
268 ;; A space is needed between the encoded words.
269 (insert ? )
270 (setq start (point)
271 end (1+ end)))
272 ;; Adjust the end position for the deleted quotes.
273 (rfc2047-encode start (- end 2))
274 (setq last-encoded t))) ; record that it was encoded
275 ((eq ?. (char-syntax (char-after)))
276 ;; Skip other delimiters, but record that they've
277 ;; potentially separated quoted words.
278 (forward-char)
279 (setq last-encoded nil))
280 (t ; normal token/whitespace sequence
281 ;; Find the end.
282 (forward-word 1)
283 (skip-chars-backward " \t")
284 (setq end (point))
285 ;; Deal with encoding and leading space as for
286 ;; quoted words.
287 (goto-char start)
288 (skip-chars-forward "\000-\177" end)
289 (if (= end (point))
290 (setq last-encoded nil)
291 (when last-encoded
292 (goto-char start)
293 (skip-chars-backward " \t")
294 (insert ? )
295 (setq start (point)
296 end (1+ end)))
297 (rfc2047-encode start end)
298 (setq last-encoded t)))))
299 (error (error "Invalid data for rfc2047 encoding: %s"
300 (buffer-substring b e)))))))
301 (rfc2047-fold-region b (point))))
c113de23
GM
302
303(defun rfc2047-encode-string (string)
7f0321ff
DL
304 "Encode words in STRING.
305By default, the string is treated as containing addresses (see
306`rfc2047-special-chars')."
c113de23
GM
307 (with-temp-buffer
308 (insert string)
309 (rfc2047-encode-region (point-min) (point-max))
310 (buffer-string)))
311
7f0321ff
DL
312(defun rfc2047-encode (b e)
313 "Encode the word(s) in the region B to E.
314By default, the region is treated as containing addresses (see
315`rfc2047-special-chars')."
316 (let* ((mime-charset (mm-find-mime-charset-region b e))
317 (cs (if (> (length mime-charset) 1)
318 ;; Fixme: Instead of this, try to break region into
319 ;; parts that can be encoded separately.
320 (error "Can't rfc2047-encode `%s'"
321 (buffer-substring b e))
322 (setq mime-charset (car mime-charset))
323 (mm-charset-to-coding-system mime-charset)))
324 ;; Fixme: Better, calculate the number of non-ASCII
325 ;; characters, at least for 8-bit charsets.
326 (encoding (if (assq mime-charset
327 rfc2047-charset-encoding-alist)
328 (cdr (assq mime-charset
c113de23 329 rfc2047-charset-encoding-alist))
7f0321ff 330 'B))
c113de23
GM
331 (start (concat
332 "=?" (downcase (symbol-name mime-charset)) "?"
333 (downcase (symbol-name encoding)) "?"))
334 (first t))
7f0321ff
DL
335 (if mime-charset
336 (save-restriction
337 (narrow-to-region b e)
338 (when (eq encoding 'B)
339 ;; break into lines before encoding
340 (goto-char (point-min))
341 (while (not (eobp))
342 (goto-char (min (point-max) (+ 15 (point))))
343 (unless (eobp)
344 (insert ?\n))))
345 (if (and (mm-multibyte-p)
346 (mm-coding-system-p cs))
347 (mm-encode-coding-region (point-min) (point-max) cs))
348 (funcall (cdr (assq encoding rfc2047-encoding-function-alist))
349 (point-min) (point-max))
350 (goto-char (point-min))
351 (while (not (eobp))
352 (unless first
353 (insert ? ))
354 (setq first nil)
355 (insert start)
356 (end-of-line)
357 (insert "?=")
358 (forward-line 1))))))
c113de23
GM
359
360(defun rfc2047-fold-region (b e)
a553a9f5 361 "Fold long lines in region B to E."
c113de23
GM
362 (save-restriction
363 (narrow-to-region b e)
364 (goto-char (point-min))
f2307f18
DL
365 (let ((break nil)
366 (qword-break nil)
367 (bol (save-restriction
368 (widen)
7f0321ff 369 (mm-point-at-bol))))
c113de23 370 (while (not (eobp))
f2307f18
DL
371 (when (and (or break qword-break) (> (- (point) bol) 76))
372 (goto-char (or break qword-break))
373 (setq break nil
374 qword-break nil)
619ac84f 375 (if (looking-at " \t")
7f0321ff 376 (insert ?\n)
619ac84f 377 (insert "\n "))
f2307f18
DL
378 (setq bol (1- (point)))
379 ;; Don't break before the first non-LWSP characters.
380 (skip-chars-forward " \t")
a553a9f5 381 (unless (eobp) (forward-char 1)))
c113de23 382 (cond
f2307f18
DL
383 ((eq (char-after) ?\n)
384 (forward-char 1)
385 (setq bol (point)
386 break nil
387 qword-break nil)
388 (skip-chars-forward " \t")
389 (unless (or (eobp) (eq (char-after) ?\n))
390 (forward-char 1)))
391 ((eq (char-after) ?\r)
392 (forward-char 1))
c113de23 393 ((memq (char-after) '(? ?\t))
f2307f18
DL
394 (skip-chars-forward " \t")
395 (setq break (1- (point))))
396 ((not break)
397 (if (not (looking-at "=\\?[^=]"))
398 (if (eq (char-after) ?=)
399 (forward-char 1)
400 (skip-chars-forward "^ \t\n\r="))
401 (setq qword-break (point))
402 (skip-chars-forward "^ \t\n\r")))
403 (t
404 (skip-chars-forward "^ \t\n\r"))))
405 (when (and (or break qword-break) (> (- (point) bol) 76))
406 (goto-char (or break qword-break))
407 (setq break nil
408 qword-break nil)
619ac84f 409 (if (looking-at " \t")
7f0321ff 410 (insert ?\n)
619ac84f 411 (insert "\n "))
f2307f18
DL
412 (setq bol (1- (point)))
413 ;; Don't break before the first non-LWSP characters.
414 (skip-chars-forward " \t")
a553a9f5 415 (unless (eobp) (forward-char 1))))))
f2307f18
DL
416
417(defun rfc2047-unfold-region (b e)
a553a9f5 418 "Unfold lines in region B to E."
f2307f18
DL
419 (save-restriction
420 (narrow-to-region b e)
421 (goto-char (point-min))
422 (let ((bol (save-restriction
423 (widen)
7f0321ff
DL
424 (mm-point-at-bol)))
425 (eol (mm-point-at-eol))
f2307f18
DL
426 leading)
427 (forward-line 1)
428 (while (not (eobp))
429 (looking-at "[ \t]*")
430 (setq leading (- (match-end 0) (match-beginning 0)))
7f0321ff 431 (if (< (- (mm-point-at-eol) bol leading) 76)
f2307f18
DL
432 (progn
433 (goto-char eol)
434 (delete-region eol (progn
435 (skip-chars-forward "[ \t\n\r]+")
436 (1- (point)))))
7f0321ff
DL
437 (setq bol (mm-point-at-bol)))
438 (setq eol (mm-point-at-eol))
f2307f18 439 (forward-line 1)))))
c113de23
GM
440
441(defun rfc2047-b-encode-region (b e)
f2307f18 442 "Base64-encode the header contained in region B to E."
c113de23
GM
443 (save-restriction
444 (narrow-to-region (goto-char b) e)
445 (while (not (eobp))
446 (base64-encode-region (point) (progn (end-of-line) (point)) t)
447 (if (and (bolp) (eolp))
448 (delete-backward-char 1))
449 (forward-line))))
450
451(defun rfc2047-q-encode-region (b e)
f2307f18 452 "Quoted-printable-encode the header in region B to E."
c113de23
GM
453 (save-excursion
454 (save-restriction
455 (narrow-to-region (goto-char b) e)
f2307f18
DL
456 (let ((alist rfc2047-q-encoding-alist)
457 (bol (save-restriction
458 (widen)
7f0321ff 459 (mm-point-at-bol))))
c113de23
GM
460 (while alist
461 (when (looking-at (caar alist))
462 (quoted-printable-encode-region b e nil (cdar alist))
463 (subst-char-in-region (point-min) (point-max) ? ?_)
464 (setq alist nil))
465 (pop alist))
f2307f18
DL
466 ;; The size of QP encapsulation is about 20, so set limit to
467 ;; 56=76-20.
468 (unless (< (- (point-max) (point-min)) 56)
469 ;; Don't break if it could fit in one line.
470 ;; Let rfc2047-encode-region break it later.
471 (goto-char (1+ (point-min)))
472 (while (and (not (bobp)) (not (eobp)))
473 (goto-char (min (point-max) (+ 56 bol)))
474 (search-backward "=" (- (point) 2) t)
475 (unless (or (bobp) (eobp))
652dbc07 476 (insert "\n")
f2307f18 477 (setq bol (point)))))))))
c113de23
GM
478
479;;;
480;;; Functions for decoding RFC2047 messages
481;;;
482
652dbc07
DL
483(defvar rfc2047-encoded-word-regexp
484 "=\\?\\([^][\000-\040()<>@,\;:\\\"/?.=]+\\)\\?\\(B\\|Q\\)\\?\\([!->@-~ +]+\\)\\?=")
c113de23
GM
485
486(defun rfc2047-decode-region (start end)
487 "Decode MIME-encoded words in region between START and END."
488 (interactive "r")
489 (let ((case-fold-search t)
490 b e)
652dbc07
DL
491 (save-excursion
492 (save-restriction
493 (narrow-to-region start end)
494 (goto-char (point-min))
495 ;; Remove whitespace between encoded words.
496 (while (re-search-forward
497 (concat "\\(" rfc2047-encoded-word-regexp "\\)"
498 "\\(\n?[ \t]\\)+"
499 "\\(" rfc2047-encoded-word-regexp "\\)")
500 nil t)
501 (delete-region (goto-char (match-end 1)) (match-beginning 6)))
502 ;; Decode the encoded words.
503 (setq b (goto-char (point-min)))
504 (while (re-search-forward rfc2047-encoded-word-regexp nil t)
505 (setq e (match-beginning 0))
506 (insert (rfc2047-parse-and-decode
507 (prog1
508 (match-string 0)
509 (delete-region (match-beginning 0) (match-end 0)))))
510 (when (and (mm-multibyte-p)
511 mail-parse-charset
512 (not (eq mail-parse-charset 'gnus-decoded)))
513 (mm-decode-coding-region b e mail-parse-charset))
514 (setq b (point)))
515 (when (and (mm-multibyte-p)
516 mail-parse-charset
517 (not (eq mail-parse-charset 'us-ascii))
518 (not (eq mail-parse-charset 'gnus-decoded)))
519 (mm-decode-coding-region b (point-max) mail-parse-charset))
520 (rfc2047-unfold-region (point-min) (point-max))))))
c113de23
GM
521
522(defun rfc2047-decode-string (string)
523 "Decode the quoted-printable-encoded STRING and return the results."
524 (let ((m (mm-multibyte-p)))
525 (with-temp-buffer
526 (when m
527 (mm-enable-multibyte))
528 (insert string)
529 (inline
530 (rfc2047-decode-region (point-min) (point-max)))
531 (buffer-string))))
532
652dbc07 533(defun rfc2047-parse-and-decode (word)
c113de23
GM
534 "Decode WORD and return it if it is an encoded word.
535Return WORD if not."
652dbc07
DL
536 (if (not (string-match rfc2047-encoded-word-regexp word))
537 word
538 (or
539 (condition-case nil
540 (rfc2047-decode
541 (match-string 1 word)
542 (upcase (match-string 2 word))
543 (match-string 3 word))
544 (error word))
545 word)))
546
547(defun rfc2047-decode (charset encoding string)
548 "Decode STRING from the given MIME CHARSET in the given ENCODING.
c113de23 549Valid ENCODINGs are \"B\" and \"Q\".
f2307f18 550If your Emacs implementation can't decode CHARSET, return nil."
c113de23
GM
551 (if (stringp charset)
552 (setq charset (intern (downcase charset))))
f2307f18 553 (if (or (not charset)
c113de23
GM
554 (eq 'gnus-all mail-parse-ignored-charsets)
555 (memq 'gnus-all mail-parse-ignored-charsets)
556 (memq charset mail-parse-ignored-charsets))
557 (setq charset mail-parse-charset))
558 (let ((cs (mm-charset-to-coding-system charset)))
f2307f18 559 (if (and (not cs) charset
c113de23
GM
560 (listp mail-parse-ignored-charsets)
561 (memq 'gnus-unknown mail-parse-ignored-charsets))
562 (setq cs (mm-charset-to-coding-system mail-parse-charset)))
563 (when cs
564 (when (and (eq cs 'ascii)
565 mail-parse-charset)
566 (setq cs mail-parse-charset))
652dbc07
DL
567 ;; Ensure unibyte result in Emacs 20.
568 (let (default-enable-multibyte-characters)
569 (with-temp-buffer
570 (mm-decode-coding-string
571 (cond
572 ((equal "B" encoding)
573 (base64-decode-string string))
574 ((equal "Q" encoding)
575 (quoted-printable-decode-string
576 (mm-replace-chars-in-string string ?_ ? )))
577 (t (error "Invalid encoding: %s" encoding)))
578 cs))))))
c113de23
GM
579
580(provide 'rfc2047)
581
582;;; rfc2047.el ends here