*** empty log message ***
[gnus] / lisp / nngateway.el
1 ;;; nngateway.el --- posting news via mail gateways
2 ;; Copyright (C) 1996 Free Software Foundation, Inc.
3
4 ;; Author: Lars Magne Ingebrigtsen <larsi@ifi.uio.no>
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 ;;; Code:
27
28 (require 'nnoo)
29 (require 'message)
30
31 (nnoo-declare nngateway)
32
33 (defvoo nngateway-address nil
34   "Address of the mail-to-news gateway.")
35
36 (defvoo nngateway-header-transformation 'nngateway-simple-header-transformation
37   "Function to be called to rewrite the news headers into mail headers.
38 It is called narrowed to the headers to be transformed with one
39 parameter -- the gateway address.")
40
41 ;;; Interface functions
42
43 (nnoo-define-basics nngateway)
44 (nnoo-define-skeleton 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 'nntp-address server)))))
51     (nnoo-change-server 'nntp 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)))
58       (nnheader-temp-write nil
59         (insert-buffer-substring buf)
60         (message-narrow-to-head)
61         (funcall nngateway-header-transformation nngateway-address)
62         (widen)
63         (let (message-required-mail-headers)
64           (message-send-mail))))))
65
66 ;;; Internal functions
67
68 (defun nngateway-simple-header-transformation (gateway)
69   "Transform the headers to use GATEWAY."
70   (let ((newsgroups (mail-fetch-field "newsgroups")))
71     (message-remove-header "to")
72     (message-remove-header "cc")
73     (goto-char (point-min))
74     (insert "To: " (nnheader-replace-chars-in-string newsgroups ?. ?-)
75             "@" gateway "\n")))
76     
77 (provide 'nngateway)
78
79 ;;; nngateway.el ends here