(bbdb-extract-field-value): Use `eword-decode-string' instead of
[elisp/tm.git] / tm-setup.el
index 151047f..f422be2 100644 (file)
@@ -1,30 +1,28 @@
-;;;
 ;;; tm-setup.el --- setup file for tm viewer.
-;;;
-;;; Copyright (C) 1995 Free Software Foundation, Inc.
-;;; Copyright (C) 1994 .. 1996 MORIOKA Tomohiko
-;;;
-;;; Author: MORIOKA Tomohiko <morioka@jaist.ac.jp>
-;;; Version:
-;;;    $Id: tm-setup.el,v 7.4 1996/08/06 12:12:53 morioka Exp $
-;;; Keywords: mail, news, MIME, multimedia, multilingual, encoded-word
-;;;
-;;; This file is part of tm (Tools for MIME).
-;;;
-;;; 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 This program.  If not, write to the Free Software
-;;; Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
-;;;
+
+;; Copyright (C) 1994,1995,1996,1997 Free Software Foundation, Inc.
+
+;; Author: MORIOKA Tomohiko <morioka@jaist.ac.jp>
+;; Version: $Id: tm-setup.el,v 7.11 1997/02/10 06:11:06 morioka Exp $
+;; Keywords: mail, news, MIME, multimedia, multilingual, encoded-word
+
+;; This file is part of tm (Tools for MIME).
+
+;; 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 'tl-misc)
     (set-atype 'mime/content-decoding-condition
               '((type . "message/external-body")
                 ("access-type" . "anon-ftp")
-                (method . mime/decode-message/external-ftp)
+                (method . mime-article/decode-message/external-ftp)
                 ))
-    (autoload 'mime/decode-message/external-ftp "tm-ftp")
-    
-    ;; for image/*
-    (if running-xemacs
-       (require 'tm-image)
-      )
+    (autoload 'mime-article/decode-message/external-ftp "tm-ftp")
     
     ;; for LaTeX
     (set-atype 'mime/content-decoding-condition
     )))
 
 
+;; for image/* and X-Face
+(defvar mime-setup-enable-inline-image
+  (and window-system
+       (or running-xemacs
+          (and (featurep 'mule)(module-installed-p 'bitmap))
+          ))
+  "*If it is non-nil, tm-setup sets up to use tm-image.")
+
+(if mime-setup-enable-inline-image
+    (call-after-loaded 'tm-view
+                      (function
+                       (lambda ()
+                         (require 'tm-image)
+                         )))
+  )
+
+
+(defvar mime-setup-enable-pgp
+  (module-installed-p 'mailcrypt)
+  "*If it is non-nil, tm-setup sets uf to use tm-pgp.")
+
+;; for PGP
+(if mime-setup-enable-pgp
+    (call-after-loaded 'tm-view
+                      (function
+                       (lambda ()
+                         (require 'tm-pgp)
+                         )))
+  )
+
+
 ;;; @ for RMAIL
 ;;;
 
-(call-after-loaded 'rmail
-                  (function
-                   (lambda ()
-                     (require 'tm-rmail)
-                     ))
-                  'rmail-mode-hook)
+(defun tm-setup/load-rmail ()
+  (or (and (boundp 'rmail-support-mime)
+          rmail-support-mime)
+      (require 'tm-rmail)
+      )
+  (remove-hook 'rmail-mode-hook 'tm-setup/load-rmail)
+  )
+
+(call-after-loaded 'rmail 'tm-setup/load-rmail 'rmail-mode-hook)
 
 
 ;;; @ for mh-e
     ))
 
 
-;;; @ for GNUS
+;;; @ for GNUS and Gnus
 ;;;
 
-(defvar tm-setup/use-gnusutil nil)
-
-(defun tm-setup/load-GNUS ()
-  (require 'tm-gnus)
-  )
-
-(if (and (boundp 'MULE) tm-setup/use-gnusutil)
-    (progn
-      (add-hook 'gnus-Group-mode-hook (function gnusutil-initialize))
-      (add-hook 'gnus-group-mode-hook (function gnusutil-initialize))
-      (autoload 'gnusutil-initialize "gnusutil")
-      (autoload 'gnusutil-add-group "gnusutil")
-      (add-hook 'gnusutil-initialize-hook 'tm-setup/load-GNUS)
+(if (featurep 'gnus)
+    (if (boundp 'gnus-load-hook)
+       (require 'gnus-mime)
+      (require 'tm-gnus)
       )
-  (add-hook 'gnus-Startup-hook 'tm-setup/load-GNUS 'append)
-  (add-hook 'gnus-startup-hook 'tm-setup/load-GNUS 'append)
+  ;; for GNUS
+  (defvar tm-setup/use-gnusutil nil)
+  
+  (defun tm-setup/load-GNUS ()
+    (require 'tm-gnus)
+    )
+  
+  (if (and (boundp 'MULE) tm-setup/use-gnusutil)
+      (progn
+       (add-hook 'gnus-Group-mode-hook (function gnusutil-initialize))
+       (add-hook 'gnus-group-mode-hook (function gnusutil-initialize))
+       (autoload 'gnusutil-initialize "gnusutil")
+       (autoload 'gnusutil-add-group "gnusutil")
+       (add-hook 'gnusutil-initialize-hook 'tm-setup/load-GNUS)
+       )
+    (add-hook 'gnus-Startup-hook 'tm-setup/load-GNUS 'append)
+    (add-hook 'gnus-startup-hook 'tm-setup/load-GNUS 'append)
+    )
+  
+  ;; for Gnus
+  (defun tm-setup/load-gnus ()
+    (let (gnus-load-hook)
+      (remove-hook 'gnus-startup-hook 'tm-setup/load-GNUS)
+      (require 'gnus-mime)
+      ))
+  
+  (add-hook 'gnus-load-hook 'tm-setup/load-gnus)
   )
 
 
-;;; @ for Gnus
-;;;
-
-(defun tm-setup/load-gnus ()
-  (let (gnus-load-hook)
-    (remove-hook 'gnus-startup-hook 'tm-setup/load-GNUS)
-    (require 'gnus-mime)
-    ))
-
-(add-hook 'gnus-load-hook 'tm-setup/load-gnus)
-
-
 ;;; @ end
 ;;;