Mercurial > emacs
annotate lisp/gnus/gnus-vm.el @ 48491:5d690a3537aa
(dired-sort-inhibit): New variable.
(dired-sort-toggle-or-edit): Err if dired-sort-inhibit non-nil.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Thu, 21 Nov 2002 17:31:51 +0000 |
parents | a26d9b55abb6 |
children | 695cf19ef79e d7ddb3e565de |
rev | line source |
---|---|
17493 | 1 ;;; gnus-vm.el --- vm interface for Gnus |
2 | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
25278
diff
changeset
|
3 ;; Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000 |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
25278
diff
changeset
|
4 ;; Free Software Foundation, Inc. |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
25278
diff
changeset
|
5 |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
25278
diff
changeset
|
6 ;; Author: Per Persson <pp@gnu.ai.mit.edu> |
17493 | 7 ;; Keywords: news, mail |
8 | |
9 ;; This file is part of GNU Emacs. | |
10 | |
11 ;; GNU Emacs is free software; you can redistribute it and/or modify | |
12 ;; it under the terms of the GNU General Public License as published by | |
13 ;; the Free Software Foundation; either version 2, or (at your option) | |
14 ;; any later version. | |
15 | |
16 ;; GNU Emacs is distributed in the hope that it will be useful, | |
17 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of | |
18 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
19 ;; GNU General Public License for more details. | |
20 | |
21 ;; You should have received a copy of the GNU General Public License | |
22 ;; along with GNU Emacs; see the file COPYING. If not, write to the | |
23 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330, | |
24 ;; Boston, MA 02111-1307, USA. | |
25 | |
26 ;;; Commentary: | |
27 | |
28 ;; Major contributors: | |
29 ;; Christian Limpach <Christian.Limpach@nice.ch> | |
30 ;; Some code stolen from: | |
31 ;; Rick Sladkey <jrs@world.std.com> | |
32 | |
33 ;;; Code: | |
34 | |
35 (require 'sendmail) | |
36 (require 'message) | |
37 (require 'gnus) | |
38 (require 'gnus-msg) | |
39 | |
40 (eval-when-compile | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
25278
diff
changeset
|
41 (require 'cl) |
17493 | 42 (autoload 'vm-mode "vm") |
43 (autoload 'vm-save-message "vm") | |
44 (autoload 'vm-forward-message "vm") | |
45 (autoload 'vm-reply "vm") | |
46 (autoload 'vm-mail "vm")) | |
47 | |
48 (defvar gnus-vm-inhibit-window-system nil | |
49 "Inhibit loading `win-vm' if using a window-system. | |
50 Has to be set before gnus-vm is loaded.") | |
51 | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
25278
diff
changeset
|
52 (unless gnus-vm-inhibit-window-system |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
25278
diff
changeset
|
53 (ignore-errors |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
25278
diff
changeset
|
54 (when window-system |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
25278
diff
changeset
|
55 (require 'win-vm)))) |
17493 | 56 |
57 (when (not (featurep 'vm)) | |
58 (load "vm")) | |
59 | |
60 (defun gnus-vm-make-folder (&optional buffer) | |
61 (let ((article (or buffer (current-buffer))) | |
62 (tmp-folder (generate-new-buffer " *tmp-folder*")) | |
63 (start (point-min)) | |
64 (end (point-max))) | |
65 (set-buffer tmp-folder) | |
66 (insert-buffer-substring article start end) | |
67 (goto-char (point-min)) | |
68 (if (looking-at "^\\(From [^ ]+ \\).*$") | |
69 (replace-match (concat "\\1" (current-time-string))) | |
70 (insert "From " gnus-newsgroup-name " " | |
71 (current-time-string) "\n")) | |
72 (while (re-search-forward "\n\nFrom " nil t) | |
73 (replace-match "\n\n>From ")) | |
74 ;; insert a newline, otherwise the last line gets lost | |
75 (goto-char (point-max)) | |
76 (insert "\n") | |
77 (vm-mode) | |
78 tmp-folder)) | |
79 | |
80 (defun gnus-summary-save-article-vm (&optional arg) | |
81 "Append the current article to a vm folder. | |
82 If N is a positive number, save the N next articles. | |
83 If N is a negative number, save the N previous articles. | |
84 If N is nil and any articles have been marked with the process mark, | |
85 save those articles instead." | |
86 (interactive "P") | |
34858
6c93e7d6a930
* message.el (message-setup): Use cons. Suggested by Johan Vromans
ShengHuo ZHU <zsh@cs.rochester.edu>
parents:
31716
diff
changeset
|
87 (require 'gnus-art) |
17493 | 88 (let ((gnus-default-article-saver 'gnus-summary-save-in-vm)) |
89 (gnus-summary-save-article arg))) | |
90 | |
91 (defun gnus-summary-save-in-vm (&optional folder) | |
92 (interactive) | |
93 (setq folder | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
17493
diff
changeset
|
94 (gnus-read-save-file-name |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
17493
diff
changeset
|
95 "Save %s in VM folder:" folder |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
17493
diff
changeset
|
96 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
|
97 gnus-current-headers 'gnus-newsgroup-last-mail)) |
17493 | 98 (gnus-eval-in-buffer-window gnus-original-article-buffer |
99 (save-excursion | |
100 (save-restriction | |
101 (widen) | |
102 (let ((vm-folder (gnus-vm-make-folder))) | |
103 (vm-save-message folder) | |
104 (kill-buffer vm-folder)))))) | |
105 | |
106 (provide 'gnus-vm) | |
107 | |
38413
a26d9b55abb6
Some fixes to follow coding conventions in files from Gnus.
Pavel Janík <Pavel@Janik.cz>
parents:
34858
diff
changeset
|
108 ;;; gnus-vm.el ends here |