home *** CD-ROM | disk | FTP | other *** search
/ Geek Gadgets 1 / ADE-1.bin / ade-dist / emacs-19.28-src.tgz / tar.out / fsf / emacs / lisp / gnuspost.el < prev    next >
Lisp/Scheme  |  1996-09-28  |  30KB  |  842 lines

  1. ;;; gnuspost.el --- post news commands for GNUS newsreader
  2.  
  3. ;; Copyright (C) 1989, 1990, 1993, 1994 Free Software Foundation, Inc.
  4.  
  5. ;; Author: Masanobu UMEDA <umerin@mse.kyutech.ac.jp>
  6. ;; Keywords: news
  7.  
  8. ;; This file is part of GNU Emacs.
  9.  
  10. ;; GNU Emacs 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. ;; GNU Emacs 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
  22. ;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
  23.  
  24. ;;; Code:
  25.  
  26. (require 'gnus)
  27.  
  28. (defvar gnus-organization-file "/usr/lib/news/organization"
  29.   "*Local news organization file.")
  30.  
  31. (defvar gnus-post-news-buffer "*post-news*")
  32. (defvar gnus-winconf-post-news nil)
  33.  
  34. (autoload 'news-reply-mode "rnewspost")
  35. (autoload 'timezone-make-date-arpa-standard "timezone")
  36.  
  37. ;;; Post news commands of GNUS Group Mode and Summary Mode
  38.  
  39. (defun gnus-group-post-news ()
  40.   "Post an article."
  41.   (interactive)
  42.   ;; Save window configuration.
  43.   (setq gnus-winconf-post-news (current-window-configuration))
  44.   (unwind-protect
  45.       (gnus-post-news)
  46.     (or (and (eq (current-buffer) (get-buffer gnus-post-news-buffer))
  47.          (not (zerop (buffer-size))))
  48.     ;; Restore last window configuration.
  49.     (set-window-configuration gnus-winconf-post-news)))
  50.   ;; We don't want to return to Summary buffer nor Article buffer later.
  51.   (if (get-buffer gnus-summary-buffer)
  52.       (bury-buffer gnus-summary-buffer))
  53.   (if (get-buffer gnus-article-buffer)
  54.       (bury-buffer gnus-article-buffer)))
  55.  
  56. (defun gnus-summary-post-news ()
  57.   "Post an article."
  58.   (interactive)
  59.   (gnus-summary-select-article t nil)
  60.   ;; Save window configuration.
  61.   (setq gnus-winconf-post-news (current-window-configuration))
  62.   (unwind-protect
  63.       (progn
  64.     (switch-to-buffer gnus-article-buffer)
  65.     (widen)
  66.     (delete-other-windows)
  67.     (gnus-post-news))
  68.     (or (and (eq (current-buffer) (get-buffer gnus-post-news-buffer))
  69.          (not (zerop (buffer-size))))
  70.     ;; Restore last window configuration.
  71.     (set-window-configuration gnus-winconf-post-news)))
  72.   ;; We don't want to return to Article buffer later.
  73.   (bury-buffer gnus-article-buffer))
  74.  
  75. (defun gnus-summary-followup (yank)
  76.   "Post a reply article.
  77. If prefix argument YANK is non-nil, original article is yanked automatically."
  78.   (interactive "P")
  79.   (gnus-summary-select-article t nil)
  80.   ;; Check Followup-To: poster.
  81.   (set-buffer gnus-article-buffer)
  82.   (if (and gnus-use-followup-to
  83.        (string-equal "poster" (gnus-fetch-field "followup-to"))
  84.        (or (not (eq gnus-use-followup-to t))
  85.            (not (y-or-n-p "Do you want to ignore `Followup-To: poster'? "))))
  86.       ;; Mail to the poster.  GNUS is now RFC1036 compliant.
  87.       (gnus-summary-reply yank)
  88.     ;; Save window configuration.
  89.     (setq gnus-winconf-post-news (current-window-configuration))
  90.     (unwind-protect
  91.     (progn
  92.       (switch-to-buffer gnus-article-buffer)
  93.       (widen)
  94.       (delete-other-windows)
  95.       (gnus-news-reply yank))
  96.       (or (and (eq (current-buffer) (get-buffer gnus-post-news-buffer))
  97.            (not (zerop (buffer-size))))
  98.       ;; Restore last window configuration.
  99.       (set-window-configuration gnus-winconf-post-news)))
  100.     ;; We don't want to return to Article buffer later.
  101.     (bury-buffer gnus-article-buffer)))
  102.  
  103. (defun gnus-summary-followup-with-original ()
  104.   "Post a reply article with original article."
  105.   (interactive)
  106.   (gnus-summary-followup t))
  107.  
  108. (defun gnus-summary-cancel-article ()
  109.   "Cancel an article you posted."
  110.   (interactive)
  111.   (gnus-summary-select-article t nil)
  112.   (gnus-eval-in-buffer-window gnus-article-buffer
  113.     (gnus-cancel-news)))
  114.  
  115.  
  116. ;;; Post a News using NNTP
  117.  
  118. ;;;###autoload
  119. (fset 'sendnews 'gnus-post-news)
  120.  
  121. ;;;###autoload
  122. (fset 'postnews 'gnus-post-news)
  123.  
  124. ;;;###autoload
  125. (defun gnus-post-news ()
  126.   "Begin editing a new USENET news article to be posted.
  127. Type \\[describe-mode] once editing the article to get a list of commands."
  128.   (interactive)
  129.   (if (or (not gnus-novice-user)
  130.       (y-or-n-p "Are you sure you want to post to all of USENET? "))
  131.       (let ((artbuf (current-buffer))
  132.         (newsgroups            ;Default newsgroup.
  133.          (if (eq major-mode 'gnus-article-mode) gnus-newsgroup-name))
  134.         (subject nil)
  135.         ;; Get default distribution.
  136.         (distribution (car gnus-local-distributions))
  137.         (followup-to nil))
  138.     ;; Connect to NNTP server if not connected yet, and get
  139.     ;; several information.
  140.     (if (not (gnus-server-opened))
  141.         (progn
  142.           (gnus-start-news-server t) ;Confirm server.
  143.           (gnus-setup-news)))
  144.     ;; Get current article information.
  145.     (save-restriction
  146.       (and (not (zerop (buffer-size)))
  147.            ;;(equal major-mode 'news-mode)
  148.            (equal major-mode 'gnus-article-mode)
  149.            (progn
  150.          ;;(news-show-all-headers)
  151.          (gnus-article-show-all-headers)
  152.          (narrow-to-region (point-min)
  153.                    (progn (goto-char (point-min))
  154.                       (search-forward "\n\n")
  155.                       (point)))))
  156.       (setq news-reply-yank-from (mail-fetch-field "from"))
  157.       (setq news-reply-yank-message-id (mail-fetch-field "message-id")))
  158.     (pop-to-buffer gnus-post-news-buffer)
  159.     (news-reply-mode)
  160.     (gnus-overload-functions)
  161.     (if (and (buffer-modified-p)
  162.          (> (buffer-size) 0)
  163.          (not (y-or-n-p "Unsent article being composed; erase it? ")))
  164.         ;; Continue composition.
  165.         ;; Make news-reply-yank-original work on the current article.
  166.         (setq mail-reply-buffer artbuf)
  167.       (erase-buffer)
  168.       (if gnus-interactive-post
  169.           ;; Newsgroups, subject and distribution are asked for.
  170.           ;; Suggested by yuki@flab.fujitsu.junet.
  171.           (progn
  172.         ;; Subscribed newsgroup names are required for
  173.         ;; completing read of newsgroup.
  174.         (or gnus-newsrc-assoc
  175.             (gnus-read-newsrc-file))
  176.         ;; Which do you like? (UMERIN)
  177.         ;; (setq newsgroups (read-string "Newsgroups: " "general"))
  178.         (or newsgroups        ;Use the default newsgroup.
  179.             (let (group)
  180.               (while (not
  181.                   (string=
  182.                    (setq group 
  183.                      (completing-read "Newsgroup: "
  184.                               gnus-newsrc-assoc
  185.                               nil 'require-match))
  186.                    ""))
  187.             (or followup-to (setq followup-to group))
  188.             (if newsgroups
  189.                 (setq newsgroups (concat newsgroups "," group))
  190.               (setq newsgroups group)))))
  191.         (setq subject (read-string "Subject: "))
  192.         ;; Choose a distribution from gnus-distribution-list.
  193.         ;; completing-read should not be used with
  194.         ;; 'require-match functionality in order to allow use
  195.         ;; of unknow distribution.
  196.         (gnus-read-distributions-file)
  197.         (setq distribution
  198.               (if (consp gnus-distribution-list)
  199.               (completing-read "Distribution: "
  200.                        gnus-distribution-list
  201.                        nil nil ;Never 'require-match
  202.                        distribution ;Default distribution.
  203.                        )
  204.             (read-string "Distribution: ")))
  205.         ;; Empty string is okay.
  206.         ;;(if (string-equal distribution "")
  207.         ;;    (setq distribution nil))
  208.         ))
  209.       (news-setup () subject () newsgroups artbuf)
  210.       ;; Make sure the article is posted by GNUS.
  211.       ;;(mail-position-on-field "Posting-Software")
  212.       ;;(insert "GNUS: NNTP-based News Reader for GNU Emacs")
  213.       ;; Insert Distribution: field.
  214.       ;; Suggested by ichikawa@flab.fujitsu.junet.
  215.       (mail-position-on-field "Distribution")
  216.       (insert (or distribution ""))
  217.       ;; Add Followup-To header
  218.       (if followup-to
  219.           (progn
  220.         (mail-position-on-field "Followup-To")
  221.         (insert followup-to)))
  222.       ;; Handle author copy using FCC field.
  223.       (if gnus-author-copy
  224.           (progn
  225.         (mail-position-on-field "FCC")
  226.         (insert gnus-author-copy)))
  227.       (if gnus-interactive-post
  228.           ;; All fields are filled in.
  229.           (goto-char (point-max))
  230.         ;; Move point to Newsgroup: field.
  231.         (goto-char (point-min))
  232.         (end-of-line))
  233.       ))
  234.     (message "")))
  235.  
  236. (defun gnus-news-reply (&optional yank)
  237.   "Compose and post a reply (aka a followup) to the current article on USENET.
  238. While composing the followup, use \\[news-reply-yank-original] to yank the
  239. original message into it."
  240.   (interactive)
  241.   (if (or (not gnus-novice-user)
  242.       (y-or-n-p "Are you sure you want to followup to all of USENET? "))
  243.       (let (from cc subject date to followup-to newsgroups message-of
  244.          references distribution message-id
  245.          (artbuf (current-buffer)))
  246.     (save-restriction
  247.       (and (not (zerop (buffer-size)))
  248.            ;;(equal major-mode 'news-mode)
  249.            (equal major-mode 'gnus-article-mode)
  250.            (progn
  251.          ;; (news-show-all-headers)
  252.          (gnus-article-show-all-headers)
  253.          (narrow-to-region (point-min)
  254.                    (progn (goto-char (point-min))
  255.                       (search-forward "\n\n")
  256.                       (point)))))
  257.       (setq from (mail-fetch-field "from"))
  258.       ;; Get reply-to working corrrectly for gnus-auto-mail-to-author (jpm)
  259.       (setq reply-to (mail-fetch-field "reply-to"))
  260.       (setq    news-reply-yank-from from)
  261.       (setq    subject (mail-fetch-field "subject"))
  262.       (setq    date (mail-fetch-field "date"))
  263.       (setq followup-to (mail-fetch-field "followup-to"))
  264.       ;; Ignore Followup-To: poster.
  265.       (if (or (null gnus-use-followup-to) ;Ignore followup-to: field.
  266.           (string-equal "" followup-to)    ;Bogus header.
  267.           (string-equal "poster" followup-to))
  268.           (setq followup-to nil))
  269.       (setq    newsgroups (or followup-to (mail-fetch-field "newsgroups")))
  270.       (setq    references (mail-fetch-field "references"))
  271.       (setq    distribution (mail-fetch-field "distribution"))
  272.       (setq    message-id (mail-fetch-field "message-id"))
  273.       (setq    news-reply-yank-message-id message-id))
  274.     (pop-to-buffer gnus-post-news-buffer)
  275.     (news-reply-mode)
  276.     (gnus-overload-functions)
  277.     (if (and (buffer-modified-p)
  278.          (> (buffer-size) 0)
  279.          (not (y-or-n-p "Unsent article being composed; erase it? ")))
  280.         ;; Continue composition.
  281.         ;; Make news-reply-yank-original work on current article.
  282.         (setq mail-reply-buffer artbuf)
  283.       (erase-buffer)
  284.       (and subject
  285.            (setq subject
  286.              (concat "Re: " (gnus-simplify-subject subject 're-only))))
  287.       (and from
  288.            (progn
  289.          (let ((stop-pos
  290.             (string-match "  *at \\|  *@ \\| *(\\| *<" from)))
  291.            (setq message-of
  292.              (concat
  293.               (if stop-pos (substring from 0 stop-pos) from)
  294.               "'s message of "
  295.               date)))))
  296.       (news-setup nil subject message-of newsgroups artbuf)
  297.       (if followup-to
  298.           (progn (news-reply-followup-to)
  299.              (insert followup-to)))
  300.       ;; Fold long references line to follow RFC1036.
  301.       (mail-position-on-field "References")
  302.       (let ((begin (point))
  303.         (fill-column 79)
  304.         (fill-prefix "\t"))
  305.         (if references
  306.         (insert references))
  307.         (if (and references message-id)
  308.         (insert " "))
  309.         (if message-id
  310.         (insert message-id))
  311.         ;; The region must end with a newline to fill the region
  312.         ;; without inserting extra newline.
  313.         (fill-region-as-paragraph begin (1+ (point))))
  314.       ;; Make sure the article is posted by GNUS.
  315.       ;;(mail-position-on-field "Posting-Software")
  316.       ;;(insert "GNUS: NNTP-based News Reader for GNU Emacs")
  317.       ;; Distribution must be the same as original article.
  318.       (mail-position-on-field "Distribution")
  319.       (insert (or distribution ""))
  320.       ;; Handle author copy using FCC field.
  321.       (if gnus-author-copy
  322.           (progn
  323.         (mail-position-on-field "FCC")
  324.         (insert gnus-author-copy)))
  325.       ;; Insert To: FROM field, which is expected to mail the
  326.       ;; message to the author of the article too.  Use Reply-To
  327.       ;; field like gnus-mail-reply-using-m* (jpm).
  328.       (if (and gnus-auto-mail-to-author (or reply-to from))
  329.           (progn
  330.         (goto-char (point-min))
  331.         (insert "To: " (or reply-to from) "\n")))
  332.       (goto-char (point-max)))
  333.     ;; Yank original article automatically.
  334.     (if yank
  335.         (let ((last (point)))
  336.           ;;(goto-char (point-max))
  337.           ;; Insert at current point.
  338.           (news-reply-yank-original nil)
  339.           (goto-char last)))
  340.     )
  341.     (message "")))
  342.  
  343. (defun gnus-inews-news ()
  344.   "Send a news message."
  345.   (interactive)
  346.   (let* ((case-fold-search nil)
  347.      (server-running (gnus-server-opened)))
  348.     (save-excursion
  349.       ;; Connect to default NNTP server if necessary.
  350.       ;; Suggested by yuki@flab.fujitsu.junet.
  351.       (gnus-start-news-server)        ;Use default server.
  352.       ;; NNTP server must be opened before current buffer is modified.
  353.       (widen)
  354.       (goto-char (point-min))
  355.       (run-hooks 'news-inews-hook)
  356.       (save-restriction
  357.     (narrow-to-region
  358.      (point-min)
  359.      (progn
  360.        (goto-char (point-min))
  361.        (search-forward (concat "\n" mail-header-separator "\n"))
  362.        (point)))
  363.  
  364.      ;; Correct newsgroups field: change sequence of spaces to comma and 
  365.      ;; eliminate spaces around commas.  Eliminate imbedded line breaks.
  366.      (goto-char (point-min))
  367.      (if (search-forward-regexp "^Newsgroups: +" nil t)
  368.          (save-restriction
  369.            (narrow-to-region
  370.         (point)
  371.         (if (re-search-forward "^[^ \t]" nil 'end)
  372.             (match-beginning 0)
  373.           (point-max)))
  374.            (goto-char (point-min))
  375.            (replace-regexp "\n[ \t]+" " ") ;No line breaks (too confusing)
  376.            (goto-char (point-min))
  377.            (replace-regexp "[ \t\n]*,[ \t\n]*\\|[ \t]+" ",")
  378.          ))
  379.  
  380.      ;; Mail the message too if To: or Cc: exists.
  381.      (if (or (mail-fetch-field "to" nil t)
  382.          (mail-fetch-field "cc" nil t))
  383.          (if gnus-mail-send-method
  384.          (progn
  385.            (message "Sending via mail...")
  386.            (widen)
  387.            (funcall gnus-mail-send-method)
  388.            (message "Sending via mail... done"))
  389.            (ding)
  390.            (message "No mailer defined.  To: and/or Cc: fields ignored.")
  391.            (sit-for 1))))
  392.  
  393.       ;; Send to NNTP server. 
  394.       (message "Posting to USENET...")
  395.       (if (gnus-inews-article)
  396.       (message "Posting to USENET... done")
  397.     ;; We cannot signal an error.
  398.     (ding) (message "Article rejected: %s" (gnus-status-message)))
  399.       (set-buffer-modified-p nil))
  400.     ;; If NNTP server is opened by gnus-inews-news, close it by myself.
  401.     (or server-running
  402.     (gnus-close-server))
  403.     (and (fboundp 'bury-buffer) (bury-buffer))
  404.     ;; Restore last window configuration.
  405.     (and gnus-winconf-post-news
  406.      (set-window-configuration gnus-winconf-post-news))
  407.     (setq gnus-winconf-post-news nil)
  408.     ))
  409.  
  410. (defun gnus-cancel-news ()
  411.   "Cancel an article you posted."
  412.   (interactive)
  413.   (if (yes-or-no-p "Do you really want to cancel this article? ")
  414.       (let ((from nil)
  415.         (newsgroups nil)
  416.         (message-id nil)
  417.         (distribution nil))
  418.     (save-excursion
  419.       ;; Get header info. from original article.
  420.       (save-restriction
  421.         (gnus-article-show-all-headers)
  422.         (goto-char (point-min))
  423.         (search-forward "\n\n" nil 'move)
  424.         (narrow-to-region (point-min) (point))
  425.         (setq from (mail-fetch-field "from"))
  426.         (setq newsgroups (mail-fetch-field "newsgroups"))
  427.         (setq message-id (mail-fetch-field "message-id"))
  428.         (setq distribution (mail-fetch-field "distribution")))
  429.       ;; Verify if the article is absolutely user's by comparing
  430.       ;; user id with value of its From: field.
  431.       (if (not
  432.            (string-equal
  433.         (downcase (mail-strip-quoted-names from))
  434.         (downcase (mail-strip-quoted-names (gnus-inews-user-name)))))
  435.           (progn
  436.         (ding) (message "This article is not yours."))
  437.         ;; Make control article.
  438.         (set-buffer (get-buffer-create " *GNUS-canceling*"))
  439.         (buffer-flush-undo (current-buffer))
  440.         (erase-buffer)
  441.         (insert "Newsgroups: " newsgroups "\n"
  442.             "Subject: cancel " message-id "\n"
  443.             "Control: cancel " message-id "\n"
  444.             ;; We should not use the first value of
  445.             ;;  `gnus-distribution-list' as default value,
  446.             ;;  because distribution must be as same as original
  447.             ;;  article.
  448.             "Distribution: " (or distribution "") "\n"
  449.             mail-header-separator "\n"
  450.             )
  451.         ;; Send the control article to NNTP server.
  452.         (message "Canceling your article...")
  453.         (if (gnus-inews-article)
  454.         (message "Canceling your article... done")
  455.           (ding) (message "Failed to cancel your article"))
  456.         ;; Kill the article buffer.
  457.         (kill-buffer (current-buffer))
  458.         )))
  459.     ))
  460.  
  461.  
  462. ;;; Lowlevel inews interface
  463.  
  464. (defun gnus-inews-article ()
  465.   "Post an article in current buffer using NNTP protocol."
  466.   (let ((artbuf (current-buffer))
  467.     (tmpbuf (get-buffer-create " *GNUS-posting*")))
  468.     (save-excursion
  469.       (set-buffer tmpbuf)
  470.       (buffer-flush-undo (current-buffer))
  471.       (erase-buffer)
  472.       (insert-buffer-substring artbuf)
  473.       ;; Remove the header separator.
  474.       (goto-char (point-min))
  475.       (search-forward (concat "\n" mail-header-separator "\n"))
  476.       (replace-match "\n\n")
  477.       (goto-char (point-max))
  478.       ;; require a newline at the end for inews to append .signature to
  479.       (or (= (preceding-char) ?\n)
  480.       (insert ?\n))
  481.       ;; This hook may insert a signature.
  482.       (run-hooks 'gnus-prepare-article-hook)
  483.       ;; Prepare article headers.  All message body such as signature
  484.       ;; must be inserted before Lines: field is prepared.
  485.       (save-restriction
  486.     (goto-char (point-min))
  487.     (search-forward "\n\n")
  488.     (narrow-to-region (point-min) (point))
  489.     (gnus-inews-insert-headers))
  490.       ;; Run final inews hooks.  This hook may do FCC.
  491.       ;; The article must be saved before being posted because
  492.       ;; `gnus-request-post' modifies the buffer.
  493.       (run-hooks 'gnus-inews-article-hook)
  494.       ;; Post an article to NNTP server.
  495.       ;; Return NIL if post failed.
  496.       (prog1
  497.       (gnus-request-post)
  498.     (kill-buffer (current-buffer)))
  499.       )))
  500.  
  501. (defun gnus-inews-insert-headers ()
  502.   "Prepare article headers.
  503. Fields already prepared in the buffer are not modified.
  504. Fields in gnus-required-headers will be generated."
  505.   (save-excursion
  506.     (let ((date (gnus-inews-date))
  507.       (message-id (gnus-inews-message-id))
  508.       (organization (gnus-inews-organization)))
  509.       (goto-char (point-min))
  510.       (or (mail-fetch-field "path")
  511.       (and (memq 'Path gnus-required-headers)
  512.            (insert "Path: " (gnus-inews-path) "\n")))
  513.       (or (mail-fetch-field "from")
  514.       (and (memq 'From gnus-required-headers)
  515.            (insert "From: " (gnus-inews-user-name) "\n")))
  516.       ;; If there is no subject, make Subject: field.
  517.       (or (mail-fetch-field "subject")
  518.       (and (memq 'Subject gnus-required-headers)
  519.            (insert "Subject: \n")))
  520.       ;; If there is no newsgroups, make Newsgroups: field.
  521.       (or (mail-fetch-field "newsgroups")
  522.       (and (memq 'Newsgroups gnus-required-headers)
  523.            (insert "Newsgroups: \n")))
  524.       (or (mail-fetch-field "message-id")
  525.       (and message-id
  526.            (memq 'Message-ID gnus-required-headers)
  527.            (insert "Message-ID: " message-id "\n")))
  528.       (or (mail-fetch-field "date")
  529.       (and date
  530.            (memq 'Date gnus-required-headers)
  531.            (insert "Date: " date "\n")))
  532.       ;; Optional fields in RFC977 and RFC1036
  533.       (or (mail-fetch-field "organization")
  534.       (and organization
  535.            (memq 'Organization gnus-required-headers)
  536.            (let ((begin (point))
  537.              (fill-column 79)
  538.              (fill-prefix "\t"))
  539.          (insert "Organization: " organization "\n")
  540.          (fill-region-as-paragraph begin (point)))))
  541.       (or (mail-fetch-field "distribution")
  542.       (and (memq 'Distribution gnus-required-headers)
  543.            (insert "Distribution: \n")))
  544.       (or (mail-fetch-field "lines")
  545.       (and (memq 'Lines gnus-required-headers)
  546.            (insert "Lines: " (gnus-inews-lines) "\n")))
  547.       )))
  548.  
  549.  
  550. ;; Utility functions.
  551.  
  552. (defun gnus-inews-insert-signature ()
  553.   "Insert signature file in current article buffer.
  554. If there is a file named .signature-DISTRIBUTION, it is used instead
  555. of usual .signature when the distribution of the article is
  556. DISTRIBUTION.  Set the variable to nil to prevent appending the
  557. signature file automatically.
  558. Signature file is specified by the variable gnus-signature-file."
  559.   (save-excursion
  560.     (save-restriction
  561.       ;; Change signature file by distribution.
  562.       ;; Suggested by hyoko@flab.fujitsu.co.jp.
  563.       (let ((signature
  564.          (if gnus-signature-file
  565.          (expand-file-name gnus-signature-file nil)))
  566.         (distribution nil))
  567.     (goto-char (point-min))
  568.     (search-forward "\n\n")
  569.     (narrow-to-region (point-min) (point))
  570.     (setq distribution (mail-fetch-field "distribution"))
  571.     (widen)
  572.     (if signature
  573.         (progn
  574.           (if (file-exists-p (concat signature "-" distribution))
  575.           (setq signature (concat signature "-" distribution)))
  576.           ;; Insert signature.
  577.           (if (file-exists-p signature)
  578.           (progn
  579.             (goto-char (point-max))
  580.             (insert "--\n")
  581.             (insert-file-contents signature)))
  582.           ))))))
  583.  
  584. (defun gnus-inews-do-fcc ()
  585.   "Process FCC: fields in current article buffer.
  586. Unless the first character of the field is `|', the article is saved
  587. to the specified file using the function specified by the variable
  588. gnus-author-copy-saver.  The default function rmail-output saves in
  589. Unix mailbox format.
  590. If the first character is `|', the contents of the article is send to
  591. a program specified by the rest of the value."
  592.   (let ((fcc-list nil)
  593.     (fcc-file nil)
  594.     (case-fold-search t))        ;Should ignore case.
  595.     (save-excursion
  596.       (save-restriction
  597.     (goto-char (point-min))
  598.     (search-forward "\n\n")
  599.     (narrow-to-region (point-min) (point))
  600.     (goto-char (point-min))
  601.     (while (re-search-forward "^FCC:[ \t]*" nil t)
  602.       (setq fcc-list
  603.         (cons (buffer-substring
  604.                (point)
  605.                (progn
  606.              (end-of-line)
  607.              (skip-chars-backward " \t")
  608.              (point)))
  609.               fcc-list))
  610.       (delete-region (match-beginning 0)
  611.              (progn (forward-line 1) (point))))
  612.     ;; Process FCC operations.
  613.     (widen)
  614.     (while fcc-list
  615.       (setq fcc-file (car fcc-list))
  616.       (setq fcc-list (cdr fcc-list))
  617.       (cond ((string-match "^[ \t]*|[ \t]*\\(.*\\)[ \t]*$" fcc-file)
  618.          (let ((program (substring fcc-file
  619.                        (match-beginning 1) (match-end 1))))
  620.            ;; Suggested by yuki@flab.fujitsu.junet.
  621.            ;; Send article to named program.
  622.            (call-process-region (point-min) (point-max) shell-file-name
  623.                     nil nil nil "-c" program)
  624.            ))
  625.         (t
  626.          ;; Suggested by hyoko@flab.fujitsu.junet.
  627.          ;; Save article in Unix mail format by default.
  628.          (if (and gnus-author-copy-saver
  629.               (not (eq gnus-author-copy-saver 'rmail-output)))
  630.              (funcall gnus-author-copy-saver fcc-file)
  631.            (if (and (file-readable-p fcc-file) (rmail-file-p fcc-file))
  632.                (gnus-output-to-rmail fcc-file)
  633.              (rmail-output fcc-file 1 t t)))
  634.          ))
  635.       )
  636.     ))
  637.     ))
  638.  
  639. (defun gnus-inews-path ()
  640.   "Return uucp path."
  641.   (let ((login-name (gnus-inews-login-name)))
  642.     (cond ((null gnus-use-generic-path)
  643.        (concat gnus-nntp-server "!" login-name))
  644.       ((stringp gnus-use-generic-path)
  645.        ;; Support GENERICPATH.  Suggested by vixie@decwrl.dec.com.
  646.        (concat gnus-use-generic-path "!" login-name))
  647.       (t login-name))
  648.     ))
  649.  
  650. (defun gnus-inews-user-name ()
  651.   "Return user's network address as `NAME@DOMAIN (FULLNAME)'."
  652.   (let ((full-name (gnus-inews-full-name)))
  653.     (concat (if (or gnus-user-login-name gnus-use-generic-from
  654.             gnus-local-domain (getenv "DOMAINNAME"))
  655.         (concat (gnus-inews-login-name) "@"
  656.             (gnus-inews-domain-name gnus-use-generic-from))
  657.           user-mail-address)
  658.         ;; User's full name.
  659.         (cond ((string-equal full-name "") "")
  660.           ((string-equal full-name "&")    ;Unix hack.
  661.            (concat " (" login-name ")"))
  662.           (t
  663.            (concat " (" full-name ")")))
  664.         )))
  665.  
  666. (defun gnus-inews-login-name ()
  667.   "Return user login name.
  668. Got from the variable `gnus-user-login-name' and the function
  669. `user-login-name'."
  670.   (or gnus-user-login-name (user-login-name)))
  671.  
  672. (defun gnus-inews-full-name ()
  673.   "Return user full name.
  674. Got from the variable `gnus-user-full-name', the environment variable
  675. NAME, and the function `user-full-name'."
  676.   (or gnus-user-full-name
  677.       (getenv "NAME") (user-full-name)))
  678.  
  679. (defun gnus-inews-domain-name (&optional genericfrom)
  680.   "Return user's domain name.
  681. If optional argument GENERICFROM is a string, use it as the domain
  682. name; if it is non-nil, strip of local host name from the domain name.
  683. If the function `system-name' returns full internet name and the
  684. domain is undefined, the domain name is got from it."
  685.   (and (null gnus-local-domain)
  686.        (boundp 'gnus-your-domain)
  687.        (setq gnus-local-domain gnus-your-domain))
  688.   (if (or genericfrom gnus-local-domain (getenv "DOMAINNAME"))
  689.       (let ((domain (or (if (stringp genericfrom) genericfrom)
  690.             (getenv "DOMAINNAME")
  691.             gnus-local-domain
  692.             ;; Function `system-name' may return full internet name.
  693.             ;; Suggested by Mike DeCorte <mrd@sun.soe.clarkson.edu>.
  694.             (if (string-match "\\." (system-name))
  695.                 (substring (system-name) (match-end 0)))
  696.             (read-string "Domain name (no host): ")))
  697.         (host (or (if (string-match "\\." (system-name))
  698.               (substring (system-name) 0 (match-beginning 0)))
  699.               (system-name))))
  700.     (if (string-equal "." (substring domain 0 1))
  701.         (setq domain (substring domain 1)))
  702.     ;; Support GENERICFROM as same as standard Bnews system.
  703.     ;; Suggested by ohm@kaba.junet and vixie@decwrl.dec.com.
  704.     (cond ((null genericfrom)
  705.            (concat host "." domain))
  706.           ;;((stringp genericfrom) genericfrom)
  707.           (t domain)))
  708.     (substring user-mail-address (1+ (string-match "@" user-mail-address)))))
  709.  
  710. (defun gnus-inews-message-id ()
  711.   "Generate unique Message-ID for user."
  712.   ;; Message-ID should not contain a slash and should be terminated by
  713.   ;; a number.  I don't know the reason why it is so.
  714.   (concat "<" (gnus-inews-unique-id) "@" (gnus-inews-domain-name) ">"))
  715.  
  716. (defun gnus-inews-unique-id ()
  717.   "Generate unique ID from user name and current time."
  718.   (let ((date (current-time-string))
  719.     (name (gnus-inews-login-name)))
  720.     (if (string-match "^[^ ]+ \\([^ ]+\\)[ ]+\\([0-9]+\\) \\([0-9]+\\):\\([0-9]+\\):\\([0-9]+\\) [0-9][0-9]\\([0-9][0-9]\\)"
  721.               date)
  722.     (concat (upcase name) "."
  723.         (substring date (match-beginning 6) (match-end 6)) ;Year
  724.         (substring date (match-beginning 1) (match-end 1)) ;Month
  725.         (substring date (match-beginning 2) (match-end 2)) ;Day
  726.         (substring date (match-beginning 3) (match-end 3)) ;Hour
  727.         (substring date (match-beginning 4) (match-end 4)) ;Minute
  728.         (substring date (match-beginning 5) (match-end 5)) ;Second
  729.         )
  730.       (error "Cannot understand current-time-string: %s." date))
  731.     ))
  732.  
  733. (defun gnus-current-time-zone (time)
  734.   "The local time zone in effect at TIME, or nil if not known."
  735.   (let ((z (and (fboundp 'current-time-zone) (current-time-zone time))))
  736.     (if (and z (car z)) z gnus-local-timezone)))
  737.  
  738. (defun gnus-inews-date ()
  739.   "Date string of today.
  740. If `current-time-zone' works, or if `gnus-local-timezone' is set correctly,
  741. this yields a date that conforms to RFC 822.  Otherwise a buggy date will
  742. be generated; this might work with some older news servers."
  743.   (let* ((now (and (fboundp 'current-time) (current-time)))
  744.      (zone (gnus-current-time-zone now)))
  745.     (if zone
  746.     (gnus-inews-valid-date now zone)
  747.       ;; No timezone info.
  748.       (gnus-inews-buggy-date now))))
  749.  
  750. (defun gnus-inews-valid-date (&optional time zone)
  751.   "A date string that represents TIME and conforms to the Usenet standard.
  752. TIME is optional and defaults to the current time.
  753. Some older versions of Emacs always act as if TIME is nil.
  754. The optional argument ZONE specifies the local time zone (default GMT)."
  755.   (timezone-make-date-arpa-standard
  756.    (if (fboundp 'current-time)
  757.        (current-time-string time)
  758.      (current-time-string))
  759.    zone "GMT"))
  760.  
  761. (defun gnus-inews-buggy-date (&optional time)
  762.   "A buggy date string that represents TIME.
  763. TIME is optional and defaults to the current time.
  764. Some older versions of Emacs always act as if TIME is nil."
  765.   (let ((date (if (fboundp 'current-time)
  766.           (current-time-string time)
  767.         (current-time-string))))
  768.     (if (string-match "^[^ ]+ \\([^ ]+\\)[ ]+\\([0-9]+\\) \\([0-9:]+\\) [0-9][0-9]\\([0-9][0-9]\\)"
  769.               date)
  770.     (concat (substring date (match-beginning 2) (match-end 2)) ;Day
  771.         " "
  772.         (substring date (match-beginning 1) (match-end 1)) ;Month
  773.         " "
  774.         (substring date (match-beginning 4) (match-end 4)) ;Year
  775.         " "
  776.         (substring date (match-beginning 3) (match-end 3))) ;Time
  777.       (error "Cannot understand current-time-string: %s." date))
  778.     ))
  779.  
  780. (defun gnus-inews-organization ()
  781.   "Return user's organization.
  782. The ORGANIZATION environment variable is used if defined.
  783. If not, the variable gnus-local-organization is used instead.
  784. If the value begins with a slash, it is taken as the name of a file
  785. containing the organization."
  786.   ;; The organization must be got in this order since the ORGANIZATION
  787.   ;; environment variable is intended for user specific while
  788.   ;; gnus-local-organization is for machine or organization specific.
  789.  
  790.   ;; Note: compatibility hack.  This will be removed in the next version.
  791.   (and (null gnus-local-organization)
  792.        (boundp 'gnus-your-organization)
  793.        (setq gnus-local-organization gnus-your-organization))
  794.   ;; End of compatibility hack.
  795.   (let* ((private-file (expand-file-name "~/.organization" nil))
  796.      (organization (or (getenv "ORGANIZATION")
  797.                gnus-local-organization
  798.                private-file)))
  799.     (and (stringp organization)
  800.      (> (length organization) 0)
  801.      (string-equal (substring organization 0 1) "/")
  802.      ;; Get it from the user and system file.
  803.      ;; Suggested by roland@wheaties.ai.mit.edu (Roland McGrath).
  804.      (let ((dist (mail-fetch-field "distribution")))
  805.        (setq organization
  806.          (cond ((file-exists-p (concat organization "-" dist))
  807.             (concat organization "-" dist))
  808.                ((file-exists-p organization) organization)
  809.                ((file-exists-p gnus-organization-file)
  810.             gnus-organization-file)
  811.                (t organization)))
  812.        ))
  813.     (cond ((not (stringp organization)) nil)
  814.       ((and (string-equal (substring organization 0 1) "/")
  815.         (file-exists-p organization))
  816.        ;; If the first character is `/', assume it is the name of
  817.        ;; a file containing the organization.
  818.        (save-excursion
  819.          (let ((tmpbuf (get-buffer-create " *GNUS organization*")))
  820.            (set-buffer tmpbuf)
  821.            (erase-buffer)
  822.            (insert-file-contents organization)
  823.            (prog1 (buffer-string)
  824.          (kill-buffer tmpbuf))
  825.            )))
  826.       ((string-equal organization private-file) nil) ;No such file
  827.       (t organization))
  828.     ))
  829.  
  830. (defun gnus-inews-lines ()
  831.   "Count the number of lines and return numeric string."
  832.   (save-excursion
  833.     (save-restriction
  834.       (widen)
  835.       (goto-char (point-min))
  836.       (search-forward "\n\n" nil 'move)
  837.       (int-to-string (count-lines (point) (point-max))))))
  838.  
  839. (provide 'gnuspost)
  840.  
  841. ;;; gnuspost.el ends here
  842.