Mercurial > emacs
annotate lisp/gnus/gnus-vm.el @ 28129:25e19c5c91f8
More on partial completion.
author | Dave Love <fx@gnu.org> |
---|---|
date | Sun, 12 Mar 2000 18:36:20 +0000 |
parents | cbe304a26771 |
children | 9968f55ad26e |
rev | line source |
---|---|
17493 | 1 ;;; gnus-vm.el --- vm interface for Gnus |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
17493
diff
changeset
|
2 ;; Copyright (C) 1994,95,96,97,98 Free Software Foundation, Inc. |
17493 | 3 |
25278 | 4 ;; Author: Per Persson <pp@gnu.org> |
17493 | 5 ;; Keywords: news, mail |
6 | |
7 ;; This file is 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 by | |
11 ;; the Free Software Foundation; either version 2, or (at your option) | |
12 ;; any later version. | |
13 | |
14 ;; GNU Emacs is distributed in the hope that it will be useful, | |
15 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of | |
16 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
17 ;; GNU 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 ;; Major contributors: | |
27 ;; Christian Limpach <Christian.Limpach@nice.ch> | |
28 ;; Some code stolen from: | |
29 ;; Rick Sladkey <jrs@world.std.com> | |
30 | |
31 ;;; Code: | |
32 | |
33 (require 'sendmail) | |
34 (require 'message) | |
35 (require 'gnus) | |
36 (require 'gnus-msg) | |
37 | |
38 (eval-when-compile | |
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")) | |
44 | |
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.") | |
48 | |
49 (or gnus-vm-inhibit-window-system | |
50 (condition-case nil | |
51 (when window-system | |
52 (require 'win-vm)) | |
53 (error nil))) | |
54 | |
55 (when (not (featurep 'vm)) | |
56 (load "vm")) | |
57 | |
58 (defun gnus-vm-make-folder (&optional buffer) | |
59 (let ((article (or buffer (current-buffer))) | |
60 (tmp-folder (generate-new-buffer " *tmp-folder*")) | |
61 (start (point-min)) | |
62 (end (point-max))) | |
63 (set-buffer tmp-folder) | |
64 (insert-buffer-substring article start end) | |
65 (goto-char (point-min)) | |
66 (if (looking-at "^\\(From [^ ]+ \\).*$") | |
67 (replace-match (concat "\\1" (current-time-string))) | |
68 (insert "From " gnus-newsgroup-name " " | |
69 (current-time-string) "\n")) | |
70 (while (re-search-forward "\n\nFrom " nil t) | |
71 (replace-match "\n\n>From ")) | |
72 ;; insert a newline, otherwise the last line gets lost | |
73 (goto-char (point-max)) | |
74 (insert "\n") | |
75 (vm-mode) | |
76 tmp-folder)) | |
77 | |
78 (defun gnus-summary-save-article-vm (&optional arg) | |
79 "Append the current article to a vm folder. | |
80 If N is a positive number, save the N next articles. | |
81 If N is a negative number, save the N previous articles. | |
82 If N is nil and any articles have been marked with the process mark, | |
83 save those articles instead." | |
84 (interactive "P") | |
85 (let ((gnus-default-article-saver 'gnus-summary-save-in-vm)) | |
86 (gnus-summary-save-article arg))) | |
87 | |
88 (defun gnus-summary-save-in-vm (&optional folder) | |
89 (interactive) | |
90 (setq folder | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
17493
diff
changeset
|
91 (gnus-read-save-file-name |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
17493
diff
changeset
|
92 "Save %s in VM folder:" folder |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
17493
diff
changeset
|
93 gnus-mail-save-name gnus-newsgroup-name |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
17493
diff
changeset
|
94 gnus-current-headers 'gnus-newsgroup-last-mail)) |
17493 | 95 (gnus-eval-in-buffer-window gnus-original-article-buffer |
96 (save-excursion | |
97 (save-restriction | |
98 (widen) | |
99 (let ((vm-folder (gnus-vm-make-folder))) | |
100 (vm-save-message folder) | |
101 (kill-buffer vm-folder)))))) | |
102 | |
103 (provide 'gnus-vm) | |
104 | |
105 ;;; gnus-vm.el ends here. |