1 ;;; gnus-vm.el --- vm interface for Gnus
3 ;; Copyright (C) 1994-2011 Free Software Foundation, Inc.
5 ;; Author: Per Persson <pp@gnu.ai.mit.edu>
6 ;; Keywords: news, mail
8 ;; This file is part of GNU Emacs.
10 ;; GNU Emacs is free software: you can redistribute it and/or modify
11 ;; it under the terms of the GNU General Public License as published by
12 ;; the Free Software Foundation, either version 3 of the License, or
13 ;; (at your option) any later version.
15 ;; GNU Emacs is distributed in the hope that it will be useful,
16 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
17 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 ;; GNU General Public License for more details.
20 ;; You should have received a copy of the GNU General Public License
21 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
25 ;; Major contributors:
26 ;; Christian Limpach <Christian.Limpach@nice.ch>
27 ;; Some code stolen from:
28 ;; Rick Sladkey <jrs@world.std.com>
39 (autoload 'vm-mode
"vm")
40 (autoload 'vm-save-message
"vm")
41 (autoload 'vm-forward-message
"vm")
42 (autoload 'vm-reply
"vm")
43 (autoload 'vm-mail
"vm"))
45 (defvar gnus-vm-inhibit-window-system nil
46 "Inhibit loading `win-vm' if using a window-system.
47 Has to be set before gnus-vm is loaded.")
49 (unless gnus-vm-inhibit-window-system
54 (when (not (featurep 'vm
))
57 (defun gnus-vm-make-folder (&optional buffer
)
58 (let ((article (or buffer
(current-buffer)))
59 (tmp-folder (generate-new-buffer " *tmp-folder*"))
62 (set-buffer tmp-folder
)
63 (insert-buffer-substring article start end
)
64 (goto-char (point-min))
65 (if (looking-at "^\\(From [^ ]+ \\).*$")
66 (replace-match (concat "\\1" (current-time-string)))
67 (insert "From " gnus-newsgroup-name
" "
68 (current-time-string) "\n"))
69 (while (re-search-forward "\n\nFrom " nil t
)
70 (replace-match "\n\n>From "))
71 ;; insert a newline, otherwise the last line gets lost
72 (goto-char (point-max))
77 (defun gnus-summary-save-article-vm (&optional arg
)
78 "Append the current article to a vm folder.
79 If N is a positive number, save the N next articles.
80 If N is a negative number, save the N previous articles.
81 If N is nil and any articles have been marked with the process mark,
82 save those articles instead."
85 (let ((gnus-default-article-saver 'gnus-summary-save-in-vm
))
86 (gnus-summary-save-article arg
)))
88 (defun gnus-summary-save-in-vm (&optional folder
)
91 (gnus-read-save-file-name
92 "Save %s in VM folder:" folder
93 gnus-mail-save-name gnus-newsgroup-name
94 gnus-current-headers
'gnus-newsgroup-last-mail
))
95 (gnus-eval-in-buffer-window gnus-original-article-buffer
99 (let ((vm-folder (gnus-vm-make-folder)))
100 (vm-save-message folder
)
101 (kill-buffer vm-folder
))))))
105 ;;; gnus-vm.el ends here