07bbbb11ea76c09bb488e1f06ce7d122bbc4eb62
[elisp/tm.git] / tiny-mime.el
1 ;;;
2 ;;; A multilingual MIME message header encoder/decoder.
3 ;;;     by Morioka Tomohiko (morioka@jaist.ac.jp)
4 ;;;
5 ;;; original MIME decoder is
6 ;;;     mime.el,v 1.5 1992/07/18 07:52:08 by Enami Tsugutomo
7 ;;;
8
9 (provide 'tiny-mime)
10
11
12 ;;; @ require modules
13 ;;;
14 (require 'tl-header)
15 (require 'tl-str)
16 (if (not (fboundp 'member))
17     (require 'tl-18)
18   )
19
20
21 ;;; @ version
22 ;;;
23 (defconst mime/RCS-ID
24   "$Id: tiny-mime.el,v 5.5 1994/10/26 18:36:38 morioka Exp $")
25
26 (defconst mime/tiny-mime-version (get-version-string mime/RCS-ID))
27
28
29 ;;; @ MIME encoded-word definition
30 ;;;
31
32 (defconst mime/charset-regexp "[A-Za-z0-9!#$%&'*+---^_`{}|~]")
33 (defconst mime/encoded-text-regexp "[!->@-~]+")
34
35 (defconst mime/Base64-token-regexp "[A-Za-z0-9+/=]")
36 (defconst mime/Base64-encoded-text-regexp
37   (concat "\\("
38               mime/Base64-token-regexp
39               mime/Base64-token-regexp
40               mime/Base64-token-regexp
41               mime/Base64-token-regexp
42               "\\)+"))
43 (defconst mime/Base64-encoding-and-encoded-text-regexp
44   (concat "\\(B\\)\\?" mime/Base64-encoded-text-regexp))
45
46 (defconst mime/Quoted-Printable-hex-char-regexp "[0123456789ABCDEF]")
47 (defconst mime/Quoted-Printable-octet-regexp
48   (concat "="
49           mime/Quoted-Printable-hex-char-regexp
50           mime/Quoted-Printable-hex-char-regexp))
51 (defconst mime/Quoted-Printable-encoded-text-regexp
52   (concat "\\([^=?]\\|" mime/Quoted-Printable-octet-regexp "\\)+"))
53 (defconst mime/Quoted-Printable-encoding-and-encoded-text-regexp
54   (concat "\\(Q\\)\\?" mime/Quoted-Printable-encoded-text-regexp))
55
56 (defconst mime/encoded-word-regexp (concat (regexp-quote "=?")
57                                            "\\("
58                                            mime/charset-regexp
59                                            "+\\)"
60                                            (regexp-quote "?")
61                                            "\\(B\\|Q\\)"
62                                            (regexp-quote "?")
63                                            "\\("
64                                            mime/encoded-text-regexp
65                                            "\\)"
66                                            (regexp-quote "?=")))
67
68 (defun mime/nth-string (s n)
69   (if (stringp s)
70       (substring s (match-beginning n) (match-end n))
71     (buffer-substring (match-beginning n) (match-end n))))
72
73 (defun mime/encoded-word-charset (str)
74   (mime/nth-string str 1))
75
76 (defun mime/encoded-word-encoding (str)
77   (mime/nth-string str 2))
78
79 (defun mime/encoded-word-encoded-text (str)
80   (mime/nth-string str 3))
81
82 (defun mime/rest-of-string (str)
83   (if (stringp str)
84       (substring str (match-end 0))
85     (buffer-substring (match-end 0))))
86
87 ;;; @ variables
88 ;;;
89
90 (defvar mime/no-encoding-header-fields '("X-Nsubject"))
91
92 (defvar mime/use-X-Nsubject nil)
93
94
95 ;;; @ compatible module among Mule, NEmacs and NEpoch 
96 ;;;
97 (cond ((boundp 'MULE)  (require 'tm-mule))
98       ((boundp 'NEMACS)(require 'tm-nemacs))
99       (t               (require 'tm-orig))
100       )
101
102
103 ;;; @ Application Interface
104 ;;;
105
106 ;;; @@ MIME header decoders
107 ;;;
108
109 ;; by mol. 1993/10/4
110 (defun mime/decode-encoded-word (word)
111   (if (string-match mime/encoded-word-regexp word)
112       (let ((charset (upcase (mime/encoded-word-charset word)))
113             (encoding (mime/encoded-word-encoding word))
114             (text (mime/encoded-word-encoded-text word)))
115         (mime/decode-encoded-text charset encoding text))
116     word))
117
118 (defun mime/decode-region (beg end)
119   (interactive "*r")
120   (save-excursion
121     (save-restriction
122       (narrow-to-region beg end)
123       (goto-char (point-min))
124       (let (charset encoding text)
125         (while (re-search-forward mime/encoded-word-regexp nil t)
126           (insert (mime/decode-encoded-word 
127                    (prog1
128                        (buffer-substring (match-beginning 0) (match-end 0))
129                      (delete-region (match-beginning 0) (match-end 0))
130                      )
131                   ))
132           ))
133       )))
134
135 (defun mime/decode-message-header ()
136   (interactive "*")
137   (save-excursion
138     (save-restriction
139       (narrow-to-region (goto-char (point-min))
140                         (progn (re-search-forward "^$" nil t) (point)))
141       (mime/prepare-decode-message-header)
142       (mime/decode-region (point-min) (point-max))
143       )))
144
145 (defun mime/decode-string (str)
146   (let ((dest "")(ew nil)
147         beg end)
148     (while (setq beg (string-match mime/encoded-word-regexp str))
149       (if (> beg 0)
150           (if (not (and (eq ew t) (string= (substring str 0 beg) " ")))
151               (setq dest (concat dest (substring str 0 beg)
152                                  ))
153             )
154         )
155       (setq end (match-end 0))
156       (setq dest (concat dest (mime/decode-encoded-word (substring str beg end))
157                          ))
158       (setq str (substring str end))
159       (setq ew t)
160       )
161     (concat dest str)
162     ))
163
164 ;;; @@ MIME header encoders
165 ;;;
166
167 (defun mime/encode-string (string encoding &optional mode)
168   (cond ((equal encoding "B") (mime/base64-encode-string string))
169         ((equal encoding "Q") (mime/Quoted-Printable-encode-string string mode))
170         (t nil)
171         ))
172
173 (defun mime/encode-field (str)
174   (setq str (message/unfolding-string str))
175   (let ((ret (message/divide-field str))
176         field-name field-body)
177     (setq field-name (car ret))
178     (setq field-body (nth 1 ret))
179     (concat field-name " "
180             (cond ((string= field-body "") "")
181                   ((or (string-match "^Reply-To:$" field-name)
182                        (string-match "^From:$" field-name)
183                        (string-match "^Sender:$" field-name)
184                        (string-match "^Resent-Reply-To:$" field-name)
185                        (string-match "^Resent-From:$" field-name)
186                        (string-match "^Resent-Sender:$" field-name)
187                        (string-match "^To:$" field-name)
188                        (string-match "^Resent-To:$" field-name)
189                        (string-match "^cc:$" field-name)
190                        (string-match "^Resent-cc:$" field-name)
191                        (string-match "^bcc:$" field-name)
192                        (string-match "^Resent-bcc:$" field-name)
193                        )
194                    (mime/encode-address-list
195                     (+ (length field-name) 1) field-body)
196                    )
197                   (t
198                    (catch 'tag
199                      (let ((r mime/no-encoding-header-fields) fn)
200                        (while r
201                          (setq fn (car r))
202                          (if (string-match (concat "^" fn ":$") field-name)
203                              (throw 'tag field-body)
204                            )
205                          (setq r (cdr r))
206                          ))
207                      (nth 1 (mime/encode-header-string
208                              (+ (length field-name) 1) field-body))
209                      ))
210                   ))
211     ))
212
213 (defun mime/encode-message-header ()
214   (interactive "*")
215   (save-excursion
216     (save-restriction
217       (narrow-to-region (goto-char (point-min))
218                         (progn
219                           (re-search-forward
220                            (concat "^" (regexp-quote mail-header-separator) "$")
221                            nil t)
222                           (match-beginning 0)
223                           ))
224       (goto-char (point-min))
225       (let (beg end field)
226         (while (re-search-forward "^.+:.*\\(\n\\s +.*\\)*" nil t)
227           (setq beg (match-beginning 0))
228           (setq end  (match-end 0))
229           (setq field (buffer-substring beg end))
230           (insert (mime/encode-field
231                    (prog1
232                        (buffer-substring beg end)
233                      (delete-region beg end)
234                      )))
235           ))
236       (if mime/use-X-Nsubject
237           (progn
238             (goto-char (point-min))
239             (if (re-search-forward "^Subject:.*\\(\n\\s +.*\\)*" nil t)
240                 (let ((str (buffer-substring (match-beginning 0)(match-end 0))))
241                   (if (string-match mime/encoded-word-regexp str)
242                       (insert (concat
243                                "\nX-Nsubject: "
244                                (nth 1 (message/divide-field
245                                        (mime/decode-string
246                                         (message/unfolding-string str))
247                                        ))))
248                     ))
249               )))
250       )))
251
252 ;;; @ Base64 (B-encode) decoder/encoder
253 ;;;     by Enami Tsugutomo
254 ;;;     modified by mol.
255
256 (defun mime/base64-decode-string (string)
257   (mime/base64-mapconcat (function mime/base64-decode-chars) 4 string))
258
259 ;; (mime/base64-encode-string (mime/base64-decode-string "GyRAOjRGI0stGyhK"))
260 (defun mime/base64-encode-string (string &optional mode)
261   (let ((es (mime/base64-mapconcat (function mime/base64-encode-chars) 3 string))
262         m)
263     (setq m (mod (length es) 4))
264     (concat es
265             (cond ((= m 3) "=")
266                   ((= m 2) "==")
267                   ))
268     ))
269
270 ;; (char-to-string (mime/base64-bit-to-char 26))
271 (defun mime/base64-bit-to-char (n)
272   (cond ((eq n nil) ?=)
273         ((< n 26) (+ ?A n))
274         ((< n 52) (+ ?a (- n 26)))
275         ((< n 62) (+ ?0 (- n 52)))
276         ((= n 62) ?+)
277         ((= n 63) ?/)
278         (t (error "not a base64 integer %d" n))))
279
280 (defun mime/base64-char-to-bit (c)
281   (cond ((and (<= ?A c) (<= c ?Z)) (- c ?A))
282         ((and (<= ?a c) (<= c ?z)) (+ (- c ?a) 26))
283         ((and (<= ?0 c) (<= c ?9)) (+ (- c ?0) 52))
284         ((= c ?+) 62)
285         ((= c ?/) 63)
286         ((= c ?=) nil)
287         (t (error "not a base64 character %c" c))))
288
289 (defun mime/mask (i n) (logand i (1- (ash 1 n))))
290
291 (defun mime/base64-encode-1 (a &optional b &optional c)
292   (cons (ash a -2)
293         (cons (logior (ash (mime/mask a 2) (- 6 2))
294                       (if b (ash b -4) 0))
295               (if b
296                   (cons (logior (ash (mime/mask b 4) (- 6 4))
297                                 (if c (ash c -6) 0))
298                         (if c
299                             (cons (mime/mask c (- 6 0))
300                                   nil)))))))
301
302 (defun mime/base64-decode-1 (a b &optional c &optional d)
303   (cons (logior (ash a 2) (ash b (- 2 6)))
304         (if c (cons (logior (ash (mime/mask b 4) 4)
305                             (mime/mask (ash c (- 4 6)) 4))
306                     (if d (cons (logior (ash (mime/mask c 2) 6) d)
307                                 nil))))))
308
309 ;; (mime/base64-decode-chars ?G ?y ?R ?A)
310 (defun mime/base64-decode-chars (a b c d)
311   (apply (function mime/base64-decode-1)
312          (mapcar (function mime/base64-char-to-bit)
313                  (list a b c d))))
314
315 ;; (mapcar (function char-to-string) (mime/base64-encode-chars 27 36 64))
316 (defun mime/base64-encode-chars (a b c)
317   (mapcar (function mime/base64-bit-to-char) (mime/base64-encode-1 a b c)))
318
319 (defun mime/base64-fecth-from (func from pos len)
320   (let (ret)
321     (while (< 0 len)
322       (setq len (1- len)
323             ret (cons (funcall func from (+ pos len)) ret)))
324     ret))
325
326 (defun mime/base64-fecth-from-buffer (from pos len)
327   (mime/base64-fecth-from (function (lambda (f p) (char-after p)))
328                           from pos len))
329
330 (defun mime/base64-fecth-from-string (from pos len)
331   (mime/base64-fecth-from (function (lambda (f p)
332                                       (if (< p (length f)) (aref f p))))
333                           from pos len))
334
335 (defun mime/base64-fecth (source pos len)
336   (cond ((stringp source) (mime/base64-fecth-from-string source pos len))
337         (t (mime/base64-fecth-from-buffer source pos len))))
338
339 (defun mime/base64-mapconcat (func unit string)
340   (let ((i 0) ret)
341     (while (< i (length string))
342       (setq ret 
343             (apply (function concat)
344                    ret
345                    (mapcar (function char-to-string)
346                            (apply func (mime/base64-fecth string i unit)))))
347       (setq i (+ i unit)))
348     ret))
349
350 ;;; @ Quoted-Printable (Q-encode) encoder/decoder
351 ;;;
352
353 (defun mime/Quoted-Printable-decode-string (str)
354   (let ((dest "")
355         (len (length str))
356         (i 0) chr num h l)
357     (while (< i len)
358       (setq chr (elt str i))
359       (cond ((eq chr ?=)
360              (if (< (+ i 2) len)
361                  (progn
362                    (setq h (hex-char-to-number (elt str (+ i 1))))
363                    (setq l (hex-char-to-number (elt str (+ i 2))))
364                    (setq num (+ (* h 16) l))
365                    (setq dest (concat dest (char-to-string num)))
366                    (setq i (+ i 3))
367                    )
368                (progn
369                  (setq dest (concat dest (char-to-string chr)))
370                  (setq i (+ i 1))
371                  )))
372             ((eq chr ?_)
373              (setq dest (concat dest (char-to-string 32)))
374              (setq i (+ i 1))
375              )
376             (t
377              (setq dest (concat dest (char-to-string chr)))
378              (setq i (+ i 1))
379              ))
380       )
381     dest))
382
383 (defun mime/Quoted-Printable-encode-string (str &optional mode)
384   (if (null mode)
385       (setq mode 'phrase))
386   (let ((dest "")
387         (len (length str))
388         (i 0) chr)
389     (while (< i len)
390       (setq chr (elt str i))
391       (cond ((eq chr 32)
392              (setq dest (concat dest "_"))
393              )
394             ((or (eq chr ?=)
395                  (eq chr ??)
396                  (eq chr ?_)
397                  (and (eq mode 'comment)
398                       (or (eq chr ?\()
399                           (eq chr ?\))
400                           (eq chr ?\\)
401                           ))
402                  (and (eq mode 'phrase)
403                       (not (string-match "[A-Za-z0-9!*+/=_---]"
404                                          (char-to-string chr)))
405                       )
406                  (< chr 32)
407                  (> chr 126))
408              (setq dest (concat dest
409                                 "="
410                                 (char-to-string (number-to-hex-char (/ chr 16)))
411                                 (char-to-string (number-to-hex-char (% chr 16)))
412                                 ))
413              )
414             (t (setq dest (concat dest (char-to-string chr)))
415                ))
416       (setq i (+ i 1))
417       )
418     dest))
419
420 ;;; @ functions for message header encoding
421 ;;;
422
423 (defun mime/encode-and-split-string (n string charset encoding)
424   (let ((i 0) (j 0)
425         (len (length string))
426         (js (mime/convert-string-from-emacs string charset))
427         (cesl (+ (length charset) (length encoding) 6 ))
428         ewl m rest)
429     (setq ewl (mime/encoded-word-length js encoding))
430     (if (null ewl) nil
431       (progn
432         (setq m (+ n ewl cesl))
433         (if (> m 76)
434             (progn
435               (while (and (< i len)
436                           (setq js (mime/convert-string-from-emacs
437                                     (substring string 0 i) charset))
438                           (setq m (+ n (mime/encoded-word-length js encoding) cesl))
439                           (< m 76))
440                 (setq j i)
441                 (setq i (+ i (char-bytes (elt string i))))
442                 )
443               (setq js (mime/convert-string-from-emacs
444                         (substring string 0 j) charset))
445               (setq m (+ n (mime/encoded-word-length js encoding) cesl))
446               (setq rest (substring string j))
447               )
448           (setq rest nil))
449         (if (string= js "")
450             (list 1 "" string)
451           (list m (concat "=?" charset "?" encoding "?"
452                           (mime/encode-string js encoding)
453                           "?=") rest))
454         ))
455     ))
456
457 (defun mime/encode-header-word (n string charset encoding)
458   (let (dest str ret m)
459     (if (null (setq ret (mime/encode-and-split-string n string charset encoding)))
460         nil
461       (progn
462         (setq dest (nth 1 ret))
463         (setq m (car ret))
464         (setq str (nth 2 ret))
465         (while (and (stringp str)
466                     (setq ret (mime/encode-and-split-string 1 str charset encoding))
467                     )
468           (setq dest (concat dest "\n " (nth 1 ret)))
469           (setq m (car ret))
470           (setq str (nth 2 ret))
471           )
472         (list m dest)
473         ))
474     ))
475
476 (defun mime/encode-header-string (n string &optional mode)
477   (let ((ssl (mime/separate-string-for-encoder string))
478         i len cell et w ew (dest "") b l)
479     (setq len (length ssl))
480     (setq cell (nth 0 ssl))
481     (setq et (car cell))
482     (setq w (cdr cell))
483     (if (eq et nil)
484         (progn
485           (if (> (+ n (string-width w)) 76)
486               (progn
487                 (setq dest (concat dest "\n "))
488                 (setq b 1)
489                 )
490             (setq b n))
491           (setq dest (concat dest w))
492           (setq b (+ b (string-width w)))
493           )
494       (progn
495         (setq ew (mime/encode-header-word n (cdr cell) (car et) (cdr et)))
496         (setq dest (nth 1 ew))
497         (setq b (car ew))
498         ))
499     (setq i 1)
500     (while (< i len)
501       (setq cell (nth i ssl))
502       (setq et (car cell))
503       (setq w (cdr cell))
504       (cond ((string-match "^[ \t]*$" w)
505              (setq b (+ b (string-width (cdr cell))))
506              (setq dest (concat dest (cdr cell)))
507              )
508             ((eq et nil)
509              (if (> (+ b (string-width w)) 76)
510                  (progn
511                    (if (eq (elt dest (- (length dest) 1)) 32)
512                        (setq dest (substring dest 0 (- (length dest) 1)))
513                      )
514                    (setq dest (concat dest "\n " w))
515                    (setq b (+ (length w) 1))
516                    )
517                (setq l (length dest))
518                (if (and (>= l 2)
519                         (eq (elt dest (- l 2)) ?\?)
520                         (eq (elt dest (- l 1)) ?=)
521                         )
522                    (progn
523                      (setq dest (concat dest " "))
524                      (setq b (+ b 1))
525                      ))
526                (setq dest (concat dest w))
527                (setq b (+ b (string-width w)))
528                ))
529             (t
530              (if (not (eq (elt dest (- (length dest) 1)) 32))
531                  (progn
532                    (setq dest (concat dest " "))
533                    (setq b (+ b 1))
534                    ))
535              (setq ew (mime/encode-header-word b (cdr cell) (car et) (cdr et)))
536              (setq b (car ew)) 
537              (if (string-match "^\n" (nth 1 ew))
538                  (setq dest (concat (substring dest 0 (- (length dest) 1))
539                                     (nth 1 ew)))
540                (setq dest (concat dest (nth 1 ew)))
541                )
542              ))
543       (setq i (+ i 1))
544       )
545     (list b dest)))
546
547 (defun mime/encode-address-list (n str)
548   (let ((ret (message/parse-addresses str))
549         len (i 0) cell en-ret j cl (dest "") s)
550     (setq len (length ret))
551     (while (< i len)
552       (setq cell (nth i ret))
553       (cond ((string= (nth 1 cell) "<")
554              (setq en-ret (mime/encode-header-string n (nth 0 cell) 'phrase))
555              (setq dest (concat dest (nth 1 en-ret)))
556              (setq n (car en-ret))
557              (if (< i (- len 1))
558                  (setq en-ret 
559                        (mime/encode-header-string
560                         n (concat (nth 1 cell)(nth 2 cell)(nth 3 cell) ", "))) 
561                (setq en-ret (mime/encode-header-string
562                              n (concat (nth 1 cell)(nth 2 cell)(nth 3 cell))))
563                )
564              (if (and (eq (elt (nth 1 en-ret) 0) ?\n)
565                       (eq (elt dest (- (length dest) 1)) 32))
566                  (setq dest (substring dest 0 (- (length dest) 1)))
567                )
568              (setq dest (concat dest (nth 1 en-ret)))
569              (setq n (car en-ret))
570              )
571             ((= (length cell) 4)
572              (setq en-ret (mime/encode-header-string n (nth 0 cell)))
573              (setq dest (concat dest (nth 1 en-ret)))
574              (setq n (car en-ret))
575              
576              (setq en-ret (mime/encode-header-string (+ n 2) (nth 2 cell) 'comment))
577              (if (eq (elt (nth 1 en-ret) 0) ?\n)
578                  (progn
579                    (setq dest (concat dest "\n ("))
580                    (setq en-ret (mime/encode-header-string 2 (nth 2 cell) 'comment))
581                    )
582                (progn
583                  (setq dest (concat dest " ("))
584                  ))
585              (setq dest (concat dest (nth 1 en-ret)))
586              (setq n (car en-ret))
587              (if (< i (- len 1))
588                  (setq en-ret
589                        (mime/encode-header-string n (concat (nth 3 cell) ", ")))
590                (setq en-ret (mime/encode-header-string n (nth 3 cell)))
591                )
592              (setq dest (concat dest (nth 1 en-ret)))
593              (setq n (car en-ret))
594              )
595             (t
596              (if (< i (- len 1))
597                  (setq en-ret
598                        (mime/encode-header-string n (concat (nth 0 cell) ", ")))
599                (setq en-ret (mime/encode-header-string n (nth 0 cell)))
600                )
601              (setq dest (concat dest (nth 1 en-ret)))
602              (setq n (car en-ret))
603              ))
604       (setq i (+ i 1)) )
605     dest))
606
607 ;;; @ utility functions
608 ;;;
609
610 ;; by mol. 1993/10/4
611 (defun hex-char-to-number (chr)
612   (cond ((and (<= ?0 chr)(<= chr ?9)) (- chr ?0))
613         ((and (<= ?A chr)(<= chr ?F)) (+ (- chr ?A) 10))
614         ((and (<= ?a chr)(<= chr ?f)) (+ (- chr ?a) 10))
615         ))
616
617 (defun number-to-hex-char (n)
618   (if (< n 10)
619       (+ ?0 n)
620     (+ ?A (- n 10))))
621
622
623 ;;; @ utility for encoder
624 ;;;
625
626 ;;; @@ encoded-word length
627 ;;;
628
629 (defun mime/encoded-word-length (string encoding)
630   (cond ((equal encoding "B") (mime/base64-length string))
631         ((equal encoding "Q") (mime/Quoted-Printable-length string))
632         (t nil)
633         ))
634
635 (defun mime/base64-length (string)
636   (let ((l (length string))
637         )
638     (* (+ (/ l 3)
639           (if (= (mod l 3) 0) 0 1)
640           ) 4)
641     ))
642
643 (defun mime/Quoted-Printable-length (string &optional mode)
644   (let ((l 0)(i 0)(len (length string)) chr)
645     (while (< i len)
646       (setq chr (elt string i))
647       (if (string-match "[A-Za-z0-9!*+/=_---]" (char-to-string chr))
648           (setq l (+ l 1))
649         (setq l (+ l 3))
650         )
651       (setq i (+ i 1)) )
652     l))
653
654 ;;; @@ separate by character set
655 ;;;
656
657 ;; by mol. 1993/11/2
658 (defconst LC-space 2)
659
660 ;; by mol. 1993/10/16
661 (defun mime/char-type (chr)
662   (if (or (= chr 32)(= chr ?\t))
663       LC-space
664     (get-lc chr)
665     ))
666
667 (defun mime/separate-string-by-chartype (string)
668   (let ((len (length string))
669         (dest nil) (ds "") s
670         pcs i j cs chr)
671     (if (= len 0) nil
672       (progn (setq chr (elt string 0))
673              (setq pcs (mime/char-type chr))
674              (setq i (char-bytes chr))
675              (setq ds (substring string 0 i))
676              (while (< i len)
677                (setq chr (elt string i))
678                (setq cs (mime/char-type chr))
679                (setq j (+ i (char-bytes chr)))
680                (setq s (substring string i j))
681                (setq i j)
682                (if (= cs pcs)
683                    (setq ds (concat ds s))
684                  (progn (setq dest (append dest (list (cons pcs ds))))
685                         (setq pcs cs)
686                         (setq ds s)
687                         ))
688                )
689              (if (not (string= ds ""))
690                  (setq dest (append dest (list (cons pcs ds)))))
691              dest)
692       )))
693
694 (defun mime/separate-string-by-charset (str)
695   (let ((rl (mime/separate-string-by-chartype str))
696         (i 1) len (pcell nil) cell ncell dpcell (dest nil) LC)
697     (setq len (length rl))
698     (setq dpcell (list (nth 0 rl)))
699     (setq cell (nth 1 rl))
700     (setq ncell (nth 2 rl))
701     (while (< i len)
702       (setq LC (car (car dpcell)))
703       (cond ((and (not (eq LC lc-ascii))
704                   (eq (car cell) LC-space)
705                   (not (eq (car ncell) lc-ascii)))
706              (setq dpcell (list (cons LC
707                                       (concat (cdr (car dpcell)) (cdr cell))
708                                       )))
709              )
710             ((and (not (eq LC lc-ascii))
711                   (eq LC (car cell)))
712              (setq dpcell (list (cons LC
713                                       (concat (cdr (car dpcell)) (cdr cell))
714                                       )))
715              )
716             ((and (eq LC lc-ascii)
717                   (member (car cell) mime/latin-lc-list))
718              (setq dpcell (list (cons (car cell)
719                                       (concat (cdr (car dpcell)) (cdr cell))
720                                       )))
721              )
722             ((and (member LC mime/latin-lc-list)
723                   (eq (car cell) lc-ascii))
724              (setq dpcell (list (cons LC
725                                       (concat (cdr (car dpcell)) (cdr cell))
726                                       )))
727              )
728             (t
729              (setq dest (append dest dpcell))
730              (setq dpcell (list cell))
731              ))
732       (setq i (+ i 1))
733       (setq cell ncell)
734       (setq ncell (nth (+ i 1) rl))
735       )
736     (setq dest (append dest dpcell))
737     ))
738
739 (defun mime/separate-string-for-encoder (string)
740   (let (lastspace)
741     (if (string-match "[ \t]+$" string)
742         (progn
743           (setq lastspace (substring string
744                                      (match-beginning 0)
745                                      (match-end 0)))
746           (setq string (substring string 0 (match-beginning 0)))
747           ))
748     (let ((rl (mime/separate-string-by-charset string))
749           (i 0) len cell0 cell1 cell2 (dest nil))
750       (setq len (length rl))
751       (setq cell0 (nth 0 rl))
752       (setq cell1 (nth 1 rl))
753       (setq cell2 (nth 2 rl))
754       (while (< i len)
755         (cond ((and (not (eq (car cell0) lc-ascii))
756                     (eq (car cell1) LC-space)
757                     (not (eq (car cell2) lc-ascii))
758                     )
759                (setq dest
760                      (append dest (list
761                                    (cons
762                                     (cdr (assoc (car cell0)
763                                                 mime/lc-charset-and-encoding-alist))
764                                     (concat (cdr cell0) (cdr cell1))
765                                     ))))
766                (setq i (+ i 2))
767                (setq cell0 (nth i rl))
768                (setq cell1 (nth (+ i 1) rl))
769                (setq cell2 (nth (+ i 2) rl))
770                )
771               (t
772                (setq dest
773                      (append dest (list
774                                    (cons
775                                     (cdr (assoc (car cell0)
776                                                 mime/lc-charset-and-encoding-alist))
777                                     (cdr cell0)))))
778                (setq i (+ i 1))
779                (setq cell0 cell1)
780                (setq cell1 cell2)
781                (setq cell2 (nth (+ i 2) rl))
782                ))
783         )
784       (append dest
785               (if lastspace
786                   (list (cons nil lastspace))))
787       )))
788               
789               
790
791 ;;;
792 ;;; basic functions for MIME header decoder
793 ;;;
794
795 ;;; @ utility for decoder
796 ;;;
797
798 (defun mime/unfolding ()
799   (goto-char (point-min))
800   (let (field beg end)
801     (while (re-search-forward message/field-regexp nil t)
802       (setq beg (match-beginning 0))
803       (setq end  (match-end 0))
804       (setq field (buffer-substring beg end))
805       (if (string-match mime/encoded-word-regexp field)
806           (progn
807             (save-excursion
808               (save-restriction
809                 (narrow-to-region (goto-char beg) end)
810                 (while (re-search-forward "\n[ \t]+" nil t)
811                   (replace-match " ")
812                   )
813                 ))
814             ))
815       ))
816   )
817
818 (defun mime/prepare-decode-message-header ()
819   (mime/unfolding)
820   (goto-char (point-min))
821   (while (re-search-forward
822           (concat (regexp-quote "?=")
823                   "\\s +"
824                   (regexp-quote "=?"))
825           nil t)
826     (replace-match "?==?")
827     )
828   )
829
830 (run-hooks 'mime/tiny-mime-load-hook)
831
832 ;;; @
833 ;;; Local Variables:
834 ;;; mode: emacs-lisp
835 ;;; mode: outline-minor
836 ;;; outline-regexp: ";;; @+\\|(......"
837 ;;; End: