;;; eword-encode.el --- RFC 2047 based encoded-word encoder for GNU Emacs ;; Copyright (C) 1995,1996,1997,1998 Free Software Foundation, Inc. ;; Author: MORIOKA Tomohiko ;; Keywords: encoded-word, MIME, multilingual, header, mail, news ;; This file is part of SEMI (Spadework for Emacs MIME Interfaces). ;; This program is free software; you can redistribute it and/or ;; modify it under the terms of the GNU General Public License as ;; published by the Free Software Foundation; either version 2, or (at ;; your option) any later version. ;; This program is distributed in the hope that it will be useful, but ;; WITHOUT ANY WARRANTY; without even the implied warranty of ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ;; General Public License for more details. ;; You should have received a copy of the GNU General Public License ;; along with GNU Emacs; see the file COPYING. If not, write to the ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330, ;; Boston, MA 02111-1307, USA. ;;; Code: (require 'emu) (require 'mel) (require 'std11) (require 'mime-def) (require 'eword-decode) ;;; @ variables ;;; (defvar eword-field-encoding-method-alist '(("X-Nsubject" . iso-2022-jp-2) ("Newsgroups" . nil) ("Message-ID" . nil) (t . mime) ) "*Alist to specify field encoding method. Its key is field-name, value is encoding method. If method is `mime', this field will be encoded into MIME format. If method is a MIME-charset, this field will be encoded as the charset when it must be convert into network-code. If method is `default-mime-charset', this field will be encoded as variable `default-mime-charset' when it must be convert into network-code. If method is nil, this field will not be encoded.") (defvar eword-charset-encoding-alist '((us-ascii . nil) (iso-8859-1 . "Q") (iso-8859-2 . "Q") (iso-8859-3 . "Q") (iso-8859-4 . "Q") (iso-8859-5 . "Q") (koi8-r . "Q") (iso-8859-7 . "Q") (iso-8859-8 . "Q") (iso-8859-9 . "Q") (iso-2022-jp . "B") (iso-2022-kr . "B") (gb2312 . "B") (cn-gb . "B") (cn-gb-2312 . "B") (euc-kr . "B") (iso-2022-jp-2 . "B") (iso-2022-int-1 . "B") )) ;;; @ encoded-text encoder ;;; (defun eword-encode-text (charset encoding string &optional mode) "Encode STRING as an encoded-word, and return the result. CHARSET is a symbol to indicate MIME charset of the encoded-word. ENCODING allows \"B\" or \"Q\". MODE is allows `text', `comment', `phrase' or nil. Default value is `phrase'." (let ((text (cond ((string= encoding "B") (base64-encode-string string)) ((string= encoding "Q") (q-encoding-encode-string string mode)) ) )) (if text (concat "=?" (upcase (symbol-name charset)) "?" encoding "?" text "?=") ))) ;;; @ charset word ;;; (defsubst eword-encode-char-type (character) (if (or (eq character ? )(eq character ?\t)) nil (char-charset character) )) (defun eword-encode-divide-into-charset-words (string) (let ((len (length string)) dest) (while (> len 0) (let* ((chr (sref string 0)) (charset (eword-encode-char-type chr)) (i (char-length chr))) (while (and (< i len) (setq chr (sref string i)) (eq charset (eword-encode-char-type chr)) ) (setq i (char-next-index chr i)) ) (setq dest (cons (cons charset (substring string 0 i)) dest) string (substring string i) len (- len i) ))) (nreverse dest) )) ;;; @ word ;;; (defun eword-encode-charset-words-to-words (charset-words) (let (dest) (while charset-words (let* ((charset-word (car charset-words)) (charset (car charset-word)) ) (if charset (let ((charsets (list charset)) (str (cdr charset-word)) ) (catch 'tag (while (setq charset-words (cdr charset-words)) (setq charset-word (car charset-words) charset (car charset-word)) (if (null charset) (throw 'tag nil) ) (or (memq charset charsets) (setq charsets (cons charset charsets)) ) (setq str (concat str (cdr charset-word))) )) (setq dest (cons (cons charsets str) dest)) ) (setq dest (cons charset-word dest) charset-words (cdr charset-words) )))) (nreverse dest) )) ;;; @ rule ;;; (defmacro tm-eword::make-rword (text charset encoding type) (` (list (, text)(, charset)(, encoding)(, type)))) (defmacro tm-eword::rword-text (rword) (` (car (, rword)))) (defmacro tm-eword::rword-charset (rword) (` (car (cdr (, rword))))) (defmacro tm-eword::rword-encoding (rword) (` (car (cdr (cdr (, rword)))))) (defmacro tm-eword::rword-type (rword) (` (car (cdr (cdr (cdr (, rword))))))) (defun tm-eword::find-charset-rule (charsets) (if charsets (let* ((charset (charsets-to-mime-charset charsets)) (encoding (cdr (assq charset eword-charset-encoding-alist))) ) (list charset encoding) ))) (defun tm-eword::words-to-ruled-words (wl &optional mode) (mapcar (function (lambda (word) (let ((ret (tm-eword::find-charset-rule (car word)))) (tm-eword::make-rword (cdr word) (car ret)(nth 1 ret) mode) ))) wl)) (defun tm-eword::space-process (seq) (let (prev a ac b c cc) (while seq (setq b (car seq)) (setq seq (cdr seq)) (setq c (car seq)) (setq cc (tm-eword::rword-charset c)) (if (null (tm-eword::rword-charset b)) (progn (setq a (car prev)) (setq ac (tm-eword::rword-charset a)) (if (and (tm-eword::rword-encoding a) (tm-eword::rword-encoding c)) (cond ((eq ac cc) (setq prev (cons (cons (concat (car a)(car b)(car c)) (cdr a)) (cdr prev) )) (setq seq (cdr seq)) ) (t (setq prev (cons (cons (concat (car a)(car b)) (cdr a)) (cdr prev) )) )) (setq prev (cons b prev)) )) (setq prev (cons b prev)) )) (reverse prev) )) (defun tm-eword::split-string (str &optional mode) (tm-eword::space-process (tm-eword::words-to-ruled-words (eword-encode-charset-words-to-words (eword-encode-divide-into-charset-words str)) mode))) ;;; @ length ;;; (defun tm-eword::encoded-word-length (rword) (let ((string (tm-eword::rword-text rword)) (charset (tm-eword::rword-charset rword)) (encoding (tm-eword::rword-encoding rword)) ret) (setq ret (cond ((string-equal encoding "B") (setq string (encode-mime-charset-string string charset)) (base64-encoded-length string) ) ((string-equal encoding "Q") (setq string (encode-mime-charset-string string charset)) (q-encoding-encoded-length string (tm-eword::rword-type rword)) ))) (if ret (cons (+ 7 (length (symbol-name charset)) ret) string) ))) ;;; @ encode-string ;;; (defun tm-eword::encode-string-1 (column rwl) (let* ((rword (car rwl)) (ret (tm-eword::encoded-word-length rword)) string len) (if (null ret) (cond ((and (setq string (car rword)) (or (<= (setq len (+ (length string) column)) 76) (<= column 1)) ) (setq rwl (cdr rwl)) ) (t (setq string "\n ") (setq len 1) )) (cond ((and (setq len (car ret)) (<= (+ column len) 76) ) (setq string (eword-encode-text (tm-eword::rword-charset rword) (tm-eword::rword-encoding rword) (cdr ret) (tm-eword::rword-type rword) )) (setq len (+ (length string) column)) (setq rwl (cdr rwl)) ) (t (setq string (car rword)) (let* ((p 0) np (str "") nstr) (while (and (< p len) (progn (setq np (char-next-index (sref string p) p)) (setq nstr (substring string 0 np)) (setq ret (tm-eword::encoded-word-length (cons nstr (cdr rword)) )) (setq nstr (cdr ret)) (setq len (+ (car ret) column)) (<= len 76) )) (setq str nstr p np)) (if (string-equal str "") (setq string "\n " len 1) (setq rwl (cons (cons (substring string p) (cdr rword)) (cdr rwl))) (setq string (eword-encode-text (tm-eword::rword-charset rword) (tm-eword::rword-encoding rword) str (tm-eword::rword-type rword))) (setq len (+ (length string) column)) ) ))) ) (list string len rwl) )) (defun tm-eword::encode-rwl (column rwl) (let (ret dest ps special str ew-f pew-f) (while rwl (setq ew-f (nth 2 (car rwl))) (if (and pew-f ew-f) (setq rwl (cons '(" ") rwl) pew-f nil) (setq pew-f ew-f) ) (setq ret (tm-eword::encode-string-1 column rwl)) (setq str (car ret)) (if (eq (elt str 0) ?\n) (if (eq special ?\() (progn (setq dest (concat dest "\n (")) (setq ret (tm-eword::encode-string-1 2 rwl)) (setq str (car ret)) )) (cond ((eq special ? ) (if (string= str "(") (setq ps t) (setq dest (concat dest " ")) (setq ps nil) )) ((eq special ?\() (if ps (progn (setq dest (concat dest " (")) (setq ps nil) ) (setq dest (concat dest "(")) ) ))) (cond ((string= str " ") (setq special ? ) ) ((string= str "(") (setq special ?\() ) (t (setq special nil) (setq dest (concat dest str)) )) (setq column (nth 1 ret) rwl (nth 2 ret)) ) (list dest column) )) (defun tm-eword::encode-string (column str &optional mode) (tm-eword::encode-rwl column (tm-eword::split-string str mode)) ) ;;; @ converter ;;; (defun tm-eword::phrase-to-rwl (phrase) (let (token type dest str) (while phrase (setq token (car phrase)) (setq type (car token)) (cond ((eq type 'quoted-string) (setq str (concat "\"" (cdr token) "\"")) (setq dest (append dest (list (let ((ret (tm-eword::find-charset-rule (find-non-ascii-charset-string str)))) (tm-eword::make-rword str (car ret)(nth 1 ret) 'phrase) ) ))) ) ((eq type 'comment) (setq dest (append dest '(("(" nil nil)) (tm-eword::words-to-ruled-words (eword-encode-charset-words-to-words (eword-encode-divide-into-charset-words (cdr token))) 'comment) '((")" nil nil)) )) ) (t (setq dest (append dest (tm-eword::words-to-ruled-words (eword-encode-charset-words-to-words (eword-encode-divide-into-charset-words (cdr token)) ) 'phrase))) )) (setq phrase (cdr phrase)) ) (tm-eword::space-process dest) )) (defun eword-addr-seq-to-rwl (seq) (let (dest pname) (while seq (let* ((token (car seq)) (name (car token)) ) (cond ((eq name 'spaces) (setq dest (nconc dest (list (list (cdr token) nil nil)))) ) ((eq name 'comment) (setq dest (nconc dest (list (list "(" nil nil)) (tm-eword::split-string (cdr token) 'comment) (list (list ")" nil nil)) )) ) ((eq name 'quoted-string) (setq dest (nconc dest (list (list (concat "\"" (cdr token) "\"") nil nil) ))) ) (t (setq dest (if (or (eq pname 'spaces) (eq pname 'comment)) (nconc dest (list (list (cdr token) nil nil))) (nconc (butlast dest) (list (list (concat (car (car (last dest))) (cdr token)) nil nil))))) )) (setq seq (cdr seq) pname name)) ) dest)) (defun eword-phrase-route-addr-to-rwl (phrase-route-addr) (if (eq (car phrase-route-addr) 'phrase-route-addr) (let ((phrase (nth 1 phrase-route-addr)) (route (nth 2 phrase-route-addr)) dest) (if (eq (car (car phrase)) 'spaces) (setq phrase (cdr phrase)) ) (setq dest (tm-eword::phrase-to-rwl phrase)) (if dest (setq dest (append dest '((" " nil nil)))) ) (append dest (eword-addr-seq-to-rwl (append '((specials . "<")) route '((specials . ">")))) )))) (defun eword-addr-spec-to-rwl (addr-spec) (if (eq (car addr-spec) 'addr-spec) (eword-addr-seq-to-rwl (cdr addr-spec)) )) (defun tm-eword::mailbox-to-rwl (mbox) (let ((addr (nth 1 mbox)) (comment (nth 2 mbox)) dest) (setq dest (or (eword-phrase-route-addr-to-rwl addr) (eword-addr-spec-to-rwl addr) )) (if comment (setq dest (append dest '((" " nil nil) ("(" nil nil)) (tm-eword::split-string comment 'comment) '((")" nil nil)) ))) dest)) (defun tm-eword::addresses-to-rwl (addresses) (let ((dest (tm-eword::mailbox-to-rwl (car addresses)))) (if dest (while (setq addresses (cdr addresses)) (setq dest (append dest '(("," nil nil)) '((" " nil nil)) (tm-eword::mailbox-to-rwl (car addresses)) )) )) dest)) (defun tm-eword::encode-address-list (column str) (tm-eword::encode-rwl column (tm-eword::addresses-to-rwl (std11-parse-addresses-string str)) )) ;;; @ application interfaces ;;; (defun eword-encode-field (string) "Encode header field STRING, and return the result. A lexical token includes non-ASCII character is encoded as MIME encoded-word. ASCII token is not encoded." (setq string (std11-unfold-string string)) (let ((ret (string-match std11-field-head-regexp string))) (or (if ret (let ((field-name (substring string 0 (1- (match-end 0)))) (field-body (eliminate-top-spaces (substring string (match-end 0)))) ) (if (setq ret (cond ((string-equal field-body "") "") ((memq (intern (downcase field-name)) '(reply-to from sender resent-reply-to resent-from resent-sender to resent-to cc resent-cc bcc resent-bcc dcc mime-version) ) (car (tm-eword::encode-address-list (+ (length field-name) 2) field-body)) ) (t (car (tm-eword::encode-string (1+ (length field-name)) field-body 'text)) )) ) (concat field-name ": " ret) ))) (car (tm-eword::encode-string 0 string)) ))) (defun eword-in-subject-p () (let ((str (std11-field-body "Subject"))) (if (and str (string-match eword-encoded-word-regexp str)) str))) (defsubst eword-find-field-encoding-method (field-name) (setq field-name (downcase field-name)) (let ((alist eword-field-encoding-method-alist)) (catch 'found (while alist (let* ((pair (car alist)) (str (car pair))) (if (and (stringp str) (string= field-name (downcase str))) (throw 'found (cdr pair)) )) (setq alist (cdr alist))) (cdr (assq t eword-field-encoding-method-alist)) ))) (defun eword-encode-header (&optional code-conversion) "Encode header fields to network representation, such as MIME encoded-word. It refer variable `eword-field-encoding-method-alist'." (interactive "*") (save-excursion (save-restriction (std11-narrow-to-header mail-header-separator) (goto-char (point-min)) (let ((default-cs (mime-charset-to-coding-system default-mime-charset)) beg end field-name) (while (re-search-forward std11-field-head-regexp nil t) (setq beg (match-beginning 0)) (setq field-name (buffer-substring beg (1- (match-end 0)))) (setq end (std11-field-end)) (and (find-non-ascii-charset-region beg end) (let ((method (eword-find-field-encoding-method (downcase field-name)))) (cond ((eq method 'mime) (let ((field (buffer-substring-no-properties beg end) )) (delete-region beg end) (insert (eword-encode-field field)) )) (code-conversion (let ((cs (or (mime-charset-to-coding-system method) default-cs))) (encode-coding-region beg end cs) ))) )) )) ))) (defun eword-encode-string (str &optional column mode) (car (tm-eword::encode-rwl (or column 0) (tm-eword::split-string str mode))) ) ;;; @ end ;;; (provide 'eword-encode) ;;; eword-encode.el ends here