1997-04-16 22:13:18 +00:00
|
|
|
|
;;; nnbabyl.el --- rmail mbox access for Gnus
|
2000-09-19 13:37:09 +00:00
|
|
|
|
|
2020-01-01 00:19:43 +00:00
|
|
|
|
;; Copyright (C) 1995-2020 Free Software Foundation, Inc.
|
1997-04-16 22:13:18 +00:00
|
|
|
|
|
1999-02-20 14:05:57 +00:00
|
|
|
|
;; Author: Lars Magne Ingebrigtsen <larsi@gnus.org>
|
2004-09-04 13:13:48 +00:00
|
|
|
|
;; Masanobu UMEDA <umerin@flab.flab.fujitsu.junet>
|
1997-04-16 22:13:18 +00:00
|
|
|
|
;; Keywords: news, mail
|
|
|
|
|
|
|
|
|
|
;; This file is part of GNU Emacs.
|
|
|
|
|
|
2008-05-06 03:56:49 +00:00
|
|
|
|
;; GNU Emacs is free software: you can redistribute it and/or modify
|
1997-04-16 22:13:18 +00:00
|
|
|
|
;; it under the terms of the GNU General Public License as published by
|
2008-05-06 03:56:49 +00:00
|
|
|
|
;; the Free Software Foundation, either version 3 of the License, or
|
|
|
|
|
;; (at your option) any later version.
|
1997-04-16 22:13:18 +00:00
|
|
|
|
|
|
|
|
|
;; GNU Emacs is distributed in the hope that it will be useful,
|
|
|
|
|
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
;; GNU General Public License for more details.
|
|
|
|
|
|
|
|
|
|
;; You should have received a copy of the GNU General Public License
|
2017-09-13 22:52:52 +00:00
|
|
|
|
;; along with GNU Emacs. If not, see <https://www.gnu.org/licenses/>.
|
1997-04-16 22:13:18 +00:00
|
|
|
|
|
|
|
|
|
;;; Commentary:
|
|
|
|
|
|
|
|
|
|
;; For an overview of what the interface functions do, please see the
|
|
|
|
|
;; Gnus sources.
|
|
|
|
|
|
|
|
|
|
;;; Code:
|
|
|
|
|
|
|
|
|
|
(require 'nnheader)
|
2019-10-19 08:57:33 +00:00
|
|
|
|
(require 'rmail)
|
1997-04-16 22:13:18 +00:00
|
|
|
|
(require 'nnmail)
|
|
|
|
|
(require 'nnoo)
|
gnus: replace cl with cl-lib
* lisp/gnus/gnus-agent.el, lisp/gnus/gnus-art.el:
* lisp/gnus/gnus-async.el, lisp/gnus/gnus-cache.el:
* lisp/gnus/gnus-demon.el, lisp/gnus/gnus-group.el:
* lisp/gnus/gnus-icalendar.el, lisp/gnus/gnus-logic.el:
* lisp/gnus/gnus-msg.el, lisp/gnus/gnus-picon.el:
* lisp/gnus/gnus-registry.el, lisp/gnus/gnus-salt.el:
* lisp/gnus/gnus-score.el, lisp/gnus/gnus-spec.el:
* lisp/gnus/gnus-srvr.el, lisp/gnus/gnus-start.el:
* lisp/gnus/gnus-sum.el, lisp/gnus/gnus-topic.el:
* lisp/gnus/gnus-util.el, lisp/gnus/gnus-uu.el, lisp/gnus/gnus-win.el:
* lisp/gnus/mail-source.el, lisp/gnus/mm-decode.el:
* lisp/gnus/mm-encode.el, lisp/gnus/mm-url.el, lisp/gnus/mm-view.el:
* lisp/gnus/mml-smime.el, lisp/gnus/mml.el, lisp/gnus/mml2015.el:
* lisp/gnus/nnbabyl.el, lisp/gnus/nndoc.el, lisp/gnus/nneething.el:
* lisp/gnus/nnheader.el, lisp/gnus/nnimap.el, lisp/gnus/nnmail.el:
* lisp/gnus/nnmaildir.el, lisp/gnus/nnoo.el, lisp/gnus/nnrss.el:
* lisp/gnus/nnspool.el, lisp/gnus/nntp.el, lisp/gnus/nnvirtual.el:
* lisp/gnus/nnweb.el, lisp/gnus/spam.el: Replace cl with cl-lib.
* lisp/gnus/canlock.el, lisp/gnus/gnus-bcklg.el:
* lisp/gnus/gnus-cite.el, lisp/gnus/gnus-cloud.el:
* lisp/gnus/gnus-draft.el, lisp/gnus/gnus-dup.el:
* lisp/gnus/gnus-fun.el, lisp/gnus/gnus-html.el:
* lisp/gnus/gnus-int.el, lisp/gnus/gnus-kill.el, lisp/gnus/gnus-ml.el:
* lisp/gnus/gnus-mlspl.el, lisp/gnus/gnus-range.el:
* lisp/gnus/gnus-undo.el, lisp/gnus/gnus-vm.el:
* lisp/gnus/mm-partial.el, lisp/gnus/mm-uu.el, lisp/gnus/mml1991.el:
* lisp/gnus/nnagent.el, lisp/gnus/nndiary.el, lisp/gnus/nndir.el:
* lisp/gnus/nndraft.el, lisp/gnus/nnfolder.el, lisp/gnus/nngateway.el:
* lisp/gnus/nnmairix.el, lisp/gnus/nnmbox.el, lisp/gnus/nnmh.el:
* lisp/gnus/nnml.el, lisp/gnus/score-mode.el, lisp/gnus/smiley.el:
No need for cl.
2018-03-23 20:13:09 +00:00
|
|
|
|
(eval-when-compile (require 'cl-lib))
|
1997-04-16 22:13:18 +00:00
|
|
|
|
|
|
|
|
|
(nnoo-declare nnbabyl)
|
|
|
|
|
|
|
|
|
|
(defvoo nnbabyl-mbox-file (expand-file-name "~/RMAIL")
|
|
|
|
|
"The name of the rmail box file in the users home directory.")
|
|
|
|
|
|
|
|
|
|
(defvoo nnbabyl-active-file (expand-file-name "~/.rmail-active")
|
|
|
|
|
"The name of the active file for the rmail box.")
|
|
|
|
|
|
|
|
|
|
(defvoo nnbabyl-get-new-mail t
|
|
|
|
|
"If non-nil, nnbabyl will check the incoming mail file and split the mail.")
|
|
|
|
|
|
2004-09-04 13:13:48 +00:00
|
|
|
|
|
1997-04-16 22:13:18 +00:00
|
|
|
|
(defvoo nnbabyl-prepare-save-mail-hook nil
|
|
|
|
|
"Hook run narrowed to an article before saving.")
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
(defvar nnbabyl-mail-delimiter "\^_")
|
|
|
|
|
|
|
|
|
|
(defconst nnbabyl-version "nnbabyl 1.0"
|
|
|
|
|
"nnbabyl version.")
|
|
|
|
|
|
|
|
|
|
(defvoo nnbabyl-mbox-buffer nil)
|
|
|
|
|
(defvoo nnbabyl-current-group nil)
|
|
|
|
|
(defvoo nnbabyl-status-string "")
|
|
|
|
|
(defvoo nnbabyl-group-alist nil)
|
|
|
|
|
(defvoo nnbabyl-active-timestamp nil)
|
|
|
|
|
|
|
|
|
|
(defvoo nnbabyl-previous-buffer-mode nil)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
;;; Interface functions
|
|
|
|
|
|
|
|
|
|
(nnoo-define-basics nnbabyl)
|
|
|
|
|
|
|
|
|
|
(deffoo nnbabyl-retrieve-headers (articles &optional group server fetch-old)
|
2010-09-18 10:02:19 +00:00
|
|
|
|
(with-current-buffer nntp-server-buffer
|
1997-04-16 22:13:18 +00:00
|
|
|
|
(erase-buffer)
|
|
|
|
|
(let ((number (length articles))
|
|
|
|
|
(count 0)
|
|
|
|
|
(delim (concat "^" nnbabyl-mail-delimiter))
|
|
|
|
|
article art-string start stop)
|
|
|
|
|
(nnbabyl-possibly-change-newsgroup group server)
|
|
|
|
|
(while (setq article (pop articles))
|
|
|
|
|
(setq art-string (nnbabyl-article-string article))
|
|
|
|
|
(set-buffer nnbabyl-mbox-buffer)
|
|
|
|
|
(end-of-line)
|
|
|
|
|
(when (or (search-forward art-string nil t)
|
|
|
|
|
(search-backward art-string nil t))
|
|
|
|
|
(unless (re-search-backward delim nil t)
|
|
|
|
|
(goto-char (point-min)))
|
|
|
|
|
(while (and (not (looking-at ".+:"))
|
|
|
|
|
(zerop (forward-line 1))))
|
|
|
|
|
(setq start (point))
|
|
|
|
|
(search-forward "\n\n" nil t)
|
|
|
|
|
(setq stop (1- (point)))
|
|
|
|
|
(set-buffer nntp-server-buffer)
|
|
|
|
|
(insert "221 ")
|
|
|
|
|
(princ article (current-buffer))
|
|
|
|
|
(insert " Article retrieved.\n")
|
|
|
|
|
(insert-buffer-substring nnbabyl-mbox-buffer start stop)
|
|
|
|
|
(goto-char (point-max))
|
|
|
|
|
(insert ".\n"))
|
|
|
|
|
(and (numberp nnmail-large-newsgroup)
|
|
|
|
|
(> number nnmail-large-newsgroup)
|
gnus: replace cl with cl-lib
* lisp/gnus/gnus-agent.el, lisp/gnus/gnus-art.el:
* lisp/gnus/gnus-async.el, lisp/gnus/gnus-cache.el:
* lisp/gnus/gnus-demon.el, lisp/gnus/gnus-group.el:
* lisp/gnus/gnus-icalendar.el, lisp/gnus/gnus-logic.el:
* lisp/gnus/gnus-msg.el, lisp/gnus/gnus-picon.el:
* lisp/gnus/gnus-registry.el, lisp/gnus/gnus-salt.el:
* lisp/gnus/gnus-score.el, lisp/gnus/gnus-spec.el:
* lisp/gnus/gnus-srvr.el, lisp/gnus/gnus-start.el:
* lisp/gnus/gnus-sum.el, lisp/gnus/gnus-topic.el:
* lisp/gnus/gnus-util.el, lisp/gnus/gnus-uu.el, lisp/gnus/gnus-win.el:
* lisp/gnus/mail-source.el, lisp/gnus/mm-decode.el:
* lisp/gnus/mm-encode.el, lisp/gnus/mm-url.el, lisp/gnus/mm-view.el:
* lisp/gnus/mml-smime.el, lisp/gnus/mml.el, lisp/gnus/mml2015.el:
* lisp/gnus/nnbabyl.el, lisp/gnus/nndoc.el, lisp/gnus/nneething.el:
* lisp/gnus/nnheader.el, lisp/gnus/nnimap.el, lisp/gnus/nnmail.el:
* lisp/gnus/nnmaildir.el, lisp/gnus/nnoo.el, lisp/gnus/nnrss.el:
* lisp/gnus/nnspool.el, lisp/gnus/nntp.el, lisp/gnus/nnvirtual.el:
* lisp/gnus/nnweb.el, lisp/gnus/spam.el: Replace cl with cl-lib.
* lisp/gnus/canlock.el, lisp/gnus/gnus-bcklg.el:
* lisp/gnus/gnus-cite.el, lisp/gnus/gnus-cloud.el:
* lisp/gnus/gnus-draft.el, lisp/gnus/gnus-dup.el:
* lisp/gnus/gnus-fun.el, lisp/gnus/gnus-html.el:
* lisp/gnus/gnus-int.el, lisp/gnus/gnus-kill.el, lisp/gnus/gnus-ml.el:
* lisp/gnus/gnus-mlspl.el, lisp/gnus/gnus-range.el:
* lisp/gnus/gnus-undo.el, lisp/gnus/gnus-vm.el:
* lisp/gnus/mm-partial.el, lisp/gnus/mm-uu.el, lisp/gnus/mml1991.el:
* lisp/gnus/nnagent.el, lisp/gnus/nndiary.el, lisp/gnus/nndir.el:
* lisp/gnus/nndraft.el, lisp/gnus/nnfolder.el, lisp/gnus/nngateway.el:
* lisp/gnus/nnmairix.el, lisp/gnus/nnmbox.el, lisp/gnus/nnmh.el:
* lisp/gnus/nnml.el, lisp/gnus/score-mode.el, lisp/gnus/smiley.el:
No need for cl.
2018-03-23 20:13:09 +00:00
|
|
|
|
(zerop (% (cl-incf count) 20))
|
1997-04-16 22:13:18 +00:00
|
|
|
|
(nnheader-message 5 "nnbabyl: Receiving headers... %d%%"
|
2015-07-31 17:12:37 +00:00
|
|
|
|
(floor (* count 100.0) number))))
|
1997-04-16 22:13:18 +00:00
|
|
|
|
|
|
|
|
|
(and (numberp nnmail-large-newsgroup)
|
|
|
|
|
(> number nnmail-large-newsgroup)
|
|
|
|
|
(nnheader-message 5 "nnbabyl: Receiving headers...done"))
|
|
|
|
|
|
|
|
|
|
(set-buffer nntp-server-buffer)
|
|
|
|
|
(nnheader-fold-continuation-lines)
|
|
|
|
|
'headers)))
|
|
|
|
|
|
|
|
|
|
(deffoo nnbabyl-open-server (server &optional defs)
|
|
|
|
|
(nnoo-change-server 'nnbabyl server defs)
|
|
|
|
|
(nnbabyl-create-mbox)
|
|
|
|
|
(cond
|
|
|
|
|
((not (file-exists-p nnbabyl-mbox-file))
|
|
|
|
|
(nnbabyl-close-server)
|
|
|
|
|
(nnheader-report 'nnbabyl "No such file: %s" nnbabyl-mbox-file))
|
|
|
|
|
((file-directory-p nnbabyl-mbox-file)
|
|
|
|
|
(nnbabyl-close-server)
|
|
|
|
|
(nnheader-report 'nnbabyl "Not a regular file: %s" nnbabyl-mbox-file))
|
|
|
|
|
(t
|
|
|
|
|
(nnheader-report 'nnbabyl "Opened server %s using mbox %s" server
|
|
|
|
|
nnbabyl-mbox-file)
|
|
|
|
|
t)))
|
|
|
|
|
|
2019-09-27 00:17:14 +00:00
|
|
|
|
(deffoo nnbabyl-close-server (&optional server _defs)
|
1997-04-16 22:13:18 +00:00
|
|
|
|
;; Restore buffer mode.
|
|
|
|
|
(when (and (nnbabyl-server-opened)
|
|
|
|
|
nnbabyl-previous-buffer-mode)
|
2010-09-18 10:02:19 +00:00
|
|
|
|
(with-current-buffer nnbabyl-mbox-buffer
|
1997-04-16 22:13:18 +00:00
|
|
|
|
(narrow-to-region
|
|
|
|
|
(caar nnbabyl-previous-buffer-mode)
|
|
|
|
|
(cdar nnbabyl-previous-buffer-mode))
|
|
|
|
|
(funcall (cdr nnbabyl-previous-buffer-mode))))
|
|
|
|
|
(nnoo-close-server 'nnbabyl server)
|
|
|
|
|
(setq nnbabyl-mbox-buffer nil)
|
|
|
|
|
t)
|
|
|
|
|
|
|
|
|
|
(deffoo nnbabyl-server-opened (&optional server)
|
|
|
|
|
(and (nnoo-current-server-p 'nnbabyl server)
|
Simplify Gnus buffer liveness checking and killing
* lisp/gnus/gnus-agent.el (gnus-agent-synchronize-group-flags):
Fix indentation.
* lisp/gnus/gnus-util.el (gnus-buffer-exists-p): Define as obsolete
alias of gnus-buffer-live-p.
(gnus-buffer-live-p): If the given argument is or names a live
buffer, return the corresponding buffer object instead of a boolean.
* lisp/gnus/gnus-win.el (gnus-delete-windows-in-gnusey-frames)
(gnus-remove-some-windows): Simplify.
* lisp/gnus/gnus.el (gnus-prune-buffers): Redefine as alias of
gnus-buffers.
(gnus-kill-buffer, gnus-buffers, gnus-group-find-parameter):
* lisp/gnus/gnus-art.el (gnus-kill-sticky-article-buffers)
(gnus-request-article-this-buffer):
* lisp/gnus/gnus-bcklg.el (gnus-backlog-shutdown):
* lisp/gnus/gnus-cus.el (gnus-group-customize)
(gnus-agent-customize-category):
* lisp/gnus/gnus-draft.el (gnus-draft-edit-message):
* lisp/gnus/gnus-group.el (gnus-group-set-mode-line)
(gnus--abort-on-unsaved-message-buffers, gnus-group-compact-group):
* lisp/gnus/gnus-msg.el (gnus-inews-add-send-actions)
(gnus-summary-supersede-article, gnus-copy-article-buffer):
* lisp/gnus/gnus-score.el (gnus-score-edit-current-scores)
(gnus-score-edit-file):
* lisp/gnus/gnus-spec.el (gnus-update-format-specifications):
* lisp/gnus/gnus-srvr.el (gnus-server-compact-server):
* lisp/gnus/gnus-start.el (gnus-clear-system, gnus-dribble-enter)
(gnus-dribble-save, gnus-dribble-clear, gnus-save-newsrc-file):
* lisp/gnus/gnus-sum.el (gnus-summary-setup-buffer)
(gnus-update-summary-mark-positions, gnus-summary-exit)
(gnus-deaden-summary, gnus-kill-or-deaden-summary)
(gnus-summary-next-group):
* lisp/gnus/gnus-win.el (gnus-configure-frame):
* lisp/gnus/mail-source.el (mail-source-movemail):
* lisp/gnus/message.el (message-with-reply-buffer)
(message-with-reply, message-send-and-exit)
(message-send-mail-with-sendmail, message-pop-to-buffer)
(message-do-send-housekeeping, message-forward-make-body-plain)
(message-forward-make-body-mml):
* lisp/gnus/mm-decode.el (mm-display-external, mm-remove-part):
* lisp/gnus/nnbabyl.el (nnbabyl-server-opened)
(nnbabyl-possibly-change-newsgroup, nnbabyl-read-mbox)
(nnbabyl-check-mbox):
* lisp/gnus/nndiary.el (nndiary-save-nov):
* lisp/gnus/nndoc.el (nndoc-close-group)
(nndoc-possibly-change-buffer):
* lisp/gnus/nnfolder.el (nnfolder-close-group, nnfolder-save-nov):
* lisp/gnus/nnimap.el (nnimap-make-process-buffer, nnimap-keepalive)
(nnimap-find-connection):
* lisp/gnus/nnmail.el (nnmail-cache-open, nnmail-cache-close):
* lisp/gnus/nnmbox.el (nnmbox-close-server, nnmbox-server-opened)
(nnmbox-possibly-change-newsgroup, nnmbox-read-mbox):
* lisp/gnus/nnml.el (nnml-save-incremental-nov, nnml-open-nov)
(nnml-save-nov):
* lisp/gnus/nnoo.el (nnoo-server-opened):
* lisp/gnus/nntp.el (nntp-kill-buffer, nntp-make-process-buffer)
(nntp-open-connection, nntp-async-trigger):
* lisp/net/mairix.el (mairix-gnus-fetch-field): Simplify buffer
liveness checking and killing, replacing buffer-name with
buffer-live-p and gnus-buffer-exists-p with gnus-buffer-live-p or
equivalent where applicable.
2019-05-05 00:28:57 +00:00
|
|
|
|
(buffer-live-p nnbabyl-mbox-buffer)
|
|
|
|
|
(buffer-live-p nntp-server-buffer)))
|
1997-04-16 22:13:18 +00:00
|
|
|
|
|
|
|
|
|
(deffoo nnbabyl-request-article (article &optional newsgroup server buffer)
|
|
|
|
|
(nnbabyl-possibly-change-newsgroup newsgroup server)
|
2010-09-18 10:02:19 +00:00
|
|
|
|
(with-current-buffer nnbabyl-mbox-buffer
|
1997-04-16 22:13:18 +00:00
|
|
|
|
(goto-char (point-min))
|
|
|
|
|
(when (search-forward (nnbabyl-article-string article) nil t)
|
|
|
|
|
(let (start stop summary-line)
|
|
|
|
|
(unless (re-search-backward (concat "^" nnbabyl-mail-delimiter) nil t)
|
|
|
|
|
(goto-char (point-min))
|
|
|
|
|
(end-of-line))
|
|
|
|
|
(while (and (not (looking-at ".+:"))
|
|
|
|
|
(zerop (forward-line 1))))
|
|
|
|
|
(setq start (point))
|
|
|
|
|
(or (when (re-search-forward
|
|
|
|
|
(concat "^" nnbabyl-mail-delimiter) nil t)
|
|
|
|
|
(beginning-of-line)
|
|
|
|
|
t)
|
|
|
|
|
(goto-char (point-max)))
|
|
|
|
|
(setq stop (point))
|
|
|
|
|
(let ((nntp-server-buffer (or buffer nntp-server-buffer)))
|
|
|
|
|
(set-buffer nntp-server-buffer)
|
|
|
|
|
(erase-buffer)
|
|
|
|
|
(insert-buffer-substring nnbabyl-mbox-buffer start stop)
|
|
|
|
|
(goto-char (point-min))
|
|
|
|
|
;; If there is an EOOH header, then we have to remove some
|
|
|
|
|
;; duplicated headers.
|
|
|
|
|
(setq summary-line (looking-at "Summary-line:"))
|
|
|
|
|
(when (search-forward "\n*** EOOH ***" nil t)
|
|
|
|
|
(if summary-line
|
|
|
|
|
;; The headers to be deleted are located before the
|
|
|
|
|
;; EOOH line...
|
|
|
|
|
(delete-region (point-min) (progn (forward-line 1)
|
|
|
|
|
(point)))
|
|
|
|
|
;; ...or after.
|
|
|
|
|
(delete-region (progn (beginning-of-line) (point))
|
|
|
|
|
(or (search-forward "\n\n" nil t)
|
|
|
|
|
(point)))))
|
|
|
|
|
(if (numberp article)
|
|
|
|
|
(cons nnbabyl-current-group article)
|
|
|
|
|
(nnbabyl-article-group-number)))))))
|
|
|
|
|
|
2010-09-18 23:36:29 +00:00
|
|
|
|
(deffoo nnbabyl-request-group (group &optional server dont-check info)
|
1997-04-16 22:13:18 +00:00
|
|
|
|
(let ((active (cadr (assoc group nnbabyl-group-alist))))
|
|
|
|
|
(save-excursion
|
|
|
|
|
(cond
|
|
|
|
|
((or (null active)
|
|
|
|
|
(null (nnbabyl-possibly-change-newsgroup group server)))
|
|
|
|
|
(nnheader-report 'nnbabyl "No such group: %s" group))
|
|
|
|
|
(dont-check
|
|
|
|
|
(nnheader-report 'nnbabyl "Selected group %s" group)
|
|
|
|
|
(nnheader-insert ""))
|
|
|
|
|
(t
|
|
|
|
|
(nnheader-report 'nnbabyl "Selected group %s" group)
|
|
|
|
|
(nnheader-insert "211 %d %d %d %s\n"
|
|
|
|
|
(1+ (- (cdr active) (car active)))
|
|
|
|
|
(car active) (cdr active) group))))))
|
|
|
|
|
|
|
|
|
|
(deffoo nnbabyl-request-scan (&optional group server)
|
|
|
|
|
(nnbabyl-possibly-change-newsgroup group server)
|
|
|
|
|
(nnbabyl-read-mbox)
|
|
|
|
|
(nnmail-get-new-mail
|
|
|
|
|
'nnbabyl
|
|
|
|
|
(lambda ()
|
2010-09-18 10:02:19 +00:00
|
|
|
|
(with-current-buffer nnbabyl-mbox-buffer
|
1997-04-16 22:13:18 +00:00
|
|
|
|
(save-buffer)))
|
|
|
|
|
(file-name-directory nnbabyl-mbox-file)
|
|
|
|
|
group
|
|
|
|
|
(lambda ()
|
|
|
|
|
(save-excursion
|
|
|
|
|
(let ((in-buf (current-buffer)))
|
|
|
|
|
(goto-char (point-min))
|
|
|
|
|
(while (search-forward "\n\^_\n" nil t)
|
|
|
|
|
(delete-char -1))
|
|
|
|
|
(set-buffer nnbabyl-mbox-buffer)
|
|
|
|
|
(goto-char (point-max))
|
|
|
|
|
(search-backward "\n\^_" nil t)
|
|
|
|
|
(goto-char (match-end 0))
|
|
|
|
|
(insert-buffer-substring in-buf)))
|
|
|
|
|
(nnmail-save-active nnbabyl-group-alist nnbabyl-active-file))))
|
|
|
|
|
|
|
|
|
|
(deffoo nnbabyl-close-group (group &optional server)
|
|
|
|
|
t)
|
|
|
|
|
|
|
|
|
|
(deffoo nnbabyl-request-create-group (group &optional server args)
|
|
|
|
|
(nnmail-activate 'nnbabyl)
|
|
|
|
|
(unless (assoc group nnbabyl-group-alist)
|
|
|
|
|
(push (list group (cons 1 0))
|
1999-02-20 14:05:57 +00:00
|
|
|
|
nnbabyl-group-alist)
|
1997-04-16 22:13:18 +00:00
|
|
|
|
(nnmail-save-active nnbabyl-group-alist nnbabyl-active-file))
|
|
|
|
|
t)
|
|
|
|
|
|
|
|
|
|
(deffoo nnbabyl-request-list (&optional server)
|
|
|
|
|
(save-excursion
|
|
|
|
|
(nnmail-find-file nnbabyl-active-file)
|
|
|
|
|
(setq nnbabyl-group-alist (nnmail-get-active))
|
|
|
|
|
t))
|
|
|
|
|
|
|
|
|
|
(deffoo nnbabyl-request-newgroups (date &optional server)
|
|
|
|
|
(nnbabyl-request-list server))
|
|
|
|
|
|
|
|
|
|
(deffoo nnbabyl-request-list-newsgroups (&optional server)
|
|
|
|
|
(nnheader-report 'nnbabyl "nnbabyl: LIST NEWSGROUPS is not implemented."))
|
|
|
|
|
|
|
|
|
|
(deffoo nnbabyl-request-expire-articles
|
2000-09-19 13:37:09 +00:00
|
|
|
|
(articles newsgroup &optional server force)
|
1997-04-16 22:13:18 +00:00
|
|
|
|
(nnbabyl-possibly-change-newsgroup newsgroup server)
|
|
|
|
|
(let* ((is-old t)
|
|
|
|
|
rest)
|
|
|
|
|
(nnmail-activate 'nnbabyl)
|
|
|
|
|
|
2010-09-18 10:02:19 +00:00
|
|
|
|
(with-current-buffer nnbabyl-mbox-buffer
|
2007-10-28 09:18:39 +00:00
|
|
|
|
(set-text-properties (point-min) (point-max) nil)
|
1997-04-16 22:13:18 +00:00
|
|
|
|
(while (and articles is-old)
|
|
|
|
|
(goto-char (point-min))
|
|
|
|
|
(when (search-forward (nnbabyl-article-string (car articles)) nil t)
|
|
|
|
|
(if (setq is-old
|
|
|
|
|
(nnmail-expired-article-p
|
|
|
|
|
newsgroup
|
|
|
|
|
(buffer-substring
|
|
|
|
|
(point) (progn (end-of-line) (point))) force))
|
|
|
|
|
(progn
|
2002-08-23 03:32:58 +00:00
|
|
|
|
(unless (eq nnmail-expiry-target 'delete)
|
|
|
|
|
(with-temp-buffer
|
2003-02-04 13:24:35 +00:00
|
|
|
|
(nnbabyl-request-article (car articles)
|
|
|
|
|
newsgroup server
|
2002-08-23 03:32:58 +00:00
|
|
|
|
(current-buffer))
|
|
|
|
|
(let ((nnml-current-directory nil))
|
|
|
|
|
(nnmail-expiry-target-group
|
2004-09-04 13:13:48 +00:00
|
|
|
|
nnmail-expiry-target newsgroup)))
|
|
|
|
|
(nnbabyl-possibly-change-newsgroup newsgroup server))
|
1997-04-16 22:13:18 +00:00
|
|
|
|
(nnheader-message 5 "Deleting article %d in %s..."
|
|
|
|
|
(car articles) newsgroup)
|
|
|
|
|
(nnbabyl-delete-mail))
|
|
|
|
|
(push (car articles) rest)))
|
|
|
|
|
(setq articles (cdr articles)))
|
|
|
|
|
(save-buffer)
|
|
|
|
|
;; Find the lowest active article in this group.
|
|
|
|
|
(let ((active (nth 1 (assoc newsgroup nnbabyl-group-alist))))
|
|
|
|
|
(goto-char (point-min))
|
|
|
|
|
(while (and (not (search-forward
|
|
|
|
|
(nnbabyl-article-string (car active)) nil t))
|
|
|
|
|
(<= (car active) (cdr active)))
|
|
|
|
|
(setcar active (1+ (car active)))
|
|
|
|
|
(goto-char (point-min))))
|
|
|
|
|
(nnmail-save-active nnbabyl-group-alist nnbabyl-active-file)
|
|
|
|
|
(nconc rest articles))))
|
|
|
|
|
|
|
|
|
|
(deffoo nnbabyl-request-move-article
|
2007-10-28 09:18:39 +00:00
|
|
|
|
(article group server accept-form &optional last move-is-internal)
|
1997-04-16 22:13:18 +00:00
|
|
|
|
(let ((buf (get-buffer-create " *nnbabyl move*"))
|
|
|
|
|
result)
|
|
|
|
|
(and
|
|
|
|
|
(nnbabyl-request-article article group server)
|
2010-09-18 10:02:19 +00:00
|
|
|
|
(with-current-buffer buf
|
1997-04-16 22:13:18 +00:00
|
|
|
|
(insert-buffer-substring nntp-server-buffer)
|
|
|
|
|
(goto-char (point-min))
|
|
|
|
|
(while (re-search-forward
|
|
|
|
|
"^X-Gnus-Newsgroup:"
|
|
|
|
|
(save-excursion (search-forward "\n\n" nil t) (point)) t)
|
Replace still more end-of-line etc with line-end-position, etc.
* lisp/gnus/nnbabyl.el (nnbabyl-request-move-article, nnbabyl-delete-mail)
(nnbabyl-check-mbox): Use point-at-bol.
* lisp/cedet/semantic/lex.el (semantic-lex-ignore-comments, semantic-flex):
* lisp/cedet/semantic/grammar.el (semantic-grammar-epilogue):
* lisp/cedet/ede/speedbar.el (ede-find-nearest-file-line):
* lisp/cedet/ede/pmake.el (ede-proj-makefile-insert-dist-rules):
* lisp/cedet/ede/autoconf-edit.el (autoconf-delete-parameter):
Use point-at-bol and point-at-eol.
* lisp/vc/emerge.el (emerge-line-number-in-buf):
* lisp/textmodes/ispell.el (ispell-region):
* lisp/textmodes/fill.el (current-fill-column):
* lisp/progmodes/xscheme.el (xscheme-send-current-line):
* lisp/progmodes/vhdl-mode.el (vhdl-current-line, vhdl-line-copy):
* lisp/progmodes/tcl.el (tcl-hairy-scan-for-comment):
* lisp/progmodes/sh-script.el (sh-handle-prev-do):
* lisp/progmodes/meta-mode.el (meta-indent-line):
* lisp/progmodes/idlwave.el (idlwave-goto-comment, idlwave-fill-paragraph)
(idlwave-in-quote):
* lisp/progmodes/idlw-shell.el (idlwave-shell-current-frame)
(idlwave-shell-update-bp-overlays, idlwave-shell-sources-filter):
* lisp/progmodes/fortran.el (fortran-looking-at-if-then):
* lisp/progmodes/etags.el (find-tag-in-order, etags-snarf-tag):
* lisp/progmodes/cperl-mode.el (cperl-sniff-for-indent)
(cperl-find-pods-heres):
* lisp/progmodes/ada-mode.el (ada-get-current-indent, ada-narrow-to-defun):
* lisp/net/quickurl.el (quickurl-list-insert):
* lisp/net/ldap.el (ldap-search-internal):
* lisp/net/eudc.el (eudc-expand-inline):
* lisp/mail/sendmail.el (sendmail-send-it):
* lisp/mail/mspools.el (mspools-visit-spool, mspools-get-spool-name):
* lisp/emulation/viper-cmd.el (viper-paren-match, viper-backward-indent)
(viper-brac-function):
* lisp/calc/calc-yank.el (calc-do-grab-region):
* lisp/calc/calc-keypd.el (calc-keypad-press):
* lisp/term.el (term-move-columns, term-insert-spaces):
* lisp/speedbar.el (speedbar-highlight-one-tag-line):
* lisp/simple.el (current-word):
* lisp/mouse-drag.el (mouse-drag-should-do-col-scrolling):
* lisp/info.el (Info-find-node-in-buffer-1, Info-follow-reference)
(Info-scroll-down):
* lisp/hippie-exp.el (he-line-beg):
* lisp/epa.el (epa--marked-keys):
* lisp/dired-aux.el (dired-kill-line, dired-do-kill-lines)
(dired-update-file-line, dired-add-entry, dired-remove-entry)
(dired-relist-entry):
* lisp/buff-menu.el (Buffer-menu-buffer):
* lisp/array.el (current-line):
* lisp/allout.el (allout-resolve-xref)
(allout-latex-verbatim-quote-curr-line):
Replace yet more uses of end-of-line etc with line-end-position.
2010-11-09 05:33:07 +00:00
|
|
|
|
(delete-region (point-at-bol) (progn (forward-line 1) (point))))
|
1997-04-16 22:13:18 +00:00
|
|
|
|
(setq result (eval accept-form))
|
|
|
|
|
(kill-buffer (current-buffer))
|
|
|
|
|
result)
|
|
|
|
|
(save-excursion
|
|
|
|
|
(nnbabyl-possibly-change-newsgroup group server)
|
|
|
|
|
(set-buffer nnbabyl-mbox-buffer)
|
|
|
|
|
(goto-char (point-min))
|
|
|
|
|
(if (search-forward (nnbabyl-article-string article) nil t)
|
|
|
|
|
(nnbabyl-delete-mail))
|
|
|
|
|
(and last (save-buffer))))
|
|
|
|
|
result))
|
|
|
|
|
|
|
|
|
|
(deffoo nnbabyl-request-accept-article (group &optional server last)
|
|
|
|
|
(nnbabyl-possibly-change-newsgroup group server)
|
|
|
|
|
(nnmail-check-syntax)
|
|
|
|
|
(let ((buf (current-buffer))
|
|
|
|
|
result beg)
|
|
|
|
|
(and
|
|
|
|
|
(nnmail-activate 'nnbabyl)
|
|
|
|
|
(save-excursion
|
|
|
|
|
(goto-char (point-min))
|
|
|
|
|
(search-forward "\n\n" nil t)
|
|
|
|
|
(forward-line -1)
|
|
|
|
|
(save-excursion
|
|
|
|
|
(while (re-search-backward "^X-Gnus-Newsgroup: " beg t)
|
|
|
|
|
(delete-region (point) (progn (forward-line 1) (point)))))
|
|
|
|
|
(when nnmail-cache-accepted-message-ids
|
2010-09-02 01:42:32 +00:00
|
|
|
|
(nnmail-cache-insert (nnmail-fetch-field "message-id")
|
2004-09-04 13:13:48 +00:00
|
|
|
|
group
|
|
|
|
|
(nnmail-fetch-field "subject")
|
|
|
|
|
(nnmail-fetch-field "from")))
|
1997-04-16 22:13:18 +00:00
|
|
|
|
(setq result
|
|
|
|
|
(if (stringp group)
|
|
|
|
|
(list (cons group (nnbabyl-active-number group)))
|
|
|
|
|
(nnmail-article-group 'nnbabyl-active-number)))
|
|
|
|
|
(if (and (null result)
|
|
|
|
|
(yes-or-no-p "Moved to `junk' group; delete article? "))
|
|
|
|
|
(setq result 'junk)
|
|
|
|
|
(setq result (car (nnbabyl-save-mail result))))
|
|
|
|
|
(set-buffer nnbabyl-mbox-buffer)
|
|
|
|
|
(goto-char (point-max))
|
|
|
|
|
(search-backward "\n\^_")
|
|
|
|
|
(goto-char (match-end 0))
|
|
|
|
|
(insert-buffer-substring buf)
|
|
|
|
|
(when last
|
|
|
|
|
(when nnmail-cache-accepted-message-ids
|
2010-09-02 01:42:32 +00:00
|
|
|
|
(nnmail-cache-insert (nnmail-fetch-field "message-id")
|
2004-09-04 13:13:48 +00:00
|
|
|
|
group
|
|
|
|
|
(nnmail-fetch-field "subject")
|
|
|
|
|
(nnmail-fetch-field "from")))
|
1997-04-16 22:13:18 +00:00
|
|
|
|
(save-buffer)
|
|
|
|
|
(nnmail-save-active nnbabyl-group-alist nnbabyl-active-file))
|
|
|
|
|
result))))
|
|
|
|
|
|
|
|
|
|
(deffoo nnbabyl-request-replace-article (article group buffer)
|
|
|
|
|
(nnbabyl-possibly-change-newsgroup group)
|
2010-09-18 10:02:19 +00:00
|
|
|
|
(with-current-buffer nnbabyl-mbox-buffer
|
1997-04-16 22:13:18 +00:00
|
|
|
|
(goto-char (point-min))
|
|
|
|
|
(if (not (search-forward (nnbabyl-article-string article) nil t))
|
|
|
|
|
nil
|
|
|
|
|
(nnbabyl-delete-mail t t)
|
|
|
|
|
(insert-buffer-substring buffer)
|
|
|
|
|
(save-buffer)
|
|
|
|
|
t)))
|
|
|
|
|
|
|
|
|
|
(deffoo nnbabyl-request-delete-group (group &optional force server)
|
|
|
|
|
(nnbabyl-possibly-change-newsgroup group server)
|
|
|
|
|
;; Delete all articles in GROUP.
|
|
|
|
|
(if (not force)
|
|
|
|
|
() ; Don't delete the articles.
|
2010-09-18 10:02:19 +00:00
|
|
|
|
(with-current-buffer nnbabyl-mbox-buffer
|
1997-04-16 22:13:18 +00:00
|
|
|
|
(goto-char (point-min))
|
|
|
|
|
;; Delete all articles in this group.
|
|
|
|
|
(let ((ident (concat "\nX-Gnus-Newsgroup: " nnbabyl-current-group ":"))
|
|
|
|
|
found)
|
|
|
|
|
(while (search-forward ident nil t)
|
|
|
|
|
(setq found t)
|
|
|
|
|
(nnbabyl-delete-mail))
|
|
|
|
|
(when found
|
|
|
|
|
(save-buffer)))))
|
|
|
|
|
;; Remove the group from all structures.
|
|
|
|
|
(setq nnbabyl-group-alist
|
|
|
|
|
(delq (assoc group nnbabyl-group-alist) nnbabyl-group-alist)
|
|
|
|
|
nnbabyl-current-group nil)
|
|
|
|
|
;; Save the active file.
|
|
|
|
|
(nnmail-save-active nnbabyl-group-alist nnbabyl-active-file)
|
|
|
|
|
t)
|
|
|
|
|
|
|
|
|
|
(deffoo nnbabyl-request-rename-group (group new-name &optional server)
|
|
|
|
|
(nnbabyl-possibly-change-newsgroup group server)
|
2010-09-18 10:02:19 +00:00
|
|
|
|
(with-current-buffer nnbabyl-mbox-buffer
|
1997-04-16 22:13:18 +00:00
|
|
|
|
(goto-char (point-min))
|
|
|
|
|
(let ((ident (concat "\nX-Gnus-Newsgroup: " nnbabyl-current-group ":"))
|
|
|
|
|
(new-ident (concat "\nX-Gnus-Newsgroup: " new-name ":"))
|
|
|
|
|
found)
|
|
|
|
|
(while (search-forward ident nil t)
|
|
|
|
|
(replace-match new-ident t t)
|
|
|
|
|
(setq found t))
|
|
|
|
|
(when found
|
|
|
|
|
(save-buffer))))
|
|
|
|
|
(let ((entry (assoc group nnbabyl-group-alist)))
|
|
|
|
|
(and entry (setcar entry new-name))
|
|
|
|
|
(setq nnbabyl-current-group nil)
|
|
|
|
|
;; Save the new group alist.
|
|
|
|
|
(nnmail-save-active nnbabyl-group-alist nnbabyl-active-file)
|
|
|
|
|
t))
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
;;; Internal functions.
|
|
|
|
|
|
|
|
|
|
;; If FORCE, delete article no matter how many X-Gnus-Newsgroup
|
|
|
|
|
;; headers there are. If LEAVE-DELIM, don't delete the Unix mbox
|
|
|
|
|
;; delimiter line.
|
|
|
|
|
(defun nnbabyl-delete-mail (&optional force leave-delim)
|
|
|
|
|
;; Delete the current X-Gnus-Newsgroup line.
|
|
|
|
|
(unless force
|
Replace still more end-of-line etc with line-end-position, etc.
* lisp/gnus/nnbabyl.el (nnbabyl-request-move-article, nnbabyl-delete-mail)
(nnbabyl-check-mbox): Use point-at-bol.
* lisp/cedet/semantic/lex.el (semantic-lex-ignore-comments, semantic-flex):
* lisp/cedet/semantic/grammar.el (semantic-grammar-epilogue):
* lisp/cedet/ede/speedbar.el (ede-find-nearest-file-line):
* lisp/cedet/ede/pmake.el (ede-proj-makefile-insert-dist-rules):
* lisp/cedet/ede/autoconf-edit.el (autoconf-delete-parameter):
Use point-at-bol and point-at-eol.
* lisp/vc/emerge.el (emerge-line-number-in-buf):
* lisp/textmodes/ispell.el (ispell-region):
* lisp/textmodes/fill.el (current-fill-column):
* lisp/progmodes/xscheme.el (xscheme-send-current-line):
* lisp/progmodes/vhdl-mode.el (vhdl-current-line, vhdl-line-copy):
* lisp/progmodes/tcl.el (tcl-hairy-scan-for-comment):
* lisp/progmodes/sh-script.el (sh-handle-prev-do):
* lisp/progmodes/meta-mode.el (meta-indent-line):
* lisp/progmodes/idlwave.el (idlwave-goto-comment, idlwave-fill-paragraph)
(idlwave-in-quote):
* lisp/progmodes/idlw-shell.el (idlwave-shell-current-frame)
(idlwave-shell-update-bp-overlays, idlwave-shell-sources-filter):
* lisp/progmodes/fortran.el (fortran-looking-at-if-then):
* lisp/progmodes/etags.el (find-tag-in-order, etags-snarf-tag):
* lisp/progmodes/cperl-mode.el (cperl-sniff-for-indent)
(cperl-find-pods-heres):
* lisp/progmodes/ada-mode.el (ada-get-current-indent, ada-narrow-to-defun):
* lisp/net/quickurl.el (quickurl-list-insert):
* lisp/net/ldap.el (ldap-search-internal):
* lisp/net/eudc.el (eudc-expand-inline):
* lisp/mail/sendmail.el (sendmail-send-it):
* lisp/mail/mspools.el (mspools-visit-spool, mspools-get-spool-name):
* lisp/emulation/viper-cmd.el (viper-paren-match, viper-backward-indent)
(viper-brac-function):
* lisp/calc/calc-yank.el (calc-do-grab-region):
* lisp/calc/calc-keypd.el (calc-keypad-press):
* lisp/term.el (term-move-columns, term-insert-spaces):
* lisp/speedbar.el (speedbar-highlight-one-tag-line):
* lisp/simple.el (current-word):
* lisp/mouse-drag.el (mouse-drag-should-do-col-scrolling):
* lisp/info.el (Info-find-node-in-buffer-1, Info-follow-reference)
(Info-scroll-down):
* lisp/hippie-exp.el (he-line-beg):
* lisp/epa.el (epa--marked-keys):
* lisp/dired-aux.el (dired-kill-line, dired-do-kill-lines)
(dired-update-file-line, dired-add-entry, dired-remove-entry)
(dired-relist-entry):
* lisp/buff-menu.el (Buffer-menu-buffer):
* lisp/array.el (current-line):
* lisp/allout.el (allout-resolve-xref)
(allout-latex-verbatim-quote-curr-line):
Replace yet more uses of end-of-line etc with line-end-position.
2010-11-09 05:33:07 +00:00
|
|
|
|
(delete-region (point-at-bol) (progn (forward-line 1) (point))))
|
1997-04-16 22:13:18 +00:00
|
|
|
|
;; Beginning of the article.
|
|
|
|
|
(save-excursion
|
|
|
|
|
(save-restriction
|
|
|
|
|
(widen)
|
|
|
|
|
(narrow-to-region
|
|
|
|
|
(save-excursion
|
2000-09-19 13:37:09 +00:00
|
|
|
|
(unless (re-search-backward (concat "^" nnbabyl-mail-delimiter) nil t)
|
|
|
|
|
(goto-char (point-min))
|
|
|
|
|
(end-of-line))
|
1997-04-16 22:13:18 +00:00
|
|
|
|
(if leave-delim (progn (forward-line 1) (point))
|
|
|
|
|
(match-beginning 0)))
|
|
|
|
|
(progn
|
|
|
|
|
(forward-line 1)
|
|
|
|
|
(or (and (re-search-forward (concat "^" nnbabyl-mail-delimiter)
|
|
|
|
|
nil t)
|
|
|
|
|
(match-beginning 0))
|
|
|
|
|
(point-max))))
|
|
|
|
|
(goto-char (point-min))
|
|
|
|
|
;; Only delete the article if no other groups owns it as well.
|
|
|
|
|
(when (or force (not (re-search-forward "^X-Gnus-Newsgroup: " nil t)))
|
|
|
|
|
(delete-region (point-min) (point-max))))))
|
|
|
|
|
|
|
|
|
|
(defun nnbabyl-possibly-change-newsgroup (newsgroup &optional server)
|
|
|
|
|
(when (and server
|
|
|
|
|
(not (nnbabyl-server-opened server)))
|
|
|
|
|
(nnbabyl-open-server server))
|
Simplify Gnus buffer liveness checking and killing
* lisp/gnus/gnus-agent.el (gnus-agent-synchronize-group-flags):
Fix indentation.
* lisp/gnus/gnus-util.el (gnus-buffer-exists-p): Define as obsolete
alias of gnus-buffer-live-p.
(gnus-buffer-live-p): If the given argument is or names a live
buffer, return the corresponding buffer object instead of a boolean.
* lisp/gnus/gnus-win.el (gnus-delete-windows-in-gnusey-frames)
(gnus-remove-some-windows): Simplify.
* lisp/gnus/gnus.el (gnus-prune-buffers): Redefine as alias of
gnus-buffers.
(gnus-kill-buffer, gnus-buffers, gnus-group-find-parameter):
* lisp/gnus/gnus-art.el (gnus-kill-sticky-article-buffers)
(gnus-request-article-this-buffer):
* lisp/gnus/gnus-bcklg.el (gnus-backlog-shutdown):
* lisp/gnus/gnus-cus.el (gnus-group-customize)
(gnus-agent-customize-category):
* lisp/gnus/gnus-draft.el (gnus-draft-edit-message):
* lisp/gnus/gnus-group.el (gnus-group-set-mode-line)
(gnus--abort-on-unsaved-message-buffers, gnus-group-compact-group):
* lisp/gnus/gnus-msg.el (gnus-inews-add-send-actions)
(gnus-summary-supersede-article, gnus-copy-article-buffer):
* lisp/gnus/gnus-score.el (gnus-score-edit-current-scores)
(gnus-score-edit-file):
* lisp/gnus/gnus-spec.el (gnus-update-format-specifications):
* lisp/gnus/gnus-srvr.el (gnus-server-compact-server):
* lisp/gnus/gnus-start.el (gnus-clear-system, gnus-dribble-enter)
(gnus-dribble-save, gnus-dribble-clear, gnus-save-newsrc-file):
* lisp/gnus/gnus-sum.el (gnus-summary-setup-buffer)
(gnus-update-summary-mark-positions, gnus-summary-exit)
(gnus-deaden-summary, gnus-kill-or-deaden-summary)
(gnus-summary-next-group):
* lisp/gnus/gnus-win.el (gnus-configure-frame):
* lisp/gnus/mail-source.el (mail-source-movemail):
* lisp/gnus/message.el (message-with-reply-buffer)
(message-with-reply, message-send-and-exit)
(message-send-mail-with-sendmail, message-pop-to-buffer)
(message-do-send-housekeeping, message-forward-make-body-plain)
(message-forward-make-body-mml):
* lisp/gnus/mm-decode.el (mm-display-external, mm-remove-part):
* lisp/gnus/nnbabyl.el (nnbabyl-server-opened)
(nnbabyl-possibly-change-newsgroup, nnbabyl-read-mbox)
(nnbabyl-check-mbox):
* lisp/gnus/nndiary.el (nndiary-save-nov):
* lisp/gnus/nndoc.el (nndoc-close-group)
(nndoc-possibly-change-buffer):
* lisp/gnus/nnfolder.el (nnfolder-close-group, nnfolder-save-nov):
* lisp/gnus/nnimap.el (nnimap-make-process-buffer, nnimap-keepalive)
(nnimap-find-connection):
* lisp/gnus/nnmail.el (nnmail-cache-open, nnmail-cache-close):
* lisp/gnus/nnmbox.el (nnmbox-close-server, nnmbox-server-opened)
(nnmbox-possibly-change-newsgroup, nnmbox-read-mbox):
* lisp/gnus/nnml.el (nnml-save-incremental-nov, nnml-open-nov)
(nnml-save-nov):
* lisp/gnus/nnoo.el (nnoo-server-opened):
* lisp/gnus/nntp.el (nntp-kill-buffer, nntp-make-process-buffer)
(nntp-open-connection, nntp-async-trigger):
* lisp/net/mairix.el (mairix-gnus-fetch-field): Simplify buffer
liveness checking and killing, replacing buffer-name with
buffer-live-p and gnus-buffer-exists-p with gnus-buffer-live-p or
equivalent where applicable.
2019-05-05 00:28:57 +00:00
|
|
|
|
(unless (buffer-live-p nnbabyl-mbox-buffer)
|
1997-04-16 22:13:18 +00:00
|
|
|
|
(save-excursion (nnbabyl-read-mbox)))
|
|
|
|
|
(unless nnbabyl-group-alist
|
|
|
|
|
(nnmail-activate 'nnbabyl))
|
|
|
|
|
(if newsgroup
|
|
|
|
|
(if (assoc newsgroup nnbabyl-group-alist)
|
|
|
|
|
(setq nnbabyl-current-group newsgroup)
|
|
|
|
|
(nnheader-report 'nnbabyl "No such group in file"))
|
|
|
|
|
t))
|
|
|
|
|
|
|
|
|
|
(defun nnbabyl-article-string (article)
|
|
|
|
|
(if (numberp article)
|
|
|
|
|
(concat "\nX-Gnus-Newsgroup: " nnbabyl-current-group ":"
|
|
|
|
|
(int-to-string article) " ")
|
|
|
|
|
(concat "\nMessage-ID: " article)))
|
|
|
|
|
|
|
|
|
|
(defun nnbabyl-article-group-number ()
|
|
|
|
|
(save-excursion
|
|
|
|
|
(goto-char (point-min))
|
|
|
|
|
(when (re-search-forward "^X-Gnus-Newsgroup: +\\([^:]+\\):\\([0-9]+\\) "
|
|
|
|
|
nil t)
|
|
|
|
|
(cons (buffer-substring (match-beginning 1) (match-end 1))
|
Revision: miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-339
Merge from gnus--rel--5.10
Patches applied:
* gnus--rel--5.10 (patch 76)
- Update from CVS
2005-05-30 Reiner Steib <Reiner.Steib@gmx.de>
* lisp/gnus/gnus-agent.el (gnus-agent-regenerate-group)
(gnus-agent-fetch-articles): Replace `string-to-int' by
`string-to-number'.
* lisp/gnus/gnus-art.el (gnus-button-fetch-group): Ditto.
* lisp/gnus/gnus-cache.el (gnus-cache-generate-active)
(gnus-cache-articles-in-group): Ditto.
* lisp/gnus/gnus-group.el (gnus-group-set-current-level)
(gnus-group-insert-group-line): Ditto.
* lisp/gnus/gnus-score.el (gnus-score-set-expunge-below)
(gnus-score-set-mark-below, gnus-summary-score-effect)
(gnus-summary-score-entry): Ditto.
* lisp/gnus/gnus-soup.el (gnus-soup-send-packet, gnus-soup-parse-areas)
(gnus-soup-pack): Ditto.
* lisp/gnus/gnus-spec.el (gnus-xmas-format): Ditto.
* lisp/gnus/gnus-start.el (gnus-newsrc-to-gnus-format): Ditto.
* lisp/gnus/gnus-sum.el (gnus-create-xref-hashtb): Ditto.
* lisp/gnus/gnus-uu.el (gnus-uu-expand-numbers): Ditto.
* lisp/gnus/nnbabyl.el (nnbabyl-article-group-number): Ditto.
* lisp/gnus/nndb.el (nndb-get-remote-expire-response): Ditto.
* lisp/gnus/nndiary.el (nndiary-parse-schedule-value)
(nndiary-string-to-number, nndiary-request-replace-article)
(nndiary-request-article): Ditto.
* lisp/gnus/nndoc.el (nndoc-rnews-body-end, nndoc-mbox-body-end): Ditto.
* lisp/gnus/nndraft.el (nndraft-articles, nndraft-request-group): Ditto.
* lisp/gnus/nneething.el (nneething-make-head): Ditto.
* lisp/gnus/nnfolder.el (nnfolder-request-article)
(nnfolder-retrieve-headers): Ditto.
* lisp/gnus/nnheader.el (nnheader-file-to-number): Ditto.
* lisp/gnus/nnkiboze.el (nnkiboze-request-article): Ditto.
* lisp/gnus/nnmail.el (nnmail-process-unix-mail-format)
(nnmail-process-babyl-mail-format): Ditto.
* lisp/gnus/nnmbox.el (nnmbox-read-mbox, nnmbox-article-group-number): Ditto.
* lisp/gnus/nnmh.el (nnmh-update-gnus-unreads, nnmh-active-number)
(nnmh-request-create-group, nnmh-request-list-1)
(nnmh-request-group, nnmh-request-article): Ditto.
* lisp/gnus/nnml.el (nnml-request-replace-article, nnml-request-article): Ditto.
* lisp/gnus/nnrss.el (nnrss-find-rss-via-syndic8): Ditto.
* lisp/gnus/nnsoup.el (nnsoup-make-active): Ditto.
* lisp/gnus/nnspool.el (nnspool-find-id, nnspool-request-group): Ditto.
* lisp/gnus/nntp.el (nntp-find-group-and-number)
(nntp-retrieve-headers-with-xover): Ditto.
* lisp/gnus/pgg-gpg.el (pgg-gpg-snarf-keys-region): Ditto.
* lisp/gnus/pgg-parse.el (pgg-read-body, pgg-read-bytes)
(pgg-format-key-identifier): Ditto.
* lisp/gnus/pop3.el (pop3-last, pop3-stat): Ditto.
* lisp/gnus/qp.el (quoted-printable-decode-region): Ditto.
* lisp/gnus/spam-report.el (spam-report-url-ping-mm-url): Use format instead
of concat.
2005-05-30 17:13:58 +00:00
|
|
|
|
(string-to-number
|
1997-04-16 22:13:18 +00:00
|
|
|
|
(buffer-substring (match-beginning 2) (match-end 2)))))))
|
|
|
|
|
|
|
|
|
|
(defun nnbabyl-insert-lines ()
|
|
|
|
|
"Insert how many lines and chars there are in the body of the mail."
|
|
|
|
|
(let (lines chars)
|
|
|
|
|
(save-excursion
|
|
|
|
|
(goto-char (point-min))
|
|
|
|
|
(when (search-forward "\n\n" nil t)
|
|
|
|
|
;; There may be an EOOH line here...
|
|
|
|
|
(when (looking-at "\\*\\*\\* EOOH \\*\\*\\*")
|
|
|
|
|
(search-forward "\n\n" nil t))
|
|
|
|
|
(setq chars (- (point-max) (point))
|
|
|
|
|
lines (max (- (count-lines (point) (point-max)) 1) 0))
|
|
|
|
|
;; Move back to the end of the headers.
|
|
|
|
|
(goto-char (point-min))
|
|
|
|
|
(search-forward "\n\n" nil t)
|
|
|
|
|
(forward-char -1)
|
|
|
|
|
(save-excursion
|
|
|
|
|
(when (re-search-backward "^Lines: " nil t)
|
|
|
|
|
(delete-region (point) (progn (forward-line 1) (point)))))
|
|
|
|
|
(insert (format "Lines: %d\n" lines))
|
|
|
|
|
chars))))
|
|
|
|
|
|
|
|
|
|
(defun nnbabyl-save-mail (group-art)
|
|
|
|
|
;; Called narrowed to an article.
|
|
|
|
|
(nnbabyl-insert-lines)
|
|
|
|
|
(nnmail-insert-xref group-art)
|
|
|
|
|
(nnbabyl-insert-newsgroup-line group-art)
|
|
|
|
|
(run-hooks 'nnbabyl-prepare-save-mail-hook)
|
|
|
|
|
group-art)
|
|
|
|
|
|
|
|
|
|
(defun nnbabyl-insert-newsgroup-line (group-art)
|
|
|
|
|
(save-excursion
|
|
|
|
|
(goto-char (point-min))
|
|
|
|
|
(while (looking-at "From ")
|
|
|
|
|
(replace-match "Mail-from: From " t t)
|
|
|
|
|
(forward-line 1))
|
|
|
|
|
;; If there is a C-l at the beginning of the narrowed region, this
|
|
|
|
|
;; isn't really a "save", but rather a "scan".
|
|
|
|
|
(goto-char (point-min))
|
|
|
|
|
(unless (looking-at "\^L")
|
|
|
|
|
(save-excursion
|
|
|
|
|
(insert "\^L\n0, unseen,,\n*** EOOH ***\n")
|
|
|
|
|
(goto-char (point-max))
|
|
|
|
|
(insert "\^_\n")))
|
|
|
|
|
(when (search-forward "\n\n" nil t)
|
|
|
|
|
(forward-char -1)
|
|
|
|
|
(while group-art
|
|
|
|
|
(insert (format "X-Gnus-Newsgroup: %s:%d %s\n"
|
|
|
|
|
(caar group-art) (cdar group-art)
|
|
|
|
|
(current-time-string)))
|
|
|
|
|
(setq group-art (cdr group-art))))
|
|
|
|
|
t))
|
|
|
|
|
|
|
|
|
|
(defun nnbabyl-active-number (group)
|
|
|
|
|
;; Find the next article number in GROUP.
|
|
|
|
|
(let ((active (cadr (assoc group nnbabyl-group-alist))))
|
|
|
|
|
(if active
|
|
|
|
|
(setcdr active (1+ (cdr active)))
|
|
|
|
|
;; This group is new, so we create a new entry for it.
|
|
|
|
|
;; This might be a bit naughty... creating groups on the drop of
|
|
|
|
|
;; a hat, but I don't know...
|
|
|
|
|
(push (list group (setq active (cons 1 1)))
|
|
|
|
|
nnbabyl-group-alist))
|
|
|
|
|
(cdr active)))
|
|
|
|
|
|
|
|
|
|
(defun nnbabyl-create-mbox ()
|
|
|
|
|
(unless (file-exists-p nnbabyl-mbox-file)
|
|
|
|
|
;; Create a new, empty RMAIL mbox file.
|
2010-09-18 10:02:19 +00:00
|
|
|
|
(with-current-buffer (setq nnbabyl-mbox-buffer
|
|
|
|
|
(create-file-buffer nnbabyl-mbox-file))
|
1997-04-16 22:13:18 +00:00
|
|
|
|
(setq buffer-file-name nnbabyl-mbox-file)
|
|
|
|
|
(insert "BABYL OPTIONS:\n\n\^_")
|
|
|
|
|
(nnmail-write-region
|
|
|
|
|
(point-min) (point-max) nnbabyl-mbox-file t 'nomesg))))
|
|
|
|
|
|
|
|
|
|
(defun nnbabyl-read-mbox ()
|
|
|
|
|
(nnmail-activate 'nnbabyl)
|
|
|
|
|
(nnbabyl-create-mbox)
|
|
|
|
|
|
Simplify Gnus buffer liveness checking and killing
* lisp/gnus/gnus-agent.el (gnus-agent-synchronize-group-flags):
Fix indentation.
* lisp/gnus/gnus-util.el (gnus-buffer-exists-p): Define as obsolete
alias of gnus-buffer-live-p.
(gnus-buffer-live-p): If the given argument is or names a live
buffer, return the corresponding buffer object instead of a boolean.
* lisp/gnus/gnus-win.el (gnus-delete-windows-in-gnusey-frames)
(gnus-remove-some-windows): Simplify.
* lisp/gnus/gnus.el (gnus-prune-buffers): Redefine as alias of
gnus-buffers.
(gnus-kill-buffer, gnus-buffers, gnus-group-find-parameter):
* lisp/gnus/gnus-art.el (gnus-kill-sticky-article-buffers)
(gnus-request-article-this-buffer):
* lisp/gnus/gnus-bcklg.el (gnus-backlog-shutdown):
* lisp/gnus/gnus-cus.el (gnus-group-customize)
(gnus-agent-customize-category):
* lisp/gnus/gnus-draft.el (gnus-draft-edit-message):
* lisp/gnus/gnus-group.el (gnus-group-set-mode-line)
(gnus--abort-on-unsaved-message-buffers, gnus-group-compact-group):
* lisp/gnus/gnus-msg.el (gnus-inews-add-send-actions)
(gnus-summary-supersede-article, gnus-copy-article-buffer):
* lisp/gnus/gnus-score.el (gnus-score-edit-current-scores)
(gnus-score-edit-file):
* lisp/gnus/gnus-spec.el (gnus-update-format-specifications):
* lisp/gnus/gnus-srvr.el (gnus-server-compact-server):
* lisp/gnus/gnus-start.el (gnus-clear-system, gnus-dribble-enter)
(gnus-dribble-save, gnus-dribble-clear, gnus-save-newsrc-file):
* lisp/gnus/gnus-sum.el (gnus-summary-setup-buffer)
(gnus-update-summary-mark-positions, gnus-summary-exit)
(gnus-deaden-summary, gnus-kill-or-deaden-summary)
(gnus-summary-next-group):
* lisp/gnus/gnus-win.el (gnus-configure-frame):
* lisp/gnus/mail-source.el (mail-source-movemail):
* lisp/gnus/message.el (message-with-reply-buffer)
(message-with-reply, message-send-and-exit)
(message-send-mail-with-sendmail, message-pop-to-buffer)
(message-do-send-housekeeping, message-forward-make-body-plain)
(message-forward-make-body-mml):
* lisp/gnus/mm-decode.el (mm-display-external, mm-remove-part):
* lisp/gnus/nnbabyl.el (nnbabyl-server-opened)
(nnbabyl-possibly-change-newsgroup, nnbabyl-read-mbox)
(nnbabyl-check-mbox):
* lisp/gnus/nndiary.el (nndiary-save-nov):
* lisp/gnus/nndoc.el (nndoc-close-group)
(nndoc-possibly-change-buffer):
* lisp/gnus/nnfolder.el (nnfolder-close-group, nnfolder-save-nov):
* lisp/gnus/nnimap.el (nnimap-make-process-buffer, nnimap-keepalive)
(nnimap-find-connection):
* lisp/gnus/nnmail.el (nnmail-cache-open, nnmail-cache-close):
* lisp/gnus/nnmbox.el (nnmbox-close-server, nnmbox-server-opened)
(nnmbox-possibly-change-newsgroup, nnmbox-read-mbox):
* lisp/gnus/nnml.el (nnml-save-incremental-nov, nnml-open-nov)
(nnml-save-nov):
* lisp/gnus/nnoo.el (nnoo-server-opened):
* lisp/gnus/nntp.el (nntp-kill-buffer, nntp-make-process-buffer)
(nntp-open-connection, nntp-async-trigger):
* lisp/net/mairix.el (mairix-gnus-fetch-field): Simplify buffer
liveness checking and killing, replacing buffer-name with
buffer-live-p and gnus-buffer-exists-p with gnus-buffer-live-p or
equivalent where applicable.
2019-05-05 00:28:57 +00:00
|
|
|
|
(unless (and (buffer-live-p nnbabyl-mbox-buffer)
|
2010-09-18 10:02:19 +00:00
|
|
|
|
(with-current-buffer nnbabyl-mbox-buffer
|
2000-09-19 13:37:09 +00:00
|
|
|
|
(= (buffer-size) (nnheader-file-size nnbabyl-mbox-file))))
|
1997-04-16 22:13:18 +00:00
|
|
|
|
;; This buffer has changed since we read it last. Possibly.
|
|
|
|
|
(save-excursion
|
|
|
|
|
(let ((delim (concat "^" nnbabyl-mail-delimiter))
|
|
|
|
|
(alist nnbabyl-group-alist)
|
|
|
|
|
start end number)
|
|
|
|
|
(set-buffer (setq nnbabyl-mbox-buffer
|
|
|
|
|
(nnheader-find-file-noselect
|
2000-09-19 13:37:09 +00:00
|
|
|
|
nnbabyl-mbox-file nil t)))
|
1997-04-16 22:13:18 +00:00
|
|
|
|
;; Save previous buffer mode.
|
|
|
|
|
(setq nnbabyl-previous-buffer-mode
|
|
|
|
|
(cons (cons (point-min) (point-max))
|
|
|
|
|
major-mode))
|
|
|
|
|
|
2000-09-19 13:37:09 +00:00
|
|
|
|
(buffer-disable-undo)
|
1997-04-16 22:13:18 +00:00
|
|
|
|
(widen)
|
|
|
|
|
(setq buffer-read-only nil)
|
|
|
|
|
(fundamental-mode)
|
|
|
|
|
|
|
|
|
|
;; Go through the group alist and compare against
|
|
|
|
|
;; the rmail file.
|
|
|
|
|
(while alist
|
|
|
|
|
(goto-char (point-max))
|
|
|
|
|
(when (and (re-search-backward
|
|
|
|
|
(format "^X-Gnus-Newsgroup: %s:\\([0-9]+\\) "
|
|
|
|
|
(caar alist))
|
|
|
|
|
nil t)
|
|
|
|
|
(> (setq number
|
|
|
|
|
(string-to-number
|
|
|
|
|
(buffer-substring
|
|
|
|
|
(match-beginning 1) (match-end 1))))
|
|
|
|
|
(cdadar alist)))
|
|
|
|
|
(setcdr (cadar alist) number))
|
|
|
|
|
(setq alist (cdr alist)))
|
|
|
|
|
|
|
|
|
|
;; We go through the mbox and make sure that each and
|
|
|
|
|
;; every mail belongs to some group or other.
|
|
|
|
|
(goto-char (point-min))
|
|
|
|
|
(if (looking-at "\^L")
|
|
|
|
|
(setq start (point))
|
|
|
|
|
(re-search-forward delim nil t)
|
|
|
|
|
(setq start (match-end 0)))
|
|
|
|
|
(while (re-search-forward delim nil t)
|
|
|
|
|
(setq end (match-end 0))
|
|
|
|
|
(unless (search-backward "\nX-Gnus-Newsgroup: " start t)
|
|
|
|
|
(goto-char end)
|
|
|
|
|
(save-excursion
|
|
|
|
|
(save-restriction
|
|
|
|
|
(narrow-to-region (goto-char start) end)
|
|
|
|
|
(nnbabyl-save-mail
|
|
|
|
|
(nnmail-article-group 'nnbabyl-active-number))
|
|
|
|
|
(setq end (point-max)))))
|
|
|
|
|
(goto-char (setq start end)))
|
|
|
|
|
(when (buffer-modified-p (current-buffer))
|
|
|
|
|
(save-buffer))
|
|
|
|
|
(nnmail-save-active nnbabyl-group-alist nnbabyl-active-file)))))
|
|
|
|
|
|
|
|
|
|
(defun nnbabyl-remove-incoming-delims ()
|
|
|
|
|
(goto-char (point-min))
|
|
|
|
|
(while (search-forward "\^_" nil t)
|
|
|
|
|
(replace-match "?" t t)))
|
|
|
|
|
|
|
|
|
|
(defun nnbabyl-check-mbox ()
|
|
|
|
|
"Go through the nnbabyl mbox and make sure that no article numbers are reused."
|
|
|
|
|
(interactive)
|
Change Gnus hash tables into real hash tables
Gnus has used obarrays as makeshift hash tables for groups: group
names are coerced to unibyte and interned in custom obarrays, and
their symbol-value set to whatever value needs to be stored. This
patch replaces those obarrays with actual hash tables.
* lisp/gnus/gnus-util.el (gnus-intern-safe, gnus-create-hash-size):
Remove functions.
(gnus-make-hashtable): Change to return a real hash table.
(gnus-text-property-search): Utility similar to `text-property-any',
but compares on `equal'. Needed because the 'gnus-group text
property is now a string.
* lisp/gnus/gnus.el (gnus-gethash, gnus-gethash-safe, gnus-sethash):
Remove macros.
(gnus-group-list): New variable holding all group names as an
ordered list. Used because `gnus-newsrc-hashtb' used to preserve
`gnus-newsrc-alist' ordering, but now doesn't.
* lisp/gnus/nnmaildir.el (nnmaildir--servers): Change from obarray to
alist.
(nnmaildir--up2-1): Remove function.
* lisp/thingatpt.el (thing-at-point-newsgroup-p): This was making use
of Gnus obarrays, replace with a cond that can handle many different
possibilities.
* lisp/gnus/gnus-bcklg.el (gnus-backlog-articles): Remove
gnus-backlog-hashtb, which wasn't doing anything. Just keep a list
of ident strings in gnus-backlog-articles.
(gnus-backlog-setup): Delete unnecessary function.
(gnus-backlog-enter-article, gnus-backlog-remove-oldest-article,
gnus-backlog-remove-article, gnus-backlog-request-article): Alter
calls accordingly.
* lisp/gnus/gnus-dup.el (gnus-duplicate-list-max-length): Rename from
`gnus-duplicate-list-length', for accuracy.
* lisp/gnus/gnus-start.el (gnus-active-to-gnus-format,
gnus-groups-to-gnus-format, gnus-newsrc-to-gnus-format): Read group
names as strings.
(gnus-gnus-to-quick-newsrc-format): Write `gnus-newsrc-alist' using
the ordering in `gnus-group-list'.
* lisp/gnus/gnus-agent.el:
* lisp/gnus/gnus-async.el:
* lisp/gnus/gnus-cache.el:
* lisp/gnus/gnus-group.el:
* lisp/gnus/gnus-score.el:
* lisp/gnus/gnus-sum.el:
* lisp/gnus/gnus-topic.el:
* lisp/gnus/message.el:
* lisp/gnus/mml.el:
* lisp/gnus/nnagent.el:
* lisp/gnus/nnbabyl.el:
* lisp/gnus/nnvirtual.el:
* lisp/gnus/nnweb.el: In all files, change obarrays to hash-tables,
and swap `gnus-sethash' for `puthash', `gnus-gethash' for `gethash',
`mapatoms' for `maphash', etc.
* test/lisp/gnus/gnus-test-headers.el (gnus-headers-make-dependency-table,
gnus-headers-loop-dependencies): New tests to make sure we're
building `gnus-newsgroup-dependencies' correctly.
2018-04-26 23:26:27 +00:00
|
|
|
|
(let ((idents (gnus-make-hashtable 1000))
|
1997-04-16 22:13:18 +00:00
|
|
|
|
id)
|
|
|
|
|
(save-excursion
|
Simplify Gnus buffer liveness checking and killing
* lisp/gnus/gnus-agent.el (gnus-agent-synchronize-group-flags):
Fix indentation.
* lisp/gnus/gnus-util.el (gnus-buffer-exists-p): Define as obsolete
alias of gnus-buffer-live-p.
(gnus-buffer-live-p): If the given argument is or names a live
buffer, return the corresponding buffer object instead of a boolean.
* lisp/gnus/gnus-win.el (gnus-delete-windows-in-gnusey-frames)
(gnus-remove-some-windows): Simplify.
* lisp/gnus/gnus.el (gnus-prune-buffers): Redefine as alias of
gnus-buffers.
(gnus-kill-buffer, gnus-buffers, gnus-group-find-parameter):
* lisp/gnus/gnus-art.el (gnus-kill-sticky-article-buffers)
(gnus-request-article-this-buffer):
* lisp/gnus/gnus-bcklg.el (gnus-backlog-shutdown):
* lisp/gnus/gnus-cus.el (gnus-group-customize)
(gnus-agent-customize-category):
* lisp/gnus/gnus-draft.el (gnus-draft-edit-message):
* lisp/gnus/gnus-group.el (gnus-group-set-mode-line)
(gnus--abort-on-unsaved-message-buffers, gnus-group-compact-group):
* lisp/gnus/gnus-msg.el (gnus-inews-add-send-actions)
(gnus-summary-supersede-article, gnus-copy-article-buffer):
* lisp/gnus/gnus-score.el (gnus-score-edit-current-scores)
(gnus-score-edit-file):
* lisp/gnus/gnus-spec.el (gnus-update-format-specifications):
* lisp/gnus/gnus-srvr.el (gnus-server-compact-server):
* lisp/gnus/gnus-start.el (gnus-clear-system, gnus-dribble-enter)
(gnus-dribble-save, gnus-dribble-clear, gnus-save-newsrc-file):
* lisp/gnus/gnus-sum.el (gnus-summary-setup-buffer)
(gnus-update-summary-mark-positions, gnus-summary-exit)
(gnus-deaden-summary, gnus-kill-or-deaden-summary)
(gnus-summary-next-group):
* lisp/gnus/gnus-win.el (gnus-configure-frame):
* lisp/gnus/mail-source.el (mail-source-movemail):
* lisp/gnus/message.el (message-with-reply-buffer)
(message-with-reply, message-send-and-exit)
(message-send-mail-with-sendmail, message-pop-to-buffer)
(message-do-send-housekeeping, message-forward-make-body-plain)
(message-forward-make-body-mml):
* lisp/gnus/mm-decode.el (mm-display-external, mm-remove-part):
* lisp/gnus/nnbabyl.el (nnbabyl-server-opened)
(nnbabyl-possibly-change-newsgroup, nnbabyl-read-mbox)
(nnbabyl-check-mbox):
* lisp/gnus/nndiary.el (nndiary-save-nov):
* lisp/gnus/nndoc.el (nndoc-close-group)
(nndoc-possibly-change-buffer):
* lisp/gnus/nnfolder.el (nnfolder-close-group, nnfolder-save-nov):
* lisp/gnus/nnimap.el (nnimap-make-process-buffer, nnimap-keepalive)
(nnimap-find-connection):
* lisp/gnus/nnmail.el (nnmail-cache-open, nnmail-cache-close):
* lisp/gnus/nnmbox.el (nnmbox-close-server, nnmbox-server-opened)
(nnmbox-possibly-change-newsgroup, nnmbox-read-mbox):
* lisp/gnus/nnml.el (nnml-save-incremental-nov, nnml-open-nov)
(nnml-save-nov):
* lisp/gnus/nnoo.el (nnoo-server-opened):
* lisp/gnus/nntp.el (nntp-kill-buffer, nntp-make-process-buffer)
(nntp-open-connection, nntp-async-trigger):
* lisp/net/mairix.el (mairix-gnus-fetch-field): Simplify buffer
liveness checking and killing, replacing buffer-name with
buffer-live-p and gnus-buffer-exists-p with gnus-buffer-live-p or
equivalent where applicable.
2019-05-05 00:28:57 +00:00
|
|
|
|
(unless (buffer-live-p nnbabyl-mbox-buffer)
|
1997-04-16 22:13:18 +00:00
|
|
|
|
(nnbabyl-read-mbox))
|
|
|
|
|
(set-buffer nnbabyl-mbox-buffer)
|
|
|
|
|
(goto-char (point-min))
|
|
|
|
|
(while (re-search-forward "^X-Gnus-Newsgroup: \\([^ ]+\\) " nil t)
|
Change Gnus hash tables into real hash tables
Gnus has used obarrays as makeshift hash tables for groups: group
names are coerced to unibyte and interned in custom obarrays, and
their symbol-value set to whatever value needs to be stored. This
patch replaces those obarrays with actual hash tables.
* lisp/gnus/gnus-util.el (gnus-intern-safe, gnus-create-hash-size):
Remove functions.
(gnus-make-hashtable): Change to return a real hash table.
(gnus-text-property-search): Utility similar to `text-property-any',
but compares on `equal'. Needed because the 'gnus-group text
property is now a string.
* lisp/gnus/gnus.el (gnus-gethash, gnus-gethash-safe, gnus-sethash):
Remove macros.
(gnus-group-list): New variable holding all group names as an
ordered list. Used because `gnus-newsrc-hashtb' used to preserve
`gnus-newsrc-alist' ordering, but now doesn't.
* lisp/gnus/nnmaildir.el (nnmaildir--servers): Change from obarray to
alist.
(nnmaildir--up2-1): Remove function.
* lisp/thingatpt.el (thing-at-point-newsgroup-p): This was making use
of Gnus obarrays, replace with a cond that can handle many different
possibilities.
* lisp/gnus/gnus-bcklg.el (gnus-backlog-articles): Remove
gnus-backlog-hashtb, which wasn't doing anything. Just keep a list
of ident strings in gnus-backlog-articles.
(gnus-backlog-setup): Delete unnecessary function.
(gnus-backlog-enter-article, gnus-backlog-remove-oldest-article,
gnus-backlog-remove-article, gnus-backlog-request-article): Alter
calls accordingly.
* lisp/gnus/gnus-dup.el (gnus-duplicate-list-max-length): Rename from
`gnus-duplicate-list-length', for accuracy.
* lisp/gnus/gnus-start.el (gnus-active-to-gnus-format,
gnus-groups-to-gnus-format, gnus-newsrc-to-gnus-format): Read group
names as strings.
(gnus-gnus-to-quick-newsrc-format): Write `gnus-newsrc-alist' using
the ordering in `gnus-group-list'.
* lisp/gnus/gnus-agent.el:
* lisp/gnus/gnus-async.el:
* lisp/gnus/gnus-cache.el:
* lisp/gnus/gnus-group.el:
* lisp/gnus/gnus-score.el:
* lisp/gnus/gnus-sum.el:
* lisp/gnus/gnus-topic.el:
* lisp/gnus/message.el:
* lisp/gnus/mml.el:
* lisp/gnus/nnagent.el:
* lisp/gnus/nnbabyl.el:
* lisp/gnus/nnvirtual.el:
* lisp/gnus/nnweb.el: In all files, change obarrays to hash-tables,
and swap `gnus-sethash' for `puthash', `gnus-gethash' for `gethash',
`mapatoms' for `maphash', etc.
* test/lisp/gnus/gnus-test-headers.el (gnus-headers-make-dependency-table,
gnus-headers-loop-dependencies): New tests to make sure we're
building `gnus-newsgroup-dependencies' correctly.
2018-04-26 23:26:27 +00:00
|
|
|
|
(if (gethash (setq id (match-string 1)) idents)
|
1997-04-16 22:13:18 +00:00
|
|
|
|
(progn
|
Replace still more end-of-line etc with line-end-position, etc.
* lisp/gnus/nnbabyl.el (nnbabyl-request-move-article, nnbabyl-delete-mail)
(nnbabyl-check-mbox): Use point-at-bol.
* lisp/cedet/semantic/lex.el (semantic-lex-ignore-comments, semantic-flex):
* lisp/cedet/semantic/grammar.el (semantic-grammar-epilogue):
* lisp/cedet/ede/speedbar.el (ede-find-nearest-file-line):
* lisp/cedet/ede/pmake.el (ede-proj-makefile-insert-dist-rules):
* lisp/cedet/ede/autoconf-edit.el (autoconf-delete-parameter):
Use point-at-bol and point-at-eol.
* lisp/vc/emerge.el (emerge-line-number-in-buf):
* lisp/textmodes/ispell.el (ispell-region):
* lisp/textmodes/fill.el (current-fill-column):
* lisp/progmodes/xscheme.el (xscheme-send-current-line):
* lisp/progmodes/vhdl-mode.el (vhdl-current-line, vhdl-line-copy):
* lisp/progmodes/tcl.el (tcl-hairy-scan-for-comment):
* lisp/progmodes/sh-script.el (sh-handle-prev-do):
* lisp/progmodes/meta-mode.el (meta-indent-line):
* lisp/progmodes/idlwave.el (idlwave-goto-comment, idlwave-fill-paragraph)
(idlwave-in-quote):
* lisp/progmodes/idlw-shell.el (idlwave-shell-current-frame)
(idlwave-shell-update-bp-overlays, idlwave-shell-sources-filter):
* lisp/progmodes/fortran.el (fortran-looking-at-if-then):
* lisp/progmodes/etags.el (find-tag-in-order, etags-snarf-tag):
* lisp/progmodes/cperl-mode.el (cperl-sniff-for-indent)
(cperl-find-pods-heres):
* lisp/progmodes/ada-mode.el (ada-get-current-indent, ada-narrow-to-defun):
* lisp/net/quickurl.el (quickurl-list-insert):
* lisp/net/ldap.el (ldap-search-internal):
* lisp/net/eudc.el (eudc-expand-inline):
* lisp/mail/sendmail.el (sendmail-send-it):
* lisp/mail/mspools.el (mspools-visit-spool, mspools-get-spool-name):
* lisp/emulation/viper-cmd.el (viper-paren-match, viper-backward-indent)
(viper-brac-function):
* lisp/calc/calc-yank.el (calc-do-grab-region):
* lisp/calc/calc-keypd.el (calc-keypad-press):
* lisp/term.el (term-move-columns, term-insert-spaces):
* lisp/speedbar.el (speedbar-highlight-one-tag-line):
* lisp/simple.el (current-word):
* lisp/mouse-drag.el (mouse-drag-should-do-col-scrolling):
* lisp/info.el (Info-find-node-in-buffer-1, Info-follow-reference)
(Info-scroll-down):
* lisp/hippie-exp.el (he-line-beg):
* lisp/epa.el (epa--marked-keys):
* lisp/dired-aux.el (dired-kill-line, dired-do-kill-lines)
(dired-update-file-line, dired-add-entry, dired-remove-entry)
(dired-relist-entry):
* lisp/buff-menu.el (Buffer-menu-buffer):
* lisp/array.el (current-line):
* lisp/allout.el (allout-resolve-xref)
(allout-latex-verbatim-quote-curr-line):
Replace yet more uses of end-of-line etc with line-end-position.
2010-11-09 05:33:07 +00:00
|
|
|
|
(delete-region (point-at-bol) (progn (forward-line 1) (point)))
|
1997-04-16 22:13:18 +00:00
|
|
|
|
(nnheader-message 7 "Moving %s..." id)
|
|
|
|
|
(nnbabyl-save-mail
|
|
|
|
|
(nnmail-article-group 'nnbabyl-active-number)))
|
Change Gnus hash tables into real hash tables
Gnus has used obarrays as makeshift hash tables for groups: group
names are coerced to unibyte and interned in custom obarrays, and
their symbol-value set to whatever value needs to be stored. This
patch replaces those obarrays with actual hash tables.
* lisp/gnus/gnus-util.el (gnus-intern-safe, gnus-create-hash-size):
Remove functions.
(gnus-make-hashtable): Change to return a real hash table.
(gnus-text-property-search): Utility similar to `text-property-any',
but compares on `equal'. Needed because the 'gnus-group text
property is now a string.
* lisp/gnus/gnus.el (gnus-gethash, gnus-gethash-safe, gnus-sethash):
Remove macros.
(gnus-group-list): New variable holding all group names as an
ordered list. Used because `gnus-newsrc-hashtb' used to preserve
`gnus-newsrc-alist' ordering, but now doesn't.
* lisp/gnus/nnmaildir.el (nnmaildir--servers): Change from obarray to
alist.
(nnmaildir--up2-1): Remove function.
* lisp/thingatpt.el (thing-at-point-newsgroup-p): This was making use
of Gnus obarrays, replace with a cond that can handle many different
possibilities.
* lisp/gnus/gnus-bcklg.el (gnus-backlog-articles): Remove
gnus-backlog-hashtb, which wasn't doing anything. Just keep a list
of ident strings in gnus-backlog-articles.
(gnus-backlog-setup): Delete unnecessary function.
(gnus-backlog-enter-article, gnus-backlog-remove-oldest-article,
gnus-backlog-remove-article, gnus-backlog-request-article): Alter
calls accordingly.
* lisp/gnus/gnus-dup.el (gnus-duplicate-list-max-length): Rename from
`gnus-duplicate-list-length', for accuracy.
* lisp/gnus/gnus-start.el (gnus-active-to-gnus-format,
gnus-groups-to-gnus-format, gnus-newsrc-to-gnus-format): Read group
names as strings.
(gnus-gnus-to-quick-newsrc-format): Write `gnus-newsrc-alist' using
the ordering in `gnus-group-list'.
* lisp/gnus/gnus-agent.el:
* lisp/gnus/gnus-async.el:
* lisp/gnus/gnus-cache.el:
* lisp/gnus/gnus-group.el:
* lisp/gnus/gnus-score.el:
* lisp/gnus/gnus-sum.el:
* lisp/gnus/gnus-topic.el:
* lisp/gnus/message.el:
* lisp/gnus/mml.el:
* lisp/gnus/nnagent.el:
* lisp/gnus/nnbabyl.el:
* lisp/gnus/nnvirtual.el:
* lisp/gnus/nnweb.el: In all files, change obarrays to hash-tables,
and swap `gnus-sethash' for `puthash', `gnus-gethash' for `gethash',
`mapatoms' for `maphash', etc.
* test/lisp/gnus/gnus-test-headers.el (gnus-headers-make-dependency-table,
gnus-headers-loop-dependencies): New tests to make sure we're
building `gnus-newsgroup-dependencies' correctly.
2018-04-26 23:26:27 +00:00
|
|
|
|
(puthash id t idents)))
|
1997-04-16 22:13:18 +00:00
|
|
|
|
(when (buffer-modified-p (current-buffer))
|
|
|
|
|
(save-buffer))
|
|
|
|
|
(nnmail-save-active nnbabyl-group-alist nnbabyl-active-file)
|
1999-02-20 14:05:57 +00:00
|
|
|
|
(nnheader-message 5 ""))))
|
1997-04-16 22:13:18 +00:00
|
|
|
|
|
|
|
|
|
(provide 'nnbabyl)
|
|
|
|
|
|
|
|
|
|
;;; nnbabyl.el ends here
|