* mixi-el: Version 1.4.1 released.
[elisp/mixi.git] / mixi-gnus.el
1 ;;; mixi-gnus.el --- Gnus integration for mixi
2
3 ;; Copyright (C) 2007 OHASHI Akira
4
5 ;; Author: OHASHI Akira <bg66@koka-in.org>
6 ;; Keywords: news
7
8 ;; This file is *NOT* a part of Gnus.
9
10 ;; This program is free software; you can redistribute it and/or modify
11 ;; it under the terms of the GNU General Public License as published by
12 ;; the Free Software Foundation; either version 2, or (at your option)
13 ;; any later version.
14
15 ;; This program is distributed in the hope that it will be useful,
16 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
17 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18 ;; GNU General Public License for more details.
19
20 ;; You should have received a copy of the GNU General Public License
21 ;; along with GNU Emacs; see the file COPYING.  If not, write to the
22 ;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
23 ;; Boston, MA 02110-1301, USA.
24
25 ;;; Commentary:
26
27 ;; To use, add the following lines to your ~/.emacs:
28 ;;
29 ;; (autoload 'mixi-gnus-setup "mixi-gnus")
30 ;; (add-hook 'gnus-startup-hook 'mixi-gnus-setup)
31
32 ;; If you have bug reports and/or suggestions for improvement, please
33 ;; send them via <URL:http://mixi.jp/view_community.pl?id=1596390>.
34
35 ;;; Code:
36
37 (require 'mixi-utils)
38 (require 'message)
39
40 (defun message-mixi-p ()
41   "Say whether the current buffer contains a mixi message."
42   (and (not message-this-is-news)
43        (save-excursion
44          (save-restriction
45            (message-narrow-to-headers)
46            (or (message-fetch-field "mixi-to")
47                (string-match mixi-to-regexp (message-fetch-field "to")))))))
48
49 (defun message-send-via-mixi (arg)
50   "Send the current message via mixi."
51   (let* ((tembuf (message-generate-new-buffer-clone-locals " message temp"))
52          (case-fold-search nil)
53          (mailbuf (current-buffer)))
54     ;; Avoid matching with message-mail-p.
55     (with-current-buffer mailbuf
56       (goto-char (point-min))
57       (unless (search-forward "\nMixi-To: " nil t)
58         (when (search-forward "\nTo: " nil t)
59           (replace-match "\nMixi-To: "))))
60     (unwind-protect
61         (save-excursion
62           (set-buffer tembuf)
63           (erase-buffer)
64           ;; Avoid copying text props (except hard newlines).
65           (insert (with-current-buffer mailbuf
66                     (mml-buffer-substring-no-properties-except-hard-newlines
67                      (point-min) (point-max))))
68           (mixi-send-mail (message-fetch-field "mixi-to")
69                           (message-fetch-field "subject")
70                           (buffer-substring (message-goto-body)
71                                             (point-max))))
72       (kill-buffer tembuf))
73     (set-buffer mailbuf)
74     (push 'mixi message-sent-message-via)))
75
76 (defun mixi-gnus-setup ()
77   (let ((method '(mixi message-mixi-p message-send-via-mixi)))
78     (unless (member method message-send-method-alist)
79       (setq message-send-method-alist
80             (cons method message-send-method-alist)))))
81
82 (provide 'mixi-gnus)
83
84 ;;; mixi-gnus.el ends here