2000-10-28 03:43:03 ShengHuo ZHU <zsh@cs.rochester.edu>
[gnus] / lisp / mml-smime.el
1 ;;; mml-smime.el --- S/MIME support for MML
2 ;; Copyright (c) 2000 Free Software Foundation, Inc.
3
4 ;; Author: Simon Josefsson <simon@josefsson.org>
5 ;; Keywords: Gnus, MIME, SMIME, MML
6
7 ;; This file is a part of GNU Emacs.
8
9 ;; GNU Emacs is free software; you can redistribute it and/or modify
10 ;; it under the terms of the GNU General Public License as published
11 ;; by the Free Software Foundation; either version 2, or (at your
12 ;; option) any later version.
13
14 ;; GNU Emacs is distributed in the hope that it will be useful, but
15 ;; WITHOUT ANY WARRANTY; without even the implied warranty of
16 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
17 ;; General Public License for more details.
18
19 ;; You should have received a copy of the GNU General Public License
20 ;; along with GNU Emacs; see the file COPYING.  If not, write to the
21 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
22 ;; Boston, MA 02111-1307, USA.
23
24 ;;; Commentary:
25
26 ;; This support creation of S/MIME parts in MML.
27
28 ;; Usage:
29 ;;    (mml-smime-setup)
30 ;; 
31 ;; Insert an attribute, postprocess=smime-sign (or smime-encrypt), into
32 ;; the mml tag to be signed (or encrypted).
33 ;;
34 ;; It is based on rfc2015.el by Shenghuo Zhu.
35
36 ;;; Code:
37
38 (require 'smime)
39
40 ;;;###autoload
41 (defun mml-smime-sign (cont)
42   ;; FIXME: You have to input the sender.
43   (when (null smime-keys)
44     (error "Please use M-x customize RET smime RET to configure SMIME"))
45   (smime-sign-buffer)
46   (goto-char (point-min))
47   (when (looking-at "^MIME-Version: 1.0")
48     (forward-line 1)
49     (delete-region (point-min) (point)))
50   (goto-char (point-max)))
51   
52 ;;;###autoload
53 (defun mml-smime-encrypt (cont)
54   ;; FIXME: You have to input the receiptant.
55   ;; FIXME: Should encrypt to myself so I can read it??
56   (smime-encrypt-buffer)
57   (goto-char (point-min))
58   (when (looking-at "^MIME-Version: 1.0")
59     (forward-line 1)
60     (delete-region (point-min) (point)))
61   (goto-char (point-max)))
62
63 ;;;###autoload
64 (defun mml-smime-setup ()
65   (setq mml-generate-mime-postprocess-function 'mml-postprocess))
66
67 (provide 'mml-smime)
68
69 ;;; mml-smime.el ends here