Mercurial > emacs
annotate lisp/gnus/gnus-vm.el @ 104756:3c4b86d69bcc
Mention define-obsolete-face-alias.
author | Glenn Morris <rgm@gnu.org> |
---|---|
date | Mon, 31 Aug 2009 01:34:13 +0000 |
parents | a9dc0e7c3f2b |
children | 1d1d5d9bd884 |
rev | line source |
---|---|
17493 | 1 ;;; gnus-vm.el --- vm interface for Gnus |
2 | |
64754
fafd692d1e40
Update years in copyright notice; nfc.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
64085
diff
changeset
|
3 ;; Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, |
100908 | 4 ;; 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, Inc. |
31716
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 | |
94662
f42ef85caf91
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
93975
diff
changeset
|
11 ;; GNU Emacs is free software: you can redistribute it and/or modify |
17493 | 12 ;; it under the terms of the GNU General Public License as published by |
94662
f42ef85caf91
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
93975
diff
changeset
|
13 ;; the Free Software Foundation, either version 3 of the License, or |
f42ef85caf91
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
93975
diff
changeset
|
14 ;; (at your option) any later version. |
17493 | 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 | |
94662
f42ef85caf91
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
93975
diff
changeset
|
22 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. |
17493 | 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 | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
25278
diff
changeset
|
39 (require 'cl) |
17493 | 40 (autoload 'vm-mode "vm") |
41 (autoload 'vm-save-message "vm") | |
42 (autoload 'vm-forward-message "vm") | |
43 (autoload 'vm-reply "vm") | |
44 (autoload 'vm-mail "vm")) | |
45 | |
46 (defvar gnus-vm-inhibit-window-system nil | |
47 "Inhibit loading `win-vm' if using a window-system. | |
48 Has to be set before gnus-vm is loaded.") | |
49 | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
25278
diff
changeset
|
50 (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
|
51 (ignore-errors |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
25278
diff
changeset
|
52 (when window-system |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
25278
diff
changeset
|
53 (require 'win-vm)))) |
17493 | 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") | |
34858
6c93e7d6a930
* message.el (message-setup): Use cons. Suggested by Johan Vromans
ShengHuo ZHU <zsh@cs.rochester.edu>
parents:
31716
diff
changeset
|
85 (require 'gnus-art) |
17493 | 86 (let ((gnus-default-article-saver 'gnus-summary-save-in-vm)) |
87 (gnus-summary-save-article arg))) | |
88 | |
89 (defun gnus-summary-save-in-vm (&optional folder) | |
90 (interactive) | |
91 (setq folder | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
17493
diff
changeset
|
92 (gnus-read-save-file-name |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
17493
diff
changeset
|
93 "Save %s in VM folder:" folder |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
17493
diff
changeset
|
94 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
|
95 gnus-current-headers 'gnus-newsgroup-last-mail)) |
17493 | 96 (gnus-eval-in-buffer-window gnus-original-article-buffer |
97 (save-excursion | |
98 (save-restriction | |
99 (widen) | |
100 (let ((vm-folder (gnus-vm-make-folder))) | |
101 (vm-save-message folder) | |
102 (kill-buffer vm-folder)))))) | |
103 | |
104 (provide 'gnus-vm) | |
105 | |
93975
1e3a407766b9
Fix up comment convention on the arch-tag lines.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
79708
diff
changeset
|
106 ;; arch-tag: 42ca7f88-a12f-461d-be3e-cac7efb44866 |
38413
a26d9b55abb6
Some fixes to follow coding conventions in files from Gnus.
Pavel Janík <Pavel@Janik.cz>
parents:
34858
diff
changeset
|
107 ;;; gnus-vm.el ends here |