Mercurial > emacs
annotate lisp/gnus/nngateway.el @ 104801:a55980608639
(ecomplete-add-item): In Emacs, use float-time.
author | Glenn Morris <rgm@gnu.org> |
---|---|
date | Wed, 02 Sep 2009 03:26:30 +0000 |
parents | a9dc0e7c3f2b |
children | 1d1d5d9bd884 |
rev | line source |
---|---|
17493 | 1 ;;; nngateway.el --- posting news via mail gateways |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2 |
64754
fafd692d1e40
Update years in copyright notice; nfc.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
64085
diff
changeset
|
3 ;; Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, |
100908 | 4 ;; 2005, 2006, 2007, 2008, 2009 Free Software Foundation, Inc. |
17493 | 5 |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23712
diff
changeset
|
6 ;; Author: Lars Magne Ingebrigtsen <larsi@gnus.org> |
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 ;;; Code: | |
27 | |
23712 | 28 (eval-when-compile (require 'cl)) |
17493 | 29 (require 'nnoo) |
30 (require 'message) | |
31 | |
32 (nnoo-declare nngateway) | |
33 | |
34 (defvoo nngateway-address nil | |
35 "Address of the mail-to-news gateway.") | |
36 | |
37 (defvoo nngateway-header-transformation 'nngateway-simple-header-transformation | |
38 "Function to be called to rewrite the news headers into mail headers. | |
39 It is called narrowed to the headers to be transformed with one | |
40 parameter -- the gateway address.") | |
41 | |
42 ;;; Interface functions | |
43 | |
44 (nnoo-define-basics nngateway) | |
45 | |
46 (deffoo nngateway-open-server (server &optional defs) | |
47 (if (nngateway-server-opened server) | |
48 t | |
49 (unless (assq 'nngateway-address defs) | |
50 (setq defs (append defs (list (list 'nngateway-address server))))) | |
51 (nnoo-change-server 'nngateway server defs))) | |
52 | |
53 (deffoo nngateway-request-post (&optional server) | |
54 (when (or (nngateway-server-opened server) | |
55 (nngateway-open-server server)) | |
56 ;; Rewrite the header. | |
57 (let ((buf (current-buffer))) | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
58 (with-temp-buffer |
17493 | 59 (insert-buffer-substring buf) |
60 (message-narrow-to-head) | |
61 (funcall nngateway-header-transformation nngateway-address) | |
19969
5f1ab3dd344d
*** empty log message ***
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
17493
diff
changeset
|
62 (goto-char (point-max)) |
5f1ab3dd344d
*** empty log message ***
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
17493
diff
changeset
|
63 (insert mail-header-separator "\n") |
17493 | 64 (widen) |
65 (let (message-required-mail-headers) | |
56927
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
66 (funcall (or message-send-mail-real-function |
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
67 message-send-mail-function))) |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23712
diff
changeset
|
68 t)))) |
17493 | 69 |
70 ;;; Internal functions | |
71 | |
72 (defun nngateway-simple-header-transformation (gateway) | |
73 "Transform the headers to use GATEWAY." | |
74 (let ((newsgroups (mail-fetch-field "newsgroups"))) | |
75 (message-remove-header "to") | |
76 (message-remove-header "cc") | |
77 (goto-char (point-min)) | |
78 (insert "To: " (nnheader-replace-chars-in-string newsgroups ?. ?-) | |
79 "@" gateway "\n"))) | |
80 | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23712
diff
changeset
|
81 (defun nngateway-mail2news-header-transformation (gateway) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23712
diff
changeset
|
82 "Transform the headers for sending to a mail2news gateway." |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23712
diff
changeset
|
83 (message-remove-header "to") |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23712
diff
changeset
|
84 (message-remove-header "cc") |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23712
diff
changeset
|
85 (goto-char (point-min)) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23712
diff
changeset
|
86 (insert "To: " gateway "\n")) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
23712
diff
changeset
|
87 |
17493 | 88 (nnoo-define-skeleton nngateway) |
89 | |
90 (provide 'nngateway) | |
91 | |
93975
1e3a407766b9
Fix up comment convention on the arch-tag lines.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
79708
diff
changeset
|
92 ;; arch-tag: f7ecb92e-b10c-43d5-9a9b-1314233341fc |
17493 | 93 ;;; nngateway.el ends here |