From: yamaoka Date: Mon, 28 Apr 2003 07:51:59 +0000 (+0000) Subject: T-gnus 6.15.20 (quimby) revision 00. X-Git-Tag: t-gnus-6_15_20-00-quimby X-Git-Url: http://git.chise.org/gitweb/?a=commitdiff_plain;h=16559d76eac607130d0ce87348f566ea0eab288e;p=elisp%2Fgnus.git- T-gnus 6.15.20 (quimby) revision 00. --- diff --git a/ChangeLog b/ChangeLog index d58004f..e7188a4 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,11 @@ +2003-04-28 Katsumi Yamaoka + + * lisp/gnus-vers.el: T-gnus 6.15.20 (quimby) revision 00. + +2003-04-28 Katsumi Yamaoka + + * lisp/gnus-vers.el: T-gnus 6.15.19 revision 00. + 2003-04-24 Katsumi Yamaoka * lisp/nnheader.el (nnheader-coding-system-p): New function. diff --git a/README.T-gnus b/README.T-gnus index a4cda91..d049d74 100644 --- a/README.T-gnus +++ b/README.T-gnus @@ -33,5 +33,5 @@ NEWS: * T-gnus 6.15 - this is based on Oort Gnus. - The latest T-gnus is T-gnus 6.15.19 (based on Oort Gnus 0.19). It + The latest T-gnus is T-gnus 6.15.20 (based on Oort Gnus 0.20). It requires SEMI 1.14, FLIM 1.14, and APEL 10.0 or later. diff --git a/README.semi b/README.semi index c3a19e6..09f663d 100644 --- a/README.semi +++ b/README.semi @@ -4,7 +4,7 @@ What is T-gnus? =============== T-gnus is an improvement of Gnus with SEMI's MIME feature. T-gnus -6.15 is based on Oort Gnus v0.19. SEMI may stand for "SEMI is Emacs +6.15 is based on Oort Gnus v0.20. SEMI may stand for "SEMI is Emacs MIME Interface" and is developped to provide an easy interfaces for users to handle MIME message structures. For further information, refer to REASME.en of SEMI. diff --git a/README.semi.ja b/README.semi.ja index 3e6a8a2..7309983 100644 --- a/README.semi.ja +++ b/README.semi.ja @@ -4,7 +4,7 @@ T-gnus $B$H$O!)(B ============= T-gnus $B$O!"(BSEMI $B$rMxMQ$7$F(B Gnus $B$K(B MIME $B5!G=$rDI2C$9$k$b$N$G$9!#(B -T-gnus 6.15 $B$O(B Oort Gnus v0.19 $B$r%Y!<%9$K$7$F$$$^$9!#(BSEMI $B$O(B Emacs $B$G(B +T-gnus 6.15 $B$O(B Oort Gnus v0.20 $B$r%Y!<%9$K$7$F$$$^$9!#(BSEMI $B$O(B Emacs $B$G(B MIME $B$r;H$($k$h$&$K$9$k$b$N$G!"(BMIME message $B$N9=J8$N9=B$$HMxMQ\$7$/$O!"(BSEMI $B$N(B README.en $B$r;2>H(B $B$7$F$/$@$5$$!#(B diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 123475d..456039c 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,58 @@ +2003-04-27 Lars Magne Ingebrigtsen + + * gnus.el (gnus-version-number): Bump. + +2003-04-27 06:47:31 Lars Magne Ingebrigtsen + + * gnus.el: Oort Gnus v0.19 is released. + +2003-04-27 Kevin Greiner + + * gnus-registry.el (gnus-register-spool-action): Replaced literal + carriage-return character with its escape sequence. + +2003-04-27 Lars Magne Ingebrigtsen + + * gnus-sum.el (gnus-summary-catchup-from-here): Doc fix. + + * nnrss.el (nnrss-node-text): Use only one + gnus-replace-in-string. + + * gnus.el: Remove gnus-functionp throughout. + + * gnus-util.el (gnus-functionp): Removed. + + * gnus-msg.el (gnus-summary-wide-reply-with-original): Doc fix. + + * message.el (message-required-headers): Add In-Reply-To. + +2003-04-27 Marshall T. Vandegrift + + * gnus-fun.el (gnus-face-from-file): Bind coding-system-for-read + to binary. + +2003-04-27 Jesper Harder + + * mml.el (mml-preview): do. + + * message.el (message-mode): do. + + * gnus-undo.el (gnus-undo-mode): do. + + * gnus-topic.el (gnus-topic-mode): do. + + * gnus-sum.el (gnus-summary-mode, gnus-summary-edit-article): do. + + * gnus-msg.el (gnus-setup-message) + (gnus-inews-add-send-actions, gnus-configure-posting-styles): do. + + * gnus-gl.el (gnus-grouplens-mode): do. + + * gnus-art.el (gnus-mime-save-part-and-strip) + (gnus-mime-delete-part): Use it. + + * gnus-util.el (gnus-make-local-hook): New function. + 2003-04-25 Simon Josefsson * nnrss.el (nnrss-node-text): Don't use a star. diff --git a/lisp/gnus-agent.el b/lisp/gnus-agent.el index c21cf21..29ae24c 100644 --- a/lisp/gnus-agent.el +++ b/lisp/gnus-agent.el @@ -2392,7 +2392,7 @@ The following commands are available: (cond ;; Functions are just returned as is. ((or (symbolp predicate) - (gnus-functionp predicate)) + (functionp predicate)) `(,(or (cdr (assq predicate gnus-category-predicate-alist)) predicate))) ;; More complex predicate. @@ -2429,7 +2429,7 @@ return only unread articles." nil) ((not function) nil) - ((gnus-functionp function) + ((functionp function) 'ignore) ((memq (car function) '(or and not)) (apply (car function) diff --git a/lisp/gnus-art.el b/lisp/gnus-art.el index 8b3cd24..a714507 100644 --- a/lisp/gnus-art.el +++ b/lisp/gnus-art.el @@ -2178,7 +2178,7 @@ unfolded." ;; We display the face. (if (symbolp gnus-article-x-face-command) ;; The command is a lisp function, so we call it. - (if (gnus-functionp gnus-article-x-face-command) + (if (functionp gnus-article-x-face-command) (funcall gnus-article-x-face-command face) (error "%s is not a function" gnus-article-x-face-command)) ;; The command is a string, so we interpret the command @@ -2442,7 +2442,7 @@ If READ-CHARSET, ask for a coding system." (when entry (setq func (cdr entry))) (cond - ((gnus-functionp func) + ((functionp func) (funcall func)) (t (apply (car func) (cdr func)))))))))) @@ -2731,7 +2731,7 @@ Point is left at the beginning of the narrowed-to region." (< (- (point-max) (point)) limit)) (and (floatp limit) (< (count-lines (point) (point-max)) limit)) - (and (gnus-functionp limit) + (and (functionp limit) (funcall limit)) (and (stringp limit) (not (re-search-forward limit nil t)))) @@ -2944,7 +2944,7 @@ should replace the \"Date:\" one, or should be added below it." gnus-article-time-format) (error nil)) gnus-article-time-format))) - (if (gnus-functionp format) + (if (functionp format) (funcall format time) (concat "Date: " (format-time-string format time))))) ;; ISO 8601. @@ -4293,9 +4293,7 @@ General format specifiers can also be used. See Info node (let ((mbl1 mml-buffer-list)) (setq mml-buffer-list mbl) (set (make-local-variable 'mml-buffer-list) mbl1)) - ;; LOCAL argument of add-hook differs between GNU Emacs - ;; and XEmacs. make-local-hook makes sure they are local. - (make-local-hook 'kill-buffer-hook) + (gnus-make-local-hook 'kill-buffer-hook) (add-hook 'kill-buffer-hook 'mml-destroy-buffers t t))) `(lambda (no-highlight) (let ((mail-parse-charset (or gnus-article-charset @@ -4373,9 +4371,7 @@ Replace it with some information about the removed part." (let ((mbl1 mml-buffer-list)) (setq mml-buffer-list mbl) (set (make-local-variable 'mml-buffer-list) mbl1)) - ;; LOCAL argument of add-hook differs between GNU Emacs - ;; and XEmacs. make-local-hook makes sure they are local. - (make-local-hook 'kill-buffer-hook) + (gnus-make-local-hook 'kill-buffer-hook) (add-hook 'kill-buffer-hook 'mml-destroy-buffers t t))) `(lambda (no-highlight) (let ((mail-parse-charset (or gnus-article-charset diff --git a/lisp/gnus-fun.el b/lisp/gnus-fun.el index f906dec..8791640 100644 --- a/lisp/gnus-fun.el +++ b/lisp/gnus-fun.el @@ -111,10 +111,11 @@ Output to the current buffer, replace text, and don't mingle error." (while (and (not done) (> quant 1)) (setq attempt - (gnus-shell-command-to-string - (format gnus-convert-image-to-face-command - (shell-quote-argument (expand-file-name file)) - quant))) + (let ((coding-system-for-read 'binary)) + (gnus-shell-command-to-string + (format gnus-convert-image-to-face-command + (shell-quote-argument (expand-file-name file)) + quant)))) (if (> (length attempt) 726) (progn (setq quant (- quant 2)) diff --git a/lisp/gnus-gl.el b/lisp/gnus-gl.el index b17e1b2..c176ffd 100644 --- a/lisp/gnus-gl.el +++ b/lisp/gnus-gl.el @@ -811,9 +811,9 @@ If prefix argument ALL is non-nil, all articles are marked as read." (if (null arg) (not gnus-grouplens-mode) (> (prefix-numeric-value arg) 0))) (when gnus-grouplens-mode - (make-local-hook 'gnus-select-article-hook) + (gnus-make-local-hook 'gnus-select-article-hook) (add-hook 'gnus-select-article-hook 'grouplens-do-time nil 'local) - (make-local-hook 'gnus-exit-group-hook) + (gnus-make-local-hook 'gnus-exit-group-hook) (add-hook 'gnus-exit-group-hook 'bbb-exit-group nil 'local) (make-local-variable 'gnus-score-find-score-files-function) diff --git a/lisp/gnus-kill.el b/lisp/gnus-kill.el index 41965a9..b7329bd 100644 --- a/lisp/gnus-kill.el +++ b/lisp/gnus-kill.el @@ -598,7 +598,7 @@ COMMAND must be a lisp expression or a string representing a key sequence." (setq did-kill (string-match regexp value))) (cond ((stringp form) ;Keyboard macro. (execute-kbd-macro form)) - ((gnus-functionp form) + ((functionp form) (funcall form)) (t (eval form))))) @@ -617,7 +617,7 @@ COMMAND must be a lisp expression or a string representing a key sequence." (setq did-kill (re-search-forward regexp nil t))) (cond ((stringp form) ;Keyboard macro. (execute-kbd-macro form)) - ((gnus-functionp form) + ((functionp form) (funcall form)) (t (eval form))))))) diff --git a/lisp/gnus-msg.el b/lisp/gnus-msg.el index 303655a..6d2e1b0 100644 --- a/lisp/gnus-msg.el +++ b/lisp/gnus-msg.el @@ -542,7 +542,7 @@ Gcc: header for archiving purposes." (while (setq elem (pop alist)) (when (or (and (stringp (car elem)) (string-match (car elem) group)) - (and (gnus-functionp (car elem)) + (and (functionp (car elem)) (funcall (car elem) group)) (and (symbolp (car elem)) (symbol-value (car elem)))) @@ -550,11 +550,11 @@ Gcc: header for archiving purposes." (defun gnus-inews-add-send-actions (winconf buffer article &optional config yanked) - (make-local-hook 'message-sent-hook) + (gnus-make-local-hook 'message-sent-hook) (add-hook 'message-sent-hook (if gnus-agent 'gnus-agent-possibly-do-gcc 'gnus-inews-do-gcc) nil t) (when gnus-agent - (make-local-hook 'message-header-hook) + (gnus-make-local-hook 'message-header-hook) (add-hook 'message-header-hook 'gnus-agent-possibly-save-gcc nil t)) (setq message-post-method `(lambda (arg) @@ -1321,7 +1321,8 @@ automatically." (defun gnus-summary-wide-reply-with-original (n) "Start composing a wide reply mail to the current message. -The original article will be yanked." +The original article will be yanked. +Uses the process/prefix convention." (interactive "P") (gnus-summary-reply-with-original n t)) @@ -1881,7 +1882,7 @@ this is a reply." (message-narrow-to-headers) (let* ((group gnus-outgoing-message-group) (gcc (cond - ((gnus-functionp group) + ((functionp group) (funcall group)) ((or (stringp group) (list group)) group)))) @@ -1922,7 +1923,7 @@ this is a reply." ((and (listp var) (stringp (car var))) ;; A list of groups. var) - ((gnus-functionp var) + ((functionp var) ;; A function. (funcall var group)) (t @@ -1935,7 +1936,7 @@ this is a reply." ;; Regexp. (when (string-match (caar var) group) (cdar var))) - ((gnus-functionp (car var)) + ((functionp (car var)) ;; Function. (funcall (car var) group)) (t @@ -2020,9 +2021,9 @@ this is a reply." (and header (string-match (pop style) header)))))) ((or (symbolp match) - (gnus-functionp match)) + (functionp match)) (cond - ((gnus-functionp match) + ((functionp match) ;; Function to be called. (funcall match)) ((boundp match) @@ -2049,8 +2050,7 @@ this is a reply." (setq name (assq 'name results) address (assq 'address results)) (setq results (delq name (delq address results))) - ;; make-local-hook is not obsolete in Emacs 20 or XEmacs. - (make-local-hook 'message-setup-hook) + (gnus-make-local-hook 'message-setup-hook) (setq results (sort results (lambda (x y) (string-lessp (car x) (car y))))) (dolist (result results) @@ -2125,8 +2125,8 @@ this is a reply." ((stringp value) value) ((or (symbolp value) - (gnus-functionp value)) - (cond ((gnus-functionp value) + (functionp value)) + (cond ((functionp value) (funcall value)) ((boundp value) (symbol-value value)))) diff --git a/lisp/gnus-registry.el b/lisp/gnus-registry.el index 401663f..9d16500 100644 --- a/lisp/gnus-registry.el +++ b/lisp/gnus-registry.el @@ -106,7 +106,7 @@ The group names are matched, they don't have to be fully qualified." ;; do not process the draft IDs ; (unless (string-match "totally-fudged-out-message-id" id) (let ((group (gnus-group-guess-full-name group))) - (when (string-match " $" id) + (when (string-match "\r$" id) (setq id (substring id 0 -1))) (gnus-message 5 "Registry: article %s spooled to %s" id diff --git a/lisp/gnus-score.el b/lisp/gnus-score.el index f514d7f..865ecdc 100644 --- a/lisp/gnus-score.el +++ b/lisp/gnus-score.el @@ -2811,7 +2811,7 @@ The list is determined from the variable `gnus-score-file-alist'." ;; Go through all the functions for finding score files (or actual ;; scores) and add them to a list. (while funcs - (when (gnus-functionp (car funcs)) + (when (functionp (car funcs)) (setq score-files (append score-files (nreverse (funcall (car funcs) group))))) @@ -2914,7 +2914,7 @@ If ADAPT, return the home adaptive file instead." ((stringp elem) elem) ;; Function. - ((gnus-functionp elem) + ((functionp elem) (funcall elem group)) ;; Regexp-file cons. ((consp elem) diff --git a/lisp/gnus-start.el b/lisp/gnus-start.el index a687aaf..bee9b60 100644 --- a/lisp/gnus-start.el +++ b/lisp/gnus-start.el @@ -1038,7 +1038,7 @@ If LEVEL is non-nil, the news will be set up at level LEVEL." "Call METHOD to subscribe GROUP. If no function returns `non-nil', call `gnus-subscribe-zombies'." (unless (cond - ((gnus-functionp method) + ((functionp method) (funcall method group)) ((listp method) (catch 'found diff --git a/lisp/gnus-sum.el b/lisp/gnus-sum.el index 162d7a3..7035aa3 100644 --- a/lisp/gnus-sum.el +++ b/lisp/gnus-sum.el @@ -2664,7 +2664,7 @@ The following commands are available: (make-local-variable 'gnus-summary-dummy-line-format) (make-local-variable 'gnus-summary-dummy-line-format-spec) (make-local-variable 'gnus-summary-mark-positions) - (make-local-hook 'pre-command-hook) + (gnus-make-local-hook 'pre-command-hook) (add-hook 'pre-command-hook 'gnus-set-global-variables nil t) (gnus-run-hooks 'gnus-summary-mode-hook) (turn-on-gnus-mailing-list-mode) @@ -3621,7 +3621,7 @@ If SHOW-ALL is non-nil, already read articles are also listed." ((eq gnus-auto-select-subject 'first) ;; Do nothing. ) - ((gnus-functionp gnus-auto-select-subject) + ((functionp gnus-auto-select-subject) (funcall gnus-auto-select-subject)))) (defun gnus-summary-prepare () @@ -8657,8 +8657,8 @@ If ARG (the prefix) is a number, show the article with the charset defined in `gnus-summary-show-article-charset-alist', or the charset input. If ARG (the prefix) is non-nil and not a number, show the raw article -without any article massaging functions being run. Normally, the key strokes -are `C-u g'." +without any article massaging functions being run. Normally, the key +strokes are `C-u g'." (interactive "P") (cond ((numberp arg) @@ -10263,7 +10263,7 @@ If ALL is non-nil, also mark ticked and dormant articles as read." (gnus-summary-position-point)) (defun gnus-summary-catchup-from-here (&optional all) - "Mark all unticked articles after the current one as read. + "Mark all unticked articles after (and including) the current one as read. If ALL is non-nil, also mark ticked and dormant articles as read." (interactive "P") (save-excursion @@ -10480,7 +10480,7 @@ Returns nil if no thread was there to be shown." gnus-thread-hide-subtree) (gnus-summary-hide-all-threads (if (or (consp gnus-thread-hide-subtree) - (gnus-functionp gnus-thread-hide-subtree)) + (functionp gnus-thread-hide-subtree)) (gnus-make-predicate gnus-thread-hide-subtree) nil)))) @@ -10896,7 +10896,7 @@ save those articles instead." ;; Regular expression. (ignore-errors (re-search-forward match nil t))) - ((gnus-functionp match) + ((functionp match) ;; Function. (save-restriction (widen) diff --git a/lisp/gnus-topic.el b/lisp/gnus-topic.el index d2879d9..07d501c 100644 --- a/lisp/gnus-topic.el +++ b/lisp/gnus-topic.el @@ -1154,7 +1154,7 @@ articles in the topic and its subtopics." 'gnus-group-sort-topic) (setq gnus-group-change-level-function 'gnus-topic-change-level) (setq gnus-goto-missing-group-function 'gnus-topic-goto-missing-group) - (make-local-hook 'gnus-check-bogus-groups-hook) + (gnus-make-local-hook 'gnus-check-bogus-groups-hook) (add-hook 'gnus-check-bogus-groups-hook 'gnus-topic-clean-alist nil 'local) (setq gnus-topology-checked-p nil) diff --git a/lisp/gnus-undo.el b/lisp/gnus-undo.el index 7dd333f..cbd506a 100644 --- a/lisp/gnus-undo.el +++ b/lisp/gnus-undo.el @@ -114,7 +114,7 @@ (when (gnus-visual-p 'undo-menu 'menu) (gnus-undo-make-menu-bar)) (gnus-add-minor-mode 'gnus-undo-mode "" gnus-undo-mode-map) - (make-local-hook 'post-command-hook) + (gnus-make-local-hook 'post-command-hook) (add-hook 'post-command-hook 'gnus-undo-boundary nil t) (gnus-run-hooks 'gnus-undo-mode-hook))) diff --git a/lisp/gnus-util.el b/lisp/gnus-util.el index 9868aea..30d17c1 100644 --- a/lisp/gnus-util.el +++ b/lisp/gnus-util.el @@ -117,14 +117,6 @@ (substring str 0 width) str)) -;; Fixme: This is incomplete, but why not just use functionp? In -;; fact, that is used in various places. -(defsubst gnus-functionp (form) - "Return non-nil if FORM is funcallable." - (or (and (symbolp form) (fboundp form)) - (and (listp form) (eq (car form) 'lambda)) - (byte-code-function-p form))) - (defsubst gnus-goto-char (point) (and point (goto-char point))) @@ -163,6 +155,16 @@ (goto-char p)))) )) +;; The LOCAL arg to `add-hook' is interpreted differently in Emacs and +;; XEmacs. In Emacs we don't need to call `make-local-hook' first. +;; It's harmless, though, so the main purpose of this alias is to shut +;; up the byte compiler. +(defalias 'gnus-make-local-hook + (if (eq (get 'make-local-hook 'byte-compile) + 'byte-compile-obsolete) + 'ignore ; Emacs + 'make-local-hook)) ; XEmacs + (defun gnus-delete-first (elt list) "Delete by side effect the first occurrence of ELT as a member of LIST." (if (equal (car list) elt) @@ -612,7 +614,7 @@ If N, return the Nth ancestor instead." "Return a composite sort condition based on the functions in FUNC." (cond ;; Just a simple function. - ((gnus-functionp funs) funs) + ((functionp funs) funs) ;; No functions at all. ((null funs) funs) ;; A list of functions. @@ -637,7 +639,7 @@ If N, return the Nth ancestor instead." (setq function (cadr function) first 't2 last 't1)) - ((gnus-functionp function) + ((functionp function) ;; Do nothing. ) (t diff --git a/lisp/gnus-vers.el b/lisp/gnus-vers.el index dc7dc6f..6e77706 100644 --- a/lisp/gnus-vers.el +++ b/lisp/gnus-vers.el @@ -40,10 +40,10 @@ ;; Product information of this gnus. (product-provide 'gnus-vers (product-define "T-gnus" nil - (list 6 15 19 + (list 6 15 20 (string-to-number gnus-revision-number)))) -(defconst gnus-original-version-number "0.19" +(defconst gnus-original-version-number "0.20" "Version number for this version of Gnus.") (provide 'running-pterodactyl-gnus-0_73-or-later) diff --git a/lisp/gnus-win.el b/lisp/gnus-win.el index f95e52e..0d578d7 100644 --- a/lisp/gnus-win.el +++ b/lisp/gnus-win.el @@ -305,7 +305,7 @@ See the Gnus manual for an explanation of the syntax used.") ;; The SPLIT might be something that is to be evaled to ;; return a new SPLIT. (while (and (not (assq (car split) gnus-window-to-buffer)) - (gnus-functionp (car split))) + (functionp (car split))) (setq split (eval split))) (let* ((type (car split)) (subs (cddr split)) @@ -368,7 +368,7 @@ See the Gnus manual for an explanation of the syntax used.") (while subs (setq sub (append (pop subs) nil)) (while (and (not (assq (car sub) gnus-window-to-buffer)) - (gnus-functionp (car sub))) + (functionp (car sub))) (setq sub (eval sub))) (when sub (push sub comp-subs) @@ -507,7 +507,7 @@ should have point." ;; The SPLIT might be something that is to be evaled to ;; return a new SPLIT. (while (and (not (assq (car split) gnus-window-to-buffer)) - (gnus-functionp (car split))) + (functionp (car split))) (setq split (eval split))) (setq type (elt split 0)) diff --git a/lisp/message.el b/lisp/message.el index 312d9a9..8d26869 100644 --- a/lisp/message.el +++ b/lisp/message.el @@ -346,7 +346,8 @@ Checks include `subject-cmsg', `multiple-headers', `sendsys', :group 'message-news :type '(repeat sexp)) ; Fixme: improve this -(defcustom message-required-headers '((optional . References) From) +(defcustom message-required-headers '((optional . References) + From (optional . In-Reply-To)) "*Headers to be generated or prompted for when sending a message. Also see `message-required-news-headers' and `message-required-mail-headers'." @@ -1670,6 +1671,7 @@ no, only reply back to the author." (autoload 'gnus-groups-from-server "gnus") (autoload 'rmail-output "rmailout") (autoload 'gnus-delay-article "gnus-delay") + (autoload 'gnus-make-local-hook "gnus-util") (autoload 'mu-cite-original "mu-cite")) @@ -2588,9 +2590,7 @@ M-RET `message-newline-and-reformat' (break the line and reformat)." (set (make-local-variable 'tool-bar-map) (message-tool-bar-map)))) (easy-menu-add message-mode-menu message-mode-map) (easy-menu-add message-mode-field-menu message-mode-map) - ;; make-local-hook is harmless though obsolete in Emacs 21. - ;; Emacs 20 and XEmacs need make-local-hook. - (make-local-hook 'after-change-functions) + (gnus-make-local-hook 'after-change-functions) ;; Mmmm... Forbidden properties... (add-hook 'after-change-functions 'message-strip-forbidden-properties nil 'local) diff --git a/lisp/mm-view.el b/lisp/mm-view.el index 2a6f9ed..e80fb68 100644 --- a/lisp/mm-view.el +++ b/lisp/mm-view.el @@ -327,7 +327,7 @@ map."))) (if entry (setq func (cdr entry))) (cond - ((gnus-functionp func) + ((functionp func) (funcall func handle)) (t (apply (car func) handle (cdr func)))))) diff --git a/lisp/mml.el b/lisp/mml.el index 4bc96eb..8b865dc 100644 --- a/lisp/mml.el +++ b/lisp/mml.el @@ -35,6 +35,7 @@ (autoload 'message-make-message-id "message") (autoload 'gnus-setup-posting-charset "gnus-msg") (autoload 'gnus-add-minor-mode "gnus-ems") + (autoload 'gnus-make-local-hook "gnus-util") (autoload 'message-fetch-field "message") (autoload 'fill-flowed-encode "flow-fill") (autoload 'message-posting-charset "message")) @@ -1070,7 +1071,7 @@ If RAW, don't highlight the article." (gnus-article-prepare-display)))) ;; Disable article-mode-map. (use-local-map nil) - (make-local-hook 'kill-buffer-hook) + (gnus-make-local-hook 'kill-buffer-hook) (add-hook 'kill-buffer-hook (lambda () (mm-destroy-parts gnus-article-mime-handles)) nil t) diff --git a/lisp/nnrss.el b/lisp/nnrss.el index 5cc9069..23d5fc1 100644 --- a/lisp/nnrss.el +++ b/lisp/nnrss.el @@ -405,7 +405,8 @@ ARTICLE is the article number of the current headline.") ;;; Snarf functions (defun nnrss-check-group (group server) - (let (file xml subject url extra changed author date rss-ns rdf-ns content-ns dc-ns) + (let (file xml subject url extra changed author + date rss-ns rdf-ns content-ns dc-ns) (if (and nnrss-use-local (file-exists-p (setq file (expand-file-name (nnrss-translate-file-chars @@ -416,7 +417,9 @@ ARTICLE is the article number of the current headline.") (second (assoc group nnrss-group-alist)))) (unless url (setq url - (nnrss-discover-feed (read-string (format "URL to search for %s: " group) "http://"))) + (nnrss-discover-feed + (read-string + (format "URL to search for %s: " group) "http://"))) (let ((pair (assoc group nnrss-server-data))) (if pair (setcdr (cdr pair) (list url)) @@ -514,16 +517,13 @@ It is useful when `(setq nnrss-use-local t)'." (gnus-replace-in-string (nnrss-string-as-multibyte string) " *\n *" " ")) (defun nnrss-node-text (namespace local-name element) - (let* ((node (assq (intern (concat namespace (symbol-name local-name))) element)) + (let* ((node (assq (intern (concat namespace (symbol-name local-name))) + element)) (text (if (and node (listp node)) (nnrss-node-just-text node) node)) (cleaned-text (if text (gnus-replace-in-string - (gnus-replace-in-string - (gnus-replace-in-string - text "^[[:cntrl:]]+" "") - "^ +" "") - " +$" "")))) + text "^[[:cntrl:]]+\\|^ +\\| +$" "")))) (if (string-equal "" cleaned-text) nil cleaned-text))) diff --git a/texi/ChangeLog b/texi/ChangeLog index 638785c..164a4a9 100644 --- a/texi/ChangeLog +++ b/texi/ChangeLog @@ -1,3 +1,22 @@ +2003-04-27 Jesper Harder + + * message.texi, gnus.texi: Use the second arg to @uref where it + makes sense to make HTML and PDF output look nicer. + +2003-04-26 Jesper Harder + + * gnus-faq.texi: Make it compile in the LaTeX version. Remove + redundant entries in @urefs. + (FAQ - Glossary): Remove the final @bye since it breaks the Gnus + manual. + ([1.2]): @subsection -> @subheading. + + * texi2latex.el (latexi-translate-file): Support @r, @env, + @heading, @subheading, @TeX. + + * gnus.texi, message.texi, emacs-mime.texi: Markup improvements + and fixes. + 2003-04-24 Reiner Steib * gnus.texi (Selecting a Group): Add gnus-large-ephemeral-newsgroup. diff --git a/texi/emacs-mime.texi b/texi/emacs-mime.texi index af9f610..40b91b1 100644 --- a/texi/emacs-mime.texi +++ b/texi/emacs-mime.texi @@ -76,24 +76,24 @@ license to the document, as described in section 6 of the license. @top Emacs MIME This manual documents the libraries used to compose and display -@sc{mime} messages. +@acronym{MIME} messages. This manual is directed at users who want to modify the behaviour of -the @sc{mime} encoding/decoding process or want a more detailed -picture of how the Emacs @sc{mime} library works, and people who want -to write functions and commands that manipulate @sc{mime} elements. +the @acronym{MIME} encoding/decoding process or want a more detailed +picture of how the Emacs @acronym{MIME} library works, and people who want +to write functions and commands that manipulate @acronym{MIME} elements. -@sc{mime} is short for @dfn{Multipurpose Internet Mail Extensions}. +@acronym{MIME} is short for @dfn{Multipurpose Internet Mail Extensions}. This standard is documented in a number of RFCs; mainly RFC2045 (Format of Internet Message Bodies), RFC2046 (Media Types), RFC2047 (Message -Header Extensions for Non-ASCII Text), RFC2048 (Registration +Header Extensions for Non-@acronym{ASCII} Text), RFC2048 (Registration Procedures), RFC2049 (Conformance Criteria and Examples). It is highly -recommended that anyone who intends writing @sc{mime}-compliant software +recommended that anyone who intends writing @acronym{MIME}-compliant software read at least RFC2045 and RFC2047. @menu * Decoding and Viewing:: A framework for decoding and viewing. -* Composing:: MML; a language for describing @sc{mime} parts. +* Composing:: MML; a language for describing @acronym{MIME} parts. * Interface Functions:: An abstraction over the basic functions. * Basic Functions:: Utility and basic parsing functions. * Standards:: A summary of RFCs and working documents used. @@ -104,16 +104,16 @@ read at least RFC2045 and RFC2047. @node Decoding and Viewing @chapter Decoding and Viewing -This chapter deals with decoding and viewing @sc{mime} messages on a +This chapter deals with decoding and viewing @acronym{MIME} messages on a higher level. -The main idea is to first analyze a @sc{mime} article, and then allow +The main idea is to first analyze a @acronym{MIME} article, and then allow other programs to do things based on the list of @dfn{handles} that are returned as a result of this analysis. @menu -* Dissection:: Analyzing a @sc{mime} message. -* Non-MIME:: Analyzing a non-@sc{mime} message. +* Dissection:: Analyzing a @acronym{MIME} message. +* Non-MIME:: Analyzing a non-@acronym{MIME} message. * Handles:: Handle manipulations. * Display:: Displaying handles. * Display Customization:: Variables that affect display. @@ -126,15 +126,15 @@ returned as a result of this analysis. @section Dissection The @code{mm-dissect-buffer} is the function responsible for dissecting -a @sc{mime} article. If given a multipart message, it will recursively +a @acronym{MIME} article. If given a multipart message, it will recursively descend the message, following the structure, and return a tree of -@sc{mime} handles that describes the structure of the message. +@acronym{MIME} handles that describes the structure of the message. @node Non-MIME @section Non-MIME @vindex mm-uu-configure-list -Gnus also understands some non-@sc{mime} attachments, such as +Gnus also understands some non-@acronym{MIME} attachments, such as postscript, uuencode, binhex, yenc, shar, forward, gnatsweb, pgp, diff. Each of these features can be disabled by add an item into @code{mm-uu-configure-list}. For example, @@ -167,7 +167,7 @@ Shar archive file. @item forward @findex forward -Non-@sc{mime} forwarded message. +Non-@acronym{MIME} forwarded message. @item gnatsweb @findex gnatsweb @@ -175,15 +175,15 @@ Gnatsweb attachment. @item pgp-signed @findex pgp-signed -PGP signed clear text. +@acronym{PGP} signed clear text. @item pgp-encrypted @findex pgp-encrypted -PGP encrypted clear text. +@acronym{PGP} encrypted clear text. @item pgp-key @findex pgp-key -PGP public keys. +@acronym{PGP} public keys. @item emacs-sources @findex emacs-sources @@ -203,7 +203,7 @@ are automatically sent to. It only works in groups matching @node Handles @section Handles -A @sc{mime} handle is a list that fully describes a @sc{mime} +A @acronym{MIME} handle is a list that fully describes a @acronym{MIME} component. The following macros can be used to access elements in a handle: @@ -211,7 +211,7 @@ The following macros can be used to access elements in a handle: @table @code @item mm-handle-buffer @findex mm-handle-buffer -Return the buffer that holds the contents of the undecoded @sc{mime} +Return the buffer that holds the contents of the undecoded @acronym{MIME} part. @item mm-handle-type @@ -261,11 +261,11 @@ Remove the part (if it has been displayed). @item mm-inlinable-p @findex mm-inlinable-p -Say whether a @sc{mime} type can be displayed inline. +Say whether a @acronym{MIME} type can be displayed inline. @item mm-automatic-display-p @findex mm-automatic-display-p -Say whether a @sc{mime} type should be displayed automatically. +Say whether a @acronym{MIME} type should be displayed automatically. @item mm-destroy-part @findex mm-destroy-part @@ -293,7 +293,7 @@ Prompt for a mailcap method to use to view the part. @item mm-inline-media-tests @vindex mm-inline-media-tests -This is an alist where the key is a @sc{mime} type, the second element +This is an alist where the key is a @acronym{MIME} type, the second element is a function to display the part @dfn{inline} (i.e., inside Emacs), and the third element is a form to be @code{eval}ed to say whether the part can be displayed inline. @@ -306,7 +306,7 @@ and, if so, how to do it. It does not say whether parts are @vindex mm-inlined-types This, on the other hand, says what types are to be displayed inline, if they satisfy the conditions set by the variable above. It's a list of -@sc{mime} media types. +@acronym{MIME} media types. @item mm-automatic-display @vindex mm-automatic-display @@ -326,14 +326,14 @@ be killed when selecting a different article. @item mm-attachment-override-types @vindex mm-attachment-override-types -Some @sc{mime} agents create parts that have a content-disposition of +Some @acronym{MIME} agents create parts that have a content-disposition of @samp{attachment}. This variable allows overriding that disposition and displaying the part inline. (Note that the disposition is only overridden if we are able to, and want to, display the part inline.) @item mm-discouraged-alternatives @vindex mm-discouraged-alternatives -List of @sc{mime} types that are discouraged when viewing +List of @acronym{MIME} types that are discouraged when viewing @samp{multipart/alternative}. Viewing agents are supposed to view the last possible part of a message, as that is supposed to be the richest. However, users may prefer other types instead, and this list says what @@ -371,17 +371,17 @@ variable will cause @samp{text/html} parts to be treated as attachments. @item mm-text-html-renderer @vindex mm-text-html-renderer -This selects the function used to render @sc{html}. The predefined +This selects the function used to render @acronym{HTML}. The predefined renderers are selected by the symbols @code{w3}, @code{w3m}@footnote{See @uref{http://emacs-w3m.namazu.org/} for more information about emacs-w3m}, @code{links}, @code{lynx}, @code{w3m-standalone} or @code{html2text}. If @code{nil} use an external viewer. You can also specify a function, which will be -called with a @sc{mime} handle as the argument. +called with a @acronym{MIME} handle as the argument. @item mm-inline-text-html-with-images @vindex mm-inline-text-html-with-images -Some @sc{html} mails might have the trick of spammers using +Some @acronym{HTML} mails might have the trick of spammers using @samp{} tags. It is likely to be intended to verify whether you have read the mail. You can prevent your personal informations from leaking by setting this option to @code{nil} (which is the default). @@ -394,9 +394,9 @@ or @kbd{I} instead.} @item mm-w3m-safe-url-regexp @vindex mm-w3m-safe-url-regexp A regular expression that matches safe URL names, i.e. URLs that are -unlikely to leak personal information when rendering @sc{html} email -(the default value is @samp{\\`cid:}). If @code{nil} consider all -URLs safe. +unlikely to leak personal information when rendering @acronym{HTML} +email (the default value is @samp{\\`cid:}). If @code{nil} consider +all URLs safe. @item mm-inline-text-html-with-w3m-keymap @vindex mm-inline-text-html-with-w3m-keymap @@ -425,7 +425,7 @@ Directory for storing temporary files. @item mm-file-name-rewrite-functions @vindex mm-file-name-rewrite-functions -A list of functions used for rewriting file names of @sc{mime} +A list of functions used for rewriting file names of @acronym{MIME} parts. Each function is applied successively to the file name. Ready-made functions include @@ -456,7 +456,7 @@ The standard Emacs functions @code{capitalize}, @code{downcase}, @item mm-path-name-rewrite-functions @vindex mm-path-name-rewrite-functions -List of functions used for rewriting the full file names of @sc{mime} +List of functions used for rewriting the full file names of @acronym{MIME} parts. This is used when viewing parts externally, and is meant for transforming the absolute name so that non-compliant programs can find the file where it's saved. @@ -479,7 +479,7 @@ Here's an example viewer for displaying @code{text/enriched} inline: (mm-insert-inline handle text))) @end lisp -We see that the function takes a @sc{mime} handle as its parameter. It +We see that the function takes a @acronym{MIME} handle as its parameter. It then goes to a temporary buffer, inserts the text of the part, does some work on the text, stores the result, goes back to the buffer it was called from and inserts the result. @@ -499,22 +499,22 @@ tell it to insert, but it also sets things up so that the text can be @cindex MML @cindex MIME Meta Language -Creating a @sc{mime} message is boring and non-trivial. Therefore, a +Creating a @acronym{MIME} message is boring and non-trivial. Therefore, a library called @code{mml} has been defined that parses a language called -MML (@sc{mime} Meta Language) and generates @sc{mime} messages. +MML (@acronym{MIME} Meta Language) and generates @acronym{MIME} messages. @findex mml-generate-mime The main interface function is @code{mml-generate-mime}. It will examine the contents of the current (narrowed-to) buffer and return a -string containing the @sc{mime} message. +string containing the @acronym{MIME} message. @menu * Simple MML Example:: An example MML document. * MML Definition:: All valid MML elements. * Advanced MML Example:: Another example MML document. * Encoding Customization:: Variables that affect encoding. -* Charset Translation:: How charsets are mapped from @sc{mule} to @sc{mime}. -* Conversion:: Going from @sc{mime} to MML and vice versa. +* Charset Translation:: How charsets are mapped from @sc{mule} to @acronym{MIME}. +* Conversion:: Going from @acronym{MIME} to MML and vice versa. * Flowed text:: Soft and hard newlines. @end menu @@ -576,12 +576,12 @@ but that's not necessary unless the value contains white space. So The following parameters have meaning in MML; parameters that have no meaning are ignored. The MML parameter names are the same as the -@sc{mime} parameter names; the things in the parentheses say which +@acronym{MIME} parameter names; the things in the parentheses say which header it will be used in. @table @samp @item type -The @sc{mime} type of the part (@code{Content-Type}). +The @acronym{MIME} type of the part (@code{Content-Type}). @item filename Use the contents of the file in the body of the part @@ -705,7 +705,7 @@ This plain text part is an attachment. <#/multipart> @end example -And this is the resulting @sc{mime} message: +And this is the resulting @acronym{MIME} message: @example Content-Type: multipart/mixed; boundary="=-=-=" @@ -778,7 +778,7 @@ This plain text part is an attachment. @item mm-body-charset-encoding-alist @vindex mm-body-charset-encoding-alist -Mapping from @sc{mime} charset to encoding to use. This variable is +Mapping from @acronym{MIME} charset to encoding to use. This variable is usually used except, e.g., when other requirements force a specific encoding (digitally signed messages require 7bit encodings). The default is @@ -810,10 +810,10 @@ basis by using the @code{charset} MML tag (@pxref{MML Definition}). @item mm-content-transfer-encoding-defaults @vindex mm-content-transfer-encoding-defaults -Mapping from @sc{mime} types to encoding to use. This variable is usually +Mapping from @acronym{MIME} types to encoding to use. This variable is usually used except, e.g., when other requirements force a safer encoding (digitally signed messages require 7bit encoding). Besides the normal -@sc{mime} encodings, @code{qp-or-base64} may be used to indicate that for +@acronym{MIME} encodings, @code{qp-or-base64} may be used to indicate that for each case the most efficient of quoted-printable and base64 should be used. You can override this setting on a per-message basis by using the @code{encoding} MML tag (@pxref{MML Definition}). @@ -834,19 +834,19 @@ encoding messages that are to be digitally signed). @section Charset Translation @cindex charsets -During translation from MML to @sc{mime}, for each @sc{mime} part which +During translation from MML to @acronym{MIME}, for each @acronym{MIME} part which has been composed inside Emacs, an appropriate charset has to be chosen. @vindex mail-parse-charset If you are running a non-@sc{mule} Emacs, this process is simple: If the -part contains any non-ASCII (8-bit) characters, the @sc{mime} charset +part contains any non-@acronym{ASCII} (8-bit) characters, the @acronym{MIME} charset given by @code{mail-parse-charset} (a symbol) is used. (Never set this variable directly, though. If you want to change the default charset, please consult the documentation of the package which you use to process -@sc{mime} messages. +@acronym{MIME} messages. @xref{Various Message Variables, , Various Message Variables, message, Message Manual}, for example.) -If there are only ASCII characters, the @sc{mime} charset US-ASCII is +If there are only @acronym{ASCII} characters, the @acronym{MIME} charset US-ASCII is used, of course. @cindex MULE @@ -855,17 +855,17 @@ used, of course. @vindex mm-mime-mule-charset-alist Things are slightly more complicated when running Emacs with @sc{mule} support. In this case, a list of the @sc{mule} charsets used in the -part is obtained, and the @sc{mule} charsets are translated to @sc{mime} +part is obtained, and the @sc{mule} charsets are translated to @acronym{MIME} charsets by consulting the variable @code{mm-mime-mule-charset-alist}. -If this results in a single @sc{mime} charset, this is used to encode -the part. But if the resulting list of @sc{mime} charsets contains more +If this results in a single @acronym{MIME} charset, this is used to encode +the part. But if the resulting list of @acronym{MIME} charsets contains more than one element, two things can happen: If it is possible to encode the part via UTF-8, this charset is used. (For this, Emacs must support the @code{utf-8} coding system, and the part must consist entirely of characters which have Unicode counterparts.) If UTF-8 is not available for some reason, the part is split into several ones, so that each one -can be encoded with a single @sc{mime} charset. The part can only be -split at line boundaries, though---if more than one @sc{mime} charset is +can be encoded with a single @acronym{MIME} charset. The part can only be +split at line boundaries, though---if more than one @acronym{MIME} charset is required to encode a single line, it is not possible to encode the part. When running Emacs with @sc{mule} support, the preferences for which @@ -888,23 +888,23 @@ Customization}). @section Conversion @findex mime-to-mml -A (multipart) @sc{mime} message can be converted to MML with the +A (multipart) @acronym{MIME} message can be converted to MML with the @code{mime-to-mml} function. It works on the message in the current -buffer, and substitutes MML markup for @sc{mime} boundaries. +buffer, and substitutes MML markup for @acronym{MIME} boundaries. Non-textual parts do not have their contents in the buffer, but instead have the contents in separate buffers that are referred to from the MML tags. @findex mml-to-mime -An MML message can be converted back to @sc{mime} by the +An MML message can be converted back to @acronym{MIME} by the @code{mml-to-mime} function. These functions are in certain senses ``lossy''---you will not get back -an identical message if you run @sc{mime-to-mml} and then -@sc{mml-to-mime}. Not only will trivial things like the order of the +an identical message if you run @code{mime-to-mml} and then +@code{mml-to-mime}. Not only will trivial things like the order of the headers differ, but the contents of the headers may also be different. For instance, the original message may use base64 encoding on text, -while @sc{mml-to-mime} may decide to use quoted-printable encoding, and +while @code{mml-to-mime} may decide to use quoted-printable encoding, and so on. In essence, however, these two functions should be the inverse of each @@ -916,7 +916,7 @@ if not identical. @section Flowed text @cindex format=flowed -The Emacs @sc{mime} library will respect the @code{use-hard-newlines} +The Emacs @acronym{MIME} library will respect the @code{use-hard-newlines} variable (@pxref{Hard and Soft Newlines, ,Hard and Soft Newlines, emacs, Emacs Manual}) when encoding a message, and the ``format=flowed'' Content-Type parameter when decoding a message. @@ -946,9 +946,9 @@ low-level libraries that are described in the next chapter. Standards change, and so programs have to change to fit in the new mold. For instance, RFC2045 describes a syntax for the -@code{Content-Type} header that only allows ASCII characters in the +@code{Content-Type} header that only allows @acronym{ASCII} characters in the parameter list. RFC2231 expands on RFC2045 syntax to provide a scheme -for continuation headers and non-ASCII characters. +for continuation headers and non-@acronym{ASCII} characters. The traditional way to deal with this is just to update the library functions to parse the new syntax. However, this is sometimes the wrong @@ -957,7 +957,7 @@ both the old syntax as well as the new syntax, and if there is only one library, one must choose between the old version of the library and the new version of the library. -The Emacs @sc{mime} library takes a different tack. It defines a +The Emacs @acronym{MIME} library takes a different tack. It defines a series of low-level libraries (@file{rfc2047.el}, @file{rfc2231.el} and so on) that parses strictly according to the corresponding standard. However, normal programs would not use the functions @@ -1095,12 +1095,12 @@ Return the value of the field under point. @item mail-encode-encoded-word-region @findex mail-encode-encoded-word-region -Encode the non-ASCII words in the region. For instance, +Encode the non-@acronym{ASCII} words in the region. For instance, @samp{Naïve} is encoded as @samp{=?iso-8859-1?q?Na=EFve?=}. @item mail-encode-encoded-word-buffer @findex mail-encode-encoded-word-buffer -Encode the non-ASCII words in the current buffer. This function is +Encode the non-@acronym{ASCII} words in the current buffer. This function is meant to be called narrowed to the headers of a message. @item mail-encode-encoded-word-string @@ -1163,7 +1163,7 @@ on. High-level functionality is dealt with in the next chapter @node rfc2045 @section rfc2045 -RFC2045 is the ``main'' @sc{mime} document, and as such, one would +RFC2045 is the ``main'' @acronym{MIME} document, and as such, one would imagine that there would be a lot to implement. But there isn't, since most of the implementation details are delegated to the subsequent RFCs. @@ -1274,8 +1274,8 @@ Narrow the buffer to the header section of the current buffer. @node rfc2047 @section rfc2047 -RFC2047 (Message Header Extensions for Non-ASCII Text) specifies how -non-ASCII text in headers are to be encoded. This is actually rather +RFC2047 (Message Header Extensions for Non-@acronym{ASCII} Text) specifies how +non-@acronym{ASCII} text in headers are to be encoded. This is actually rather complicated, so a number of variables are necessary to tweak what this library does. @@ -1356,7 +1356,7 @@ Decode a string and return the results. @node time-date @section time-date -While not really a part of the @sc{mime} library, it is convenient to +While not really a part of the @acronym{MIME} library, it is convenient to document this library here. It deals with parsing @code{Date} headers and manipulating time. (Not by using tesseracts, though, I'm sorry to say.) @@ -1616,11 +1616,11 @@ Decode the encoded text in the region. @cindex HZ @cindex Chinese -RFC1843 deals with mixing Chinese and ASCII characters in messages. In -essence, RFC1843 switches between ASCII and Chinese by doing this: +RFC1843 deals with mixing Chinese and @acronym{ASCII} characters in messages. In +essence, RFC1843 switches between @acronym{ASCII} and Chinese by doing this: @example -This sentence is in ASCII. +This sentence is in @acronym{ASCII}. The next sentence is in GB.~@{<:Ky2;S@{#,NpJ)l6HK!#~@}Bye. @end example @@ -1641,7 +1641,7 @@ Decode a HZ-encoded string and return the result. @node mailcap @section mailcap -The @file{~/.mailcap} file is parsed by most @sc{mime}-aware message +The @file{~/.mailcap} file is parsed by most @acronym{MIME}-aware message handlers and describes how elements are supposed to be displayed. Here's an example file: @@ -1673,7 +1673,7 @@ Interface functions: Parse the @file{~/.mailcap} file. @item mailcap-mime-info -Takes a @sc{mime} type as its argument and returns the matching viewer. +Takes a @acronym{MIME} type as its argument and returns the matching viewer. @end table @@ -1683,7 +1683,7 @@ Takes a @sc{mime} type as its argument and returns the matching viewer. @node Standards @chapter Standards -The Emacs @sc{mime} library implements handling of various elements +The Emacs @acronym{MIME} library implements handling of various elements according to a (somewhat) large number of RFCs, drafts and standards documents. This chapter lists the relevant ones. They can all be fetched from @uref{http://quimby.gnus.org/notes/}. @@ -1703,7 +1703,7 @@ Format of Internet Message Bodies Media Types @item RFC2047 -Message Header Extensions for Non-ASCII Text +Message Header Extensions for Non-@acronym{ASCII} Text @item RFC2048 Registration Procedures @@ -1712,18 +1712,18 @@ Registration Procedures Conformance Criteria and Examples @item RFC2231 -@sc{mime} Parameter Value and Encoded Word Extensions: Character Sets, +@acronym{MIME} Parameter Value and Encoded Word Extensions: Character Sets, Languages, and Continuations @item RFC1843 HZ - A Data Format for Exchanging Files of Arbitrarily Mixed Chinese and -ASCII characters +@acronym{ASCII} characters @item draft-ietf-drums-msg-fmt-05.txt Draft for the successor of RFC822 @item RFC2112 -The @sc{mime} Multipart/Related Content-type +The @acronym{MIME} Multipart/Related Content-type @item RFC1892 The Multipart/Report Content Type for the Reporting of Mail System diff --git a/texi/gnus-faq.texi b/texi/gnus-faq.texi index 6683ff2..00dec35 100644 --- a/texi/gnus-faq.texi +++ b/texi/gnus-faq.texi @@ -32,11 +32,10 @@ @subheading Abstract - This is the new Gnus Frequently Asked Questions list. - If you have a Web browser, the official hypertext version is at - @uref{http://my.gnus.org/FAQ/,http://my.gnus.org/FAQ/}, - the Docbook source is available from - @uref{http://sourceforge.net/projects/gnus/,http://sourceforge.net}. + This is the new Gnus Frequently Asked Questions list. If you have a +Web browser, the official hypertext version is at +@uref{http://my.gnus.org/FAQ/}, the Docbook source is available from +@uref{http://sourceforge.net/projects/gnus/}. Please submit features and suggestions to the @@ -45,7 +44,7 @@ @uref{http://smarden.org/qconfirm/index.html,qconfirm}. As a subscriber, your submissions will automatically pass. You can also subscribe to the list by sending a blank email to - @uref{mailto:faq-discuss-subscribe@@my.gnus.org,faq-discuss-subscribe@@my.gnus.org} + @email{faq-discuss-subscribe@@my.gnus.org} and @uref{http://mail1.kens.com/cgi-bin/ezmlm-browse?command=monthbythread%26list=faq-discuss,browse the archive}. @node FAQ - Introduction, FAQ 1 - Installation, Frequently Asked Questions, Frequently Asked Questions @@ -78,7 +77,7 @@ Gnus is a Usenet Newsreader and Electronic Mail User Agent implemented If you have a Web browser, the official hypertext version is at: - @uref{http://my.gnus.org/FAQ/,http://my.gnus.org/FAQ/}. + @uref{http://my.gnus.org/FAQ/}. This version is much nicer than the unofficial hypertext versions that are archived at Utrecht, Oxford, Smart Pages, Ohio State, and other FAQ archives. See the resources question below @@ -174,9 +173,9 @@ Answer: Emacs 21 and until now it also isn't available through the package system of XEmacs 21.4, therefor you should get the Gnus tarball from - @uref{http://www.gnus.org/dist/gnus.tar.gz,http://www.gnus.org/dist/gnus.tar.gz} + @uref{http://www.gnus.org/dist/gnus.tar.gz} or via anonymous FTP from - @uref{ftp://ftp.gnus.org/pub/gnus/gnus.tar.gz,ftp://ftp.gnus.org/pub/gnus/gnus.tar.gz}. + @uref{ftp://ftp.gnus.org/pub/gnus/gnus.tar.gz}. @ifnottex @node [1.4], [1.5], [1.3], FAQ 1 - Installation @@ -191,10 +190,10 @@ Answer: Untar it via @samp{tar xvzf gnus.tar.gz} and do the common @samp{./configure; make; make install} circle. (under MS-Windows either get the Cygwin environment from - @uref{http://www.cygwin.com,http://www.cygwin.com} + @uref{http://www.cygwin.com} which allows you to do what's described above or unpack the tarball with some packer (e.g. Winace from - @uref{http://www.winace.com,http://www.winace.com}) + @uref{http://www.winace.com}) and use the batch-file make.bat included in the tarball to install Gnus. If you don't want to (or aren't allowed to) install Gnus system-wide, you can install it in your home directory and add the @@ -280,8 +279,7 @@ Answer: @ifnottex @node [2.2], [2.3], [2.1], FAQ 2 - Startup / Group buffer @end ifnottex -@subsection [2.2] -Question: 2.2 +@subheading Question: 2.2 Gnus doesn't remember which groups I'm subscribed to, what's this? @@ -412,22 +410,18 @@ Answer: Answer: - The ~/ means the home directory where Gnus and Emacs look - for the configuration files. However, you don't really - need to know what this means, it suffices that Emacs knows - what it means :-) You can type - @samp{C-x C-f ~/.gnus RET } - (yes, with the forward slash, even on Windows), and - Emacs will open the right file for you. (It will most - likely be new, and thus empty.) - However, I'd discourage you from doing so, since the - directory Emacs chooses will most certainly not be what - you want, so let's do it the correct way. - The first thing you've got to do is to - create a suitable directory (no blanks in directory name - please) e.g. c:\myhome. Then you must set the environment - variable HOME to this directory. To do this under Win9x - or Me include the line + The ~/ means the home directory where Gnus and Emacs look for the +configuration files. However, you don't really need to know what this +means, it suffices that Emacs knows what it means :-) You can type +@samp{C-x C-f ~/.gnus RET } (yes, with the forward slash, even on +Windows), and Emacs will open the right file for you. (It will most +likely be new, and thus empty.) However, I'd discourage you from +doing so, since the directory Emacs chooses will most certainly not be +what you want, so let's do it the correct way. The first thing you've +got to do is to create a suitable directory (no blanks in directory +name please) e.g. @file{c:\myhome}. Then you must set the environment +variable HOME to this directory. To do this under Win9x or Me include +the line @example @@ -441,7 +435,7 @@ SET HOME=C:\myhome hit Winkey+Pause/Break to enter system options (if it doesn't work, go to Control Panel -> System). There you'll find the possibility to set environment variables, create - a new one with name HOME and value C:\myhome, a reboot is + a new one with name HOME and value @file{c:\myhome}, a reboot is not necessary. @@ -1753,9 +1747,9 @@ cat ./file.face | sed 's/\\/\\\\/g' | sed 's/\"/\\\"/g' > ./file.face.quoted @noindent if you can't use compface, there's an online X-face converter at - @uref{http://www.dairiki.org/xface/,http://www.dairiki.org/xface/}. + @uref{http://www.dairiki.org/xface/}. If you use MS Windows, you could also use the WinFace program from - @uref{http://www.xs4all.nl/~walterln/winface/,http://www.xs4all.nl/~walterln/winface/}. + @uref{http://www.xs4all.nl/~walterln/winface/}. Now you only have to tell Gnus to include the X-face in your postings by saying @@ -1894,7 +1888,7 @@ Answer: somethingUnique.yourdomain.tld if you own the domain yourdomain.tld, or you can register at a service which gives private users a FQDN for free, e.g. - @uref{http://www.stura.tu-freiberg.de/~dlx/addfqdn.html,http://www.stura.tu-freiberg.de/~dlx/addfqdn.html}. + @uref{http://www.stura.tu-freiberg.de/~dlx/addfqdn.html}. (Sorry but this website is in German, if you know of an English one offering the same, drop me a note). @@ -1955,7 +1949,7 @@ Answer: export the messages in mbox format. Most Unix mailers are able to do this, if you come from the MS Windows world, you may find tools at - @uref{http://mbx2mbox.sourceforge.net/,http://mbx2mbox.sourceforge.net/}. + @uref{http://mbx2mbox.sourceforge.net/}. Now you've got to import this mbox file into Gnus. To do @@ -2076,8 +2070,8 @@ Answer: the indexed mail and generate a temporary group with all messages which met your search criteria. If this sound cool to you get nnir.el from - @uref{ftp://ls6-ftp.cs.uni-dortmund.de/pub/src/emacs/,ftp://ls6-ftp.cs.uni-dortmund.de/pub/src/emacs/} - or @uref{ftp://ftp.is.informatik.uni-duisburg.de/pub/src/emacs/,ftp://ftp.is.informatik.uni-duisburg.de/pub/src/emacs/}. + @uref{ftp://ls6-ftp.cs.uni-dortmund.de/pub/src/emacs/} + or @uref{ftp://ftp.is.informatik.uni-duisburg.de/pub/src/emacs/}. Instructions on how to use it are at the top of the file. @ifnottex @@ -2603,7 +2597,7 @@ Answer: @end ifnottex @section Glossary -@table @asis +@table @dfn @item ~/.gnus When the term ~/.gnus is used it just means your Gnus @@ -2640,4 +2634,4 @@ Answer: @end table -@bye +@c @bye diff --git a/texi/gnus-ja.texi b/texi/gnus-ja.texi index c52af61..67a0380 100644 --- a/texi/gnus-ja.texi +++ b/texi/gnus-ja.texi @@ -1,4 +1,4 @@ -\input texinfo +>\input texinfo @setfilename gnus-ja @settitle T-gnus 6.15 Manual @@ -53,6 +53,7 @@ \newcommand{\gnustt}[1]{{\gnusselectttfont{}#1}} \newcommand{\gnuscode}[1]{\gnustt{#1}} +\newcommand{\gnusenv}[1]{\gnustt{#1}} \newcommand{\gnussamp}[1]{``{\fontencoding{OT1}\gnusselectttfont{}#1}''} \newcommand{\gnuslisp}[1]{\gnustt{#1}} \newcommand{\gnuskbd}[1]{`\gnustt{#1}'} @@ -60,6 +61,7 @@ \newcommand{\gnusfile}[1]{`\gnustt{#1}'} \newcommand{\gnusdfn}[1]{\textit{#1}} \newcommand{\gnusi}[1]{\textit{#1}} +\newcommand{\gnusr}[1]{\textrm{#1}} \newcommand{\gnusstrong}[1]{\textbf{#1}} \newcommand{\gnusemph}[1]{\textit{#1}} \newcommand{\gnusvar}[1]{{\fontsize{10pt}{10}\selectfont\textsl{\textsf{#1}}}} @@ -68,7 +70,7 @@ \newcommand{\gnusversion}[1]{{\small\textit{#1}}} \newcommand{\gnusauthor}[1]{{\large\textbf{#1}}} \newcommand{\gnusresult}[1]{\gnustt{=> #1}} -\newcommand{\gnusacronym}[1]{\textit{#1}} +\newcommand{\gnusacronym}[1]{\textsc{#1}} \newcommand{\gnusemail}[1]{\textit{#1}} \newcommand{\gnusbullet}{{${\bullet}$}} @@ -435,17 +437,18 @@ license to the document, as described in section 6 of the license. @ifinfo -Gnus $B$r;H$&$3$H$K$h$C$F(B Emacs $B$G%K%e!<%9(B (news) $B$r(B ($B$=$l$K%a!<(B -$B%k(B (mail) $B$b(B) $BFI$`$3$H$,$G$-$^$9!#%K%e!<%9$O(B @sc{nntp}$B!"%m!<%+%k%9%W!<%k!"(B -mbox $B%U%!%$%k$J$I$N$"$i$f$k6K0-$JO$rJT=8$9$k?M$KNO$rM?$($k$h$&$K!"(Bgnus $B$O%K%e!<%9$rFI$`?M$KNO @end iftex @menu -* Starting Up:: $B%K%e!<%9$r8+$D$1$k$N$K$O6lO+$,H<$&$+$bCN(B - $B$l$J$$(B +* Starting Up:: $B%K%e!<%9$r8+$D$1$k$N$K$O6lO+$,H<$&$+$bCN$l$J$$(B * Group Buffer:: $B%0%k!<%W$rA*Br$7!"9XFI$7!":o=|$9$k(B * Summary Buffer:: $B5-;v$rFI$_!"J]B8$7!"Ej9F$9$k(B * Article Buffer:: $B5-;v$rI=<($7!"07$&(B * Composing Messages:: $B%a!<%k$H%K%e!<%9$rAw$k$?$a$N>pJs(B -* Select Methods:: Gnus $B$OA4$F$N%a%C%;!<%8$r$$$m$$$m$JA*Br(B - $BJ}K!$GFI$`(B +* Select Methods:: Gnus $B$OA4$F$N%a%C%;!<%8$r$$$m$$$m$JA*BrJ}K!$GFI$`(B * Scoring:: $B5-;v$KCM$r$D$1$k(B * Various:: $B0lHLE*$J@_Dj(B * The End:: $B$5$i$P!"$=$7$F$5$h$&$J$i(B -* Appendices:: $BMQ8l!"(BEmacs $BF~Lg!"(BFAQ$B!"Nr;K!"FbIt9=B$(B +* Appendices:: $BMQ8l!"(BEmacs $BF~Lg!"(B@acronym{FAQ}$B!"Nr;K!"FbIt9=B$(B * Index:: $BJQ?t!"4X?t!"35G0$N:w0z(B * Key Index:: $B%-!<:w0z(B Other related manuals * Message:(message). Composing messages. -* Emacs-MIME:(emacs-mime). Composing messages; MIME-specific parts. +* Emacs-MIME:(emacs-mime). Composing messages; @acronym{MIME}-specific parts. * Sieve:(sieve). Managing Sieve scripts in Emacs. -* PGG:(pgg). PGP/MIME with Gnus. +* PGG:(pgg). @acronym{PGP/MIME} with Gnus. @detailmenu --- The Detailed Node Listing --- @@ -508,26 +509,20 @@ Starting Gnus * Finding the News:: $B%K%e!<%9$re$N(B gnus $B$r:nF0$5$;$k$3$H$,(B - $B$G$-$k(B +* The Server is Down:: $B$I$&$9$l$P$=$N$h$&$J$H$-$K%a!<%k$re$N(B gnus $B$r:nF0$5$;$k$3$H$,$G$-$k(B * Fetching a Group:: $B%0%k!<%W$rFI$`$?$a$@$1$K(B gnus $B$r5/F0$9$k(B * New Groups:: Gnus $B$,?7$7$$%0%k!<%W$KBP$7$F2?$r$9$k$+(B -* Changing Servers:: $B$"$k%5!<%P$+$iJL$N%5!<%P$X0\$j$?$$$+$b$7(B - $B$l$J$$(B -* Startup Files:: $B$d$C$+$$$J%9%?!<%H%"%C%W%U%!%$%k(B -- - @file{.newsrc} +* Changing Servers:: $B$"$k%5!<%P$+$iJL$N%5!<%P$X0\$j$?$$$+$b$7$l$J$$(B +* Startup Files:: $B$d$C$+$$$J%9%?!<%H%"%C%W%U%!%$%k(B -- @file{.newsrc} * Auto Save:: $B%/%i%C%7%e$+$i$N2sI|(B -* The Active File:: $BCY$$2s@~$+$i$N%U%!%$%k$NpJs$rJQ99$9$k(B * Group Levels:: $B%l%Y%k(B? $B$=$l$C$F2?(B? * Group Score:: $B$"$J$?$N9%$-$J%0%k!<%W$r8+$D$1=P$9J}K!(B -* Marking Groups:: $B%0%k!<%W$K0u$r$D$1$F$*$$$F!"8e$G=hM}$G$-(B - $B$^$9(B +* Marking Groups:: $B%0%k!<%W$K0u$r$D$1$F$*$$$F!"8e$G=hM}$G$-$^$9(B * Foreign Groups:: $B%0%k!<%W$N:n@.$H=$@5(B -* Group Parameters:: $B%0%k!<%WKh$K0c$C$?%Q%i%a!<%?$r;}$?$;$i$l(B - $B$^$9(B -* Listing Groups:: Gnus $B$O%0%k!<%W$r$$$m$$$m$JJ,$1J}$GI=<((B - $B$G$-$^$9(B +* Group Parameters:: $B%0%k!<%WKh$K0c$C$?%Q%i%a!<%?$r;}$?$;$i$l$^$9(B +* Listing Groups:: Gnus $B$O%0%k!<%W$r$$$m$$$m$JJ,$1J}$GI=<($G$-$^$9(B * Sorting Groups:: $B%0%k!<%W$N=gHV$NG[CVBX$((B * Group Maintenance:: $B$-$l$$$J(B @file{.newsrc} $B$NJ]$AJ}(B -* Browse Foreign Server:: $B%5!<%P$r354Q$G$-$k!#2?$,FI$a$k$N$+8+$F$_(B - $B$h$&(B +* Browse Foreign Server:: $B%5!<%P$r354Q$G$-$k!#2?$,FI$a$k$N$+8+$F$_$h$&(B * Exiting Gnus:: $B%K%e!<%9FI$`$N$r$d$a$F!";E;v$r$7$h$&(B -* Group Topics:: $B%0%k!<%W$r@Z$j:.$<$F!"%H%T%C%/$4$H$KJ,3d(B - $B$9$k(B +* Group Topics:: $B%0%k!<%W$r@Z$j:.$<$F!"%H%T%C%/$4$H$KJ,3d$9$k(B * Misc Group Stuff:: $BB>$K$G$-$k$3$H(B Group Buffer Format @@ -567,16 +557,13 @@ Group Topics * Topic Variables:: Lisp $B$G%H%T%C%/$r%+%9%?%^%$%:$9$kJ}K!(B * Topic Sorting:: $B%H%T%C%/KhJL!9$KJB$YBX$($k(B * Topic Topology:: $BA4@$3&$NCO?^(B -* Topic Parameters:: $B$"$k%H%T%C%/$NA4$F$N%0%k!<%W$KE,MQ$5$l$k(B - $B%Q%i%a!<%?(B +* Topic Parameters:: $B$"$k%H%T%C%/$NA4$F$N%0%k!<%W$KE,MQ$5$l$k%Q%i%a!<%?(B Misc Group Stuff -* Scanning New Messages:: Gnus $B$K?7$7$$%a%C%;!<%8$,E~Ce$7$?$+$I$&(B - $B$+$rJ9$/(B +* Scanning New Messages:: Gnus $B$K?7$7$$%a%C%;!<%8$,E~Ce$7$?$+$I$&$+$rJ9$/(B * Group Information:: $B%0%k!<%W$H(B gnus $B$K4X$9$k>pJs$H%X%k%W(B -* Group Timestamp:: Gnus $B$K:G8e$K$$$D%0%k!<%W$rFI$s$@$+$r5-(B - $BO?$5$;$k(B +* Group Timestamp:: Gnus $B$K:G8e$K$$$D%0%k!<%W$rFI$s$@$+$r5-O?$5$;$k(B * File Commands:: Gnus $B$N%U%!%$%k$NFI$_=q$-(B * Sieve Commands:: Sieve $B%9%/%j%W%H$N4IM}(B @@ -588,21 +575,17 @@ Summary Buffer * Paging the Article:: $BFI$s$G$$$k5-;v$r%9%/%m!<%k$9$k(B * Reply Followup and Post:: $B5-;v$rEj9F$9$k(B * Delayed Articles:: $B5-;v$r8e$GAw$k(B -* Marking Articles:: $B5-;v$K4{FI$d4|8B@Z$l:o=|2DG=Ey$N0u$rIU$1(B - $B$k(B +* Marking Articles:: $B5-;v$K4{FI$d4|8B@Z$l:o=|2DG=Ey$N0u$rIU$1$k(B * Limiting:: $B35N,%P%C%U%!$K@)8B$r2C$($k$3$H$,$G$-$k(B * Threading:: $B%9%l%C%I$,$I$N$h$&$K:n$i$l$k$+(B -* Sorting the Summary Buffer:: $B%9%l%C%I$H5-;v$,$I$N$h$&$KJB$S$+$($i$l$k(B - $B$+(B +* Sorting the Summary Buffer:: $B%9%l%C%I$H5-;v$,$I$N$h$&$KJB$S$+$($i$l$k$+(B * Asynchronous Fetching:: Gnus $B$O5-;v$r@h$KC5n$7$J$/$5$;$k(B * Article Backlog:: $B4{$KFI$s$@5-;v$r;D$7$F$*$/(B * Saving Articles:: $B5-;v$NJ]B8$r%+%9%?%^%$%:$9$kJ}K!(B -* Decoding Articles:: Gnus $B$O0lO"$N(B (uu)encode $B$5$l$?5-;v$r07(B - $B$($k(B -* Article Treatment:: $B5-;v%P%C%U%!$O$*K>$_$I$*$j$KL\Cc6lCc$K$G(B - $B$-$k(B +* Decoding Articles:: Gnus $B$O0lO"$N(B (uu)encode $B$5$l$?5-;v$r07$($k(B +* Article Treatment:: $B5-;v%P%C%U%!$O$*K>$_$I$*$j$KL\Cc6lCc$K$G$-$k(B @c * MIME Commands:: Doing MIMEy things with the articles. @c * Charsets:: Character set issues. * Article Commands:: $B5-;v%P%C%U%!$G$$$m$$$m$J$3$H$r$9$k(B @@ -610,22 +593,17 @@ Summary Buffer * Finding the Parent:: $B;R5-;v$,C5$;$J$$$C$F(B? $B?F5-;v$r$N$I$N>l=j$K$b9g$o$J$+$C$?$b$N(B -* Exiting the Summary Buffer:: $B%0%k!<%W%P%C%U%!$KLa$k!"(B - $B$^$?$O8=:_$N%0%k!<%W$r:F$SA*Br$9$k(B -* Crosspost Handling:: $B%/%m%9%]%9%H$5$l$?5-;v$,$I$N$h$&$K07$o$l(B - $B$k$+(B -* Duplicate Suppression:: $B%/%m%9%]%9%H$N07$$$K<:GT$7$?$H$-$NBeBXA0$rI=<($7$J$$J}K!(B * Summary Buffer Mode Line:: $B%b!<%I9T$N8+$(J}$r7h$a$i$l$k(B * Summary Highlighting:: $B35N,%P%C%U%!$r$-$l$$$GAGE($K$9$k(B @@ -661,12 +639,10 @@ Threading Customizing Threading -* Loose Threads:: Gnus $B$,L5B+G{%9%l%C%I$r=8$a$FBg$-$J%9%l%C(B - $B%I$K$9$kJ}K!(B +* Loose Threads:: Gnus $B$,L5B+G{%9%l%C%I$r=8$a$FBg$-$J%9%l%C%I$K$9$kJ}K!(B * Filling In Threads:: $B%9%l%C%I$rKd$a$k(B * More Threading:: $B%9%l%C%I$r$$$8$/$k$5$i$KB?$/$NJQ?t(B -* Low-Level Threading:: $B$3$l$G=*$o$C$?$H;W$C$?$G$7$g$&(B@dots{} $B$G(B - $B$b$"$J$?$O4V0c$C$F$$$?(B! +* Low-Level Threading:: $B$3$l$G=*$o$C$?$H;W$C$?$G$7$g$&(B@dots{} $B$G$b$"$J$?$O4V0c$C$F$$$?(B! Decoding Articles @@ -679,22 +655,18 @@ Decoding Articles Decoding Variables -* Rule Variables:: $B%U%!%$%k$,$I$N$h$&$KI=<($5$l$k$+$r7h$a$k(B - $BJQ?t(B +* Rule Variables:: $B%U%!%$%k$,$I$N$h$&$KI=<($5$l$k$+$r7h$a$kJQ?t(B * Other Decode Variables:: $BB>$NI|9f2=$NJQ?t(B * Uuencoding and Posting:: uuencode $B$9$k$N$r%+%9%?%^%$%:$9$kJQ?t(B Article Treatment -* Article Highlighting:: $B5-;v$r2LJ*%5%i%@$N$h$&$K8+$($k$h$&$K$7$?(B - $B$$(B +* Article Highlighting:: $B5-;v$r2LJ*%5%i%@$N$h$&$K8+$($k$h$&$K$7$?$$(B * Article Fontisizing:: $B6/D4$5$l$?J8$rAGE($K$9$k(B * Article Hiding:: $BFCDj$N>pJs$O>C$75n$j$?$$$H$b;W$&(B -* Article Washing:: $B?M@8$r$b$C$H$h$/$9$k$?$/$5$s$N5$$NMx$$$?(B - $B4X?t(B +* Article Washing:: $B?M@8$r$b$C$H$h$/$9$k$?$/$5$s$N5$$NMx$$$?4X?t(B * Article Header:: $B%X%C%@!<$r$$$m$$$mJQ7A$5$;$k(B -* Article Buttons:: URL $B$d(B Message-ID $B$d%"%I%l%9$J$I$r%/%j%C(B - $B%/$9$k(B +* Article Buttons:: URL $B$d(B Message-ID $B$d%"%I%l%9$J$I$r%/%j%C%/$9$k(B * Article Button Levels:: $B%\%?%s$N8+$(J}$r@)8f$9$k(B * Article Date:: $B$0$:$0$:8@$&$J!"@$3&;~$@(B! * Article Display:: X-Face, Picons, Smileys $B$rI=<($9$k(B @@ -716,7 +688,7 @@ Various Summary Stuff Article Buffer * Hiding Headers:: $B$I$N%X%C%@!<$rI=<($9$k$+$r7h$a$k(B -* Using MIME:: @sc{mime} $B5-;v$H$7$F8+$;$k(B +* Using MIME:: @acronym{MIME} $B5-;v$H$7$F8+$;$k(B * Customizing Articles:: $B5-;v$N8+1I$($r;EN)$F$k(B * Article Keymap:: $B5-;v%P%C%U%!$G;H$($k%-!(B @@ -724,16 +696,12 @@ Article Buffer Composing Messages * Mail:: $B%a!<%k$HJVEz(B -* Posting Server:: $B$I$N%5!<%P!<$rDL$7$F%K%e!<%9$rEj9F$^$?$O(B - $B%a!<%k$rAw?.$9$k$Y$-$+(B? +* Posting Server:: $B$I$N%5!<%P!<$rDL$7$F%K%e!<%9$rEj9F$^$?$O%a!<%k$rAw?.$9$k$Y$-$+(B? * Mail and Post:: $BF1;~$K%a!<%k$r=P$7JVEz$9$k(B -* Archived Messages:: $BAw$C$?%a%C%;!<%8$r(B gnus $B$,Cy$a$F$*$/$H$3(B - $B$m(B -* Posting Styles:: $B$"$J$?$,C/$G$"$k$+$r;XDj$9$k$h$j4JC1$JJ}(B - $BK!(B +* Archived Messages:: $BAw$C$?%a%C%;!<%8$r(B gnus $B$,Cy$a$F$*$/$H$3$m(B +* Posting Styles:: $B$"$J$?$,C/$G$"$k$+$r;XDj$9$k$h$j4JC1$JJ}K!(B * Drafts:: $B%a%C%;!<%8$N1d4|$H5qH]$5$l$?%a%C%;!<%8(B -* Rejected Articles:: $B%5!<%P!<$,$"$J$?$N5-;v$r9%$-$G$J$$$H$-$K(B - $B2?$,5/$3$k(B? +* Rejected Articles:: $B%5!<%P!<$,$"$J$?$N5-;v$r9%$-$G$J$$$H$-$K2?$,5/$3$k(B? @c * Signing and encrypting:: How to compose secure messages. Select Methods @@ -741,11 +709,9 @@ Select Methods * Server Buffer:: $B;ve$N%5!<%P!<$r:n$C$FJT=8$9$k(B * Getting News:: USENET $B%K%e!<%9$r(B gnus $B$GFI$`(B * Getting Mail:: $B8D?ME*$J%a!<%k$r(B gnus $B$GFI$`(B -* Browsing the Web:: $B2a>j$J%&%'%V$N;q8;$+$i%a%C%;!<%8$rj$J%&%'%V$N;q8;$+$i%a%C%;!<%8$r$rA*BrJ}K!$H$7$F;H$&;v$,$G$-$k(B -* Unavailable Servers:: $B@\B3$7$h$&$H;n$_$?%5!<%P!<$N$$$/$D$+$,Mn(B - $B$A$F$$$k$+$b$7$l$J$$(B +* Unavailable Servers:: $B@\B3$7$h$&$H;n$_$?%5!<%P!<$N$$$/$D$+$,Mn$A$F$$$k$+$b$7$l$J$$(B Getting News -* NNTP:: @sc{nntp} $B%5!<%P!<$+$i%K%e!<%9$rFI$`(B +* NNTP:: @acronym{NNTP} $B%5!<%P!<$+$i%K%e!<%9$rFI$`(B * News Spool:: $B%m!<%+%k%9%W!<%k$+$i%K%e!<%9$rFI$`(B -@sc{nntp} +@acronym{NNTP} * Direct Functions:: $B%5!<%P!<$KD>@\@\B3$9$k(B * Indirect Functions:: $B%5!<%P!<$K4V@\E*$K@\B3$9$k(B @@ -776,19 +741,15 @@ Getting Mail * Mail in a Newsreader:: $B%K%e!<%9%j!<%@$G%a!<%k(B ($BBg;v$JA0CV$-(B) * Getting Started Reading Mail:: $B4JC1$JNAM}K\$N$h$&$JNc(B * Splitting Mail:: $B$I$N$h$&$K%a!<%k%0%k!<%W$r:n@.$9$k$+(B -* Mail Sources:: Gnus $B$K$I$3$+$i%a!<%k$r$N%U%!%$%k$rFI$`$?$a$K%a!<%k%P%C%/%((B - $B%s%I$r;H$&(B +* Not Reading Mail:: $BB>$N%U%!%$%k$rFI$`$?$a$K%a!<%k%P%C%/%(%s%I$r;H$&(B * Choosing a Mail Back End:: Gnus $B$O?'!9$J%a!<%kMM<0$rFI$`;v$,$G$-$k(B Mail Sources @@ -800,13 +761,11 @@ Mail Sources Choosing a Mail Back End * Unix Mail Box:: ($B$H$F$b(B) $BI8=`E*$J(B Un*x mbox $B$r;H$&(B -* Rmail Babyl:: Emacs $B$N%W%m%0%i%`$O(B Rmail $B$N(B Babyl $B%U%)!<(B - $B%^%C%H$r;H$&(B +* Rmail Babyl:: Emacs $B$N%W%m%0%i%`$O(B Rmail $B$N(B Babyl $B%U%)!<%^%C%H$r;H$&(B * Mail Spool:: $B$"$J$?$N%a!<%k$r;dE*$J%9%W!<%k$KN/$a$k(B? * MH Spool:: mhspool $B$N$h$&$J%P%C%/%(%s%I(B * Maildir:: $B$b$&0l$D$N#1%U%!%$%k(B/$B#1%a%C%;!<%87A<0(B -* Mail Folders:: $B$=$l$>$l$N%0%k!<%W$KBP$7$F0l$D$N%U%!%$%k(B - $B$r;}$D(B +* Mail Folders:: $B$=$l$>$l$N%0%k!<%W$KBP$7$F0l$D$N%U%!%$%k$r;}$D(B * Comparing Mail Back Ends:: $BF@<:$N?<$$F6;!(B Browsing the Web @@ -820,24 +779,21 @@ Browsing the Web * RSS:: RDF Site Summary $B$rFI$`(B * Customizing w3:: Gnus $B$+$i(B Emacs/W3 $B$rA`:n$9$k(B -@sc{imap} +@acronym{IMAP} * Splitting in IMAP:: nnimap $B$G%a!<%k$rJ,3d$9$k(B * Expiring in IMAP:: nnimap $B$K$h$k%a!<%k$N4|8B@Z$l>C5n(B -* Editing IMAP ACLs:: $B%a!<%k%\%C%/%9$X$NB>$NMxMQ$NMxMQA06u4V$r;H$&(B($B;H$o$J$$(B)$BJ}K!(B +* A note on namespaces:: gnus $B$G(B @acronym{IMAP} $BL>A06u4V$r;H$&(B($B;H$o$J$$(B)$BJ}K!(B Other Sources -* Directory Groups:: $B%G%#%l%/%H%j!<$r%K%e!<%9%0%k!<%W$N$h$&$K(B - $BFI$`(B +* Directory Groups:: $B%G%#%l%/%H%j!<$r%K%e!<%9%0%k!<%W$N$h$&$KFI$`(B * Anything Groups:: Dired? $BC/$,(B dired $B$J$s$F;H$&$N(B? * Document Groups:: $B8DJL$N%U%!%$%k72$O%0%k!<%W$NAG(B * SOUP:: @sc{soup} $B%Q%1%C%H$r(B ``$B%*%U%i%$%s(B'' $B$GFI$`(B -* Mail-To-News Gateways:: $B%a!<%k$+$i%K%e!<%9$X$N%2!<%H%&%'%$$rDL$7(B - $B$F5-;v$rEj9F$9$k(B +* Mail-To-News Gateways:: $B%a!<%k$+$i%K%e!<%9$X$N%2!<%H%&%'%$$rDL$7$F5-;v$rEj9F$9$k(B Document Groups @@ -847,8 +803,7 @@ SOUP * SOUP Commands:: @sc{soup} $B%Q%1%C%H$r:n@.!"Aw=P$9$kL?Na(B * SOUP Groups:: @sc{soup} $B%Q%1%C%H$rFI$`%P%C%/%(%s%I(B -* SOUP Replies:: @code{nnsoup} $B$K%a!<%k$H%K%e!<%9$r0z$-7Q$,$;(B - $B$kJ}K!(B +* SOUP Replies:: @code{nnsoup} $B$K%a!<%k$H%K%e!<%9$r0z$-7Q$,$;$kJ}K!(B Combined Groups @@ -858,19 +813,17 @@ Combined Groups Gnus Unplugged * Agent Basics:: $B$3$l$i$O$I$&F0$/$N$+(B -* Agent Categories:: $B2?$r%@%&%s%m!<%I$9$k$+$r(B gnus $B%(!<%8%'%s(B - $B%H$K65$($kJ}K!(B +* Agent Categories:: $B2?$r%@%&%s%m!<%I$9$k$+$r(B gnus $B%(!<%8%'%s%H$K65$($kJ}K!(B * Agent Commands:: $B3F%P%C%U%!!<$G$N?7$7$$L?Na(B * Agent as Cache:: $B%(!<%8%'%s%H$OBg$-$J%-%c%C%7%e$G$b$"$k(B * Agent Expiry:: $B8E$$5-;v$r>C$9J}K!(B * Agent Regeneration:: $BDL?.@ZCG$dB>$N;v8N$+$i2sI|$9$kJ}K!(B -* Agent and IMAP:: $B%(!<%8%'%s%H$r(B IMAP $B$G;H$&J}K!(B +* Agent and IMAP:: $B%(!<%8%'%s%H$r(B @acronym{IMAP} $B$G;H$&J}K!(B * Outgoing Messages:: $BEj9F!"%a!<%k$r=P$9$H$-$K$J$K$,5/$3$k$N$+(B? * Agent Variables:: $B%+%9%?%^%$%:$O3Z$7(B * Example Setup:: $B%*%U%i%$%s?M4V$N$?$a$N(B @file{~/.gnus.el} $B$NNc(B * Batching Agents:: @code{cron} $B%8%g%V$K$h$k%K%e!<%9C5n%U%!%$%k$r%9%3%"%U%!%$%k$KJQ49$9$k(B * GroupLens:: $B$I$l$rFI$`$N$,9%$-$+$NM=8@$rF@$k(B * Advanced Scoring:: $B%9%3%"$NK!B'$r:n$k$?$a$KO@M}I=8=$r;H$&(B -* Score Decays:: $B%9%3%"$r8O$l$F$$$+$;$k$N$OLr$KN)$D;v$b$"(B - $B$k(B +* Score Decays:: $B%9%3%"$r8O$l$F$$$+$;$k$N$OLr$KN)$D;v$b$"$k(B GroupLens -* Using GroupLens:: $B$I$N$h$&$K(B gnus $B$K(B GroupLens $B$r;H$o$;$k(B - $B$h$&$K$9$k$+(B -* Rating Articles:: GropLens $B$K$"$J$?$,$I$N$h$&$KCM$rIU$1$k(B - $B$+$rCN$i$;$k(B -* Displaying Predictions:: GropuLens $B$K$h$C$FM?$($i$l$?M=8@$rI=<($9(B - $B$k(B +* Using GroupLens:: $B$I$N$h$&$K(B gnus $B$K(B GroupLens $B$r;H$o$;$k$h$&$K$9$k$+(B +* Rating Articles:: GropLens $B$K$"$J$?$,$I$N$h$&$KCM$rIU$1$k$+$rCN$i$;$k(B +* Displaying Predictions:: GropuLens $B$K$h$C$FM?$($i$l$?M=8@$rI=<($9$k(B * GroupLens Variables:: GoupLens $B$r%+%9%?%^%$%:$9$k(B Advanced Scoring @@ -933,18 +875,15 @@ Various * Process/Prefix:: $BB?$/$N07$$L?Na$G;H$o$l$k=,47(B * Interactive:: Gnus $B$KB?$/$Ne$2$k$+(B * Mode Lines:: $B%b!<%I9T$K>pJs$rI=<($9$k(B * Highlighting and Menus:: $B%P%C%U%!$rAGE($G?4CO$h$/8+$;$k(B * Buttons:: $B4JC1$J==Jb$G%"%-%l%9g'$rF@$k(B -* Daemons:: Gnus $B$O$"$J$?$NN"$GJ*;v$r$NB@$j$d$9$$?);v$rHr$1$kJ}K!(B * Undo:: $B$$$/$D$+$NF0:n$O85$KLa$9;v$,$G$-$k(B * Predicate Specifiers:: $B=R8l$r@_Dj$9$k(B @@ -956,10 +895,8 @@ Various Formatting Variables -* Formatting Basics:: $B=qK!;EMMJQ?t$O4pK\E*$K=qK!;XDjJ8;zNs$G$"(B - $B$k(B -* Mode Line Formatting:: $B%b!<%I9T$N=qK!;EMMJQ?t$K4X$9$k$$$/$D$+$N(B - $B5,B'(B +* Formatting Basics:: $B=qK!;EMMJQ?t$O4pK\E*$K=qK!;XDjJ8;zNs$G$"$k(B +* Mode Line Formatting:: $B%b!<%I9T$N=qK!;EMMJQ?t$K4X$9$k$$$/$D$+$N5,B'(B * Advanced Formatting:: $B?'!9$JJ}K!$G=PNO$r=$@5$9$k(B * User-Defined Specs:: Gnus $B$K$"$J$?<+?H$N4X?t$r8F$P$;$k(B * Formatting Fonts:: $B;EMM$rB?:L$GAGE($K8+$;$k(B @@ -970,8 +907,7 @@ Formatting Variables Image Enhancements * Picons:: $B$"$J$?$,FI$s$G$$$k$b$N$N3($rI=<($9$kJ}K!(B -* Smileys:: $BI=<($5$l$k$Y$/@8$^$l$?9,$;$=$&$J4i$rI=<((B - $B$9$kJ}K!(B +* Smileys:: $BI=<($5$l$k$Y$/@8$^$l$?9,$;$=$&$J4i$rI=<($9$kJ}K!(B * X-Face:: $B%U%!%s%-!<$J$A$C$A$c$JGr9u$N3($rI=<($9$k(B * XVarious:: $B$=$NB>$N(B XEmacs $B$G(B Gnus $B$JJQ?t(B @@ -991,42 +927,34 @@ Appendices * On Writing Manuals:: $B$J$<$3$l$,=i?4ee$N%P!<%8%g%s$N(B Gnus * Why?:: Gnus $B$NL\E*$O2?(B? -* Compatibility:: Gnus $B$O(B @sc{gnus} $B$H$I$l$/$i$$8_49@-$,$"$k(B - $B$N(B? +* Compatibility:: Gnus $B$O(B @sc{gnus} $B$H$I$l$/$i$$8_49@-$,$"$k$N(B? * Conformity:: Gnus $B$OA4$F$NI8=`$rK~$?$=$&$H$9$k(B -* Emacsen:: Gnus $B$O$$$/$D$+$N8=BeE*$J(B Emacs $B4D6-$Ge$N$b$N(B---Gnus 5.4/5.5 * Quassia Gnus:: 2 $B$+$1$k(B 2 $B$O(B 4$B!"$b$7$/$O(B Gnus 5.6/5.7 -* Pterodactyl Gnus:: $B8^HVL\!"(BP $B$G;O$^$k!"$b$7$/$O(B Gnus 5.8 - /5.9 $B$H$7$FCN$i$l$F$$$k$b$N(B +* Pterodactyl Gnus:: $B8^HVL\!"(BP $B$G;O$^$k!"$b$7$/$O(B Gnus 5.8/5.9 $B$H$7$FCN$i$l$F$$$k$b$N(B Customization -* Slow/Expensive Connection:: $B%m!<%+%k$N(B Emacs $B$rN)$A>e$2$F!"B>$N$H$3(B - $B$m$+$i%K%e!<%9$rF@$k;v$,$G$-$k(B +* Slow/Expensive Connection:: $B%m!<%+%k$N(B Emacs $B$rN)$A>e$2$F!"B>$N$H$3$m$+$i%K%e!<%9$rF@$k;v$,$G$-$k(B * Slow Terminal Connection:: $B1s3V(B Emacs $B$rpJs7A<0(B * Extended Interactive:: $B5-9f@\F,<-$J$I(B @@ -1091,19 +1018,14 @@ Emacs for Heathens @menu * Finding the News:: $B%K%e!<%9$re$N(B gnus $B$r:nF0$5$;$k$3$H$,(B - $B$G$-$k(B +* The Server is Down:: $B$I$&$9$l$P$=$N$h$&$J$H$-$K%a!<%k$re$N(B gnus $B$r:nF0$5$;$k$3$H$,$G$-$k(B * Fetching a Group:: $B%0%k!<%W$rFI$`$?$a$@$1$K(B gnus $B$r5/F0$9$k(B * New Groups:: Gnus $B$,?7$7$$%0%k!<%W$KBP$7$F2?$r$9$k$+(B -* Changing Servers:: $B$"$k%5!<%P$+$iJL$N%5!<%P$X0\$j$?$$$+$b$7(B - $B$l$J$$(B -* Startup Files:: $B$d$C$+$$$J%9%?!<%H%"%C%W%U%!%$%k(B -- - @file{.newsrc} +* Changing Servers:: $B$"$k%5!<%P$+$iJL$N%5!<%P$X0\$j$?$$$+$b$7$l$J$$(B +* Startup Files:: $B$d$C$+$$$J%9%?!<%H%"%C%W%U%!%$%k(B -- @file{.newsrc} * Auto Save:: $B%/%i%C%7%e$+$i$N2sI|(B -* The Active File:: $BCY$$2s@~$+$i$N%U%!%$%k$Nl9g(B $B$O(B @file{/etc/nntpserver}) $B$,$3$N7o$K4X$7$F2?$+$r8@$C$F$$$J$$$+$rD4$Y$^(B $B$9!#$b$7$=$l$b<:GT$7$?$J$i!"(Bgnus $B$O(B Emacs $B$,F0:n$7$F$$$k%5!<%P!<(B -$B$r(B @sc{nntp} $B%5!<%P!<$H$7$F;H$*$&$H$7$^$9!#?oJ,$JEv$F?dNL$G$9$1$I$M!#(B +$B$r(B @acronym{NNTP} $B%5!<%P!<$H$7$F;H$*$&$H$7$^$9!#?oJ,$JEv$F?dNL$G$9$1$I$M!#(B @vindex gnus-nntp-server @code{gnus-nntp-server} $B$,@_Dj$5$l$F$$$k$H!"$3$NJQ?t(B @@ -1161,8 +1083,8 @@ gnus $B$O(B @code{gnus-nntpserver-file} ($B@_Dj$5$l$F$$$J$$>l9g(B @vindex gnus-secondary-servers @vindex gnus-nntp-server -Gnus $B$K(B @sc{nntp} $B%5!<%P!<$NL>A0$NF~NO$rBPOCE*$K;XDj$9$k$3$H$b$G$-$^$9!#(B -@code{gnus} $B$K?tCM$G$J$$@\F,0z?t$rEO$9$H(B ($BNc(B: @kbd{C-u M-x gnus})$B!"(B +Gnus $B$K(B @acronym{NNTP} $B%5!<%P!<$NL>A0$NF~NO$rBPOCE*$K;XDj$9$k$3$H$b$G$-(B +$B$^$9!#(B@code{gnus} $B$K?tCM$G$J$$@\F,0z?t$rEO$9$H(B ($BNc(B: @kbd{C-u M-x gnus})$B!"(B gnus $B$O(B @code{gnus-secondary-servers} $B%j%9%H(B ($B$b$7B8:_$9$k$J$i$P(B) $B$+$i%5!<(B $B%P!<$rA*$V$3$H$,$G$-$k$h$&$K$7$^$9!#$?$@C1$K@\B3$7$?$$$H;W$C$?%5!<%P!<$N(B $BL>A0$rBG$D$3$H$b$G$-$^$9!#(B($B$3$l$O(B @code{gnus-nntp-server} $B$r@_Dj$7!"$3$l(B @@ -1171,11 +1093,12 @@ gnus $B$O(B @code{gnus-secondary-servers} $B%j%9%H(B ($B$b$7B8:_$9$k$J$i$P @findex gnus-group-browse-foreign-server @kindex B ($B%0%k!<%W(B) -$B$7$+$7!"IaCJF|>oE*$K$O0l$D$N(B @sc{nntp} $B%5!<%P$r;H$$!"0c$C$?%5!<%P!<$K$O(B -$B6=L#$N$"$k%0%k!<%W$,>/$7$7$+$J$$>l9g!"%0%k!<%W%P%C%U%!$G(B @kbd{B} $BL?Na$r(B -$B;H$&$3$H$NJ}$,NI$$$G$7$g$&!#$=$l$O!"A*Br2DG=$J%0%k!<%W$rI=<($7!"$=$NCf$+(B -$B$i$I$l$G$b9%$-$J$b$N$r9XFI$9$k$3$H$,$G$-$^$9!#$3$l$O!"(B@file{.newsrc} $B$N(B -$BJ];}$r$:$C$H$d$j$d$9$/$7$^$9!#(B@xref{Foreign Groups, $B30It%0%k!<%W(B}. +$B$7$+$7!"IaCJF|>oE*$K$O0l$D$N(B @acronym{NNTP} $B%5!<%P$r;H$$!"0c$C$?%5!<%P!<(B +$B$K$O6=L#$N$"$k%0%k!<%W$,>/$7$7$+$J$$>l9g!"%0%k!<%W%P%C%U%!$G(B @kbd{B} $BL?(B +$BNa$r;H$&$3$H$NJ}$,NI$$$G$7$g$&!#$=$l$O!"A*Br2DG=$J%0%k!<%W$rI=<($7!"$=$N(B +$BCf$+$i$I$l$G$b9%$-$J$b$N$r9XFI$9$k$3$H$,$G$-$^$9!#$3$l(B +$B$O(B @file{.newsrc} $B$NJ];}$r$:$C$H$d$j$d$9$/$7$^$9!#(B +@xref{Foreign Groups, $B30It%0%k!<%W(B}$B!#(B @vindex gnus-secondary-select-methods @c @head @@ -1311,8 +1234,7 @@ Gnus $B$O!"?.Mj$G$-$k%W%m%0%i%`$N0l$D$H$7$F!"%5!<%P!<$H@\B3$G$-$J$$$H$-$O(B @menu * Checking New Groups:: $B$I$N%0%k!<%W$,?7$7$$$+$r7hDj$9$k(B -* Subscription Methods:: $B?7$7$$%0%k!<%W$KBP$7$F(B gnus $B$O2?$r$9$Y$-(B - $B$+(B +* Subscription Methods:: $B?7$7$$%0%k!<%W$KBP$7$F(B gnus $B$O2?$r$9$Y$-$+(B * Filtering New Groups:: Gnus $B$KFCDj$N?7$7$$%0%k!<%W$rL5;k$5$;$k(B @end menu @@ -1476,19 +1398,19 @@ options -n !alt.all !rec.all sci.all @section $B%5!<%P!<$r49$($k(B @cindex changing servers -$B$H$-$I$-!"$"$k(B @sc{nntp} $B%5!<%P!<$+$iJL$N%5!<%P!<$X0\F0$7$J$1$l$P$J$i$J(B -$B$$$3$H$,$"$j$^$9!#$3$N$h$&$J$3$H$O$a$C$?$K$*$-$^$;$s$,!"$*$=$i$/$"$J$?$,(B -$B;E;v$rJQ$($?$j!";H$C$F$$$k%5!<%P!<$,$H$F$bIT0BDj$G!"JL$N$b$N$K>h$j49$($?(B -$B$$$H$$$&$H$-$KI,MW$K$J$k$G$7$g$&!#(B +$B$H$-$I$-!"$"$k(B @acronym{NNTP} $B%5!<%P!<$+$iJL$N%5!<%P!<$X0\F0$7$J$1$l$P$J(B +$B$i$J$$$3$H$,$"$j$^$9!#$3$N$h$&$J$3$H$O$a$C$?$K$*$-$^$;$s$,!"$*$=$i$/$"$J(B +$B$?$,;E;v$rJQ$($?$j!";H$C$F$$$k%5!<%P!<$,$H$F$bIT0BDj$G!"JL$N$b$N$K>h$j49(B +$B$($?$$$H$$$&$H$-$KI,MW$K$J$k$G$7$g$&!#(B $B%5!<%P!<$rJQ99$9$k$N$O$H$F$b4JC1$G$9$h$M(B? @code{gnus-select-method} $B$r?7(B $B$7$$%5!<%P!<$r;X$7<($9$h$&$KJQ99$9$l$P$$$$$@$1$G$9$M(B? @emph{$B0c$$$^$9(B!} -$B5-;v$NHV9f$O0c$C$?(B @sc{nntp} $B%5!<%P!<$G$b(B ($B$I$&$K$+$7$F(B) $BF1$8$K$7$F$"$k!"(B -$B$H$$$&$3$H$O$"$j$^$;$s!#$=$7$F!"(Bgnus $B$,$I$N5-;v$rFI$s$@$+$r5-O?$9$kM#0l(B -$B$NJ}K!$O!"5-;vHV9f$r5-O?$9$k$3$H$G$9!#$G$9$+$i!"(B +$B5-;v$NHV9f$O0c$C$?(B @acronym{NNTP} $B%5!<%P!<$G$b(B ($B$I$&$K$+$7$F(B) $BF1$8$K$7$F(B +$B$"$k!"$H$$$&$3$H$O$"$j$^$;$s!#$=$7$F!"(Bgnus $B$,$I$N5-;v$rFI$s$@$+$r5-O?$9(B +$B$kM#0l$NJ}K!$O!"5-;vHV9f$r5-O?$9$k$3$H$G$9!#$G$9$+$i!"(B @code{gnus-select-method} $B$rJQ99$7$?$H$-$O!"%U%!%$%k(B @file{.newsrc} $B$O0U(B $BL#$,$J$/$J$j$^$9!#(B @@ -1705,10 +1627,10 @@ Gnus $B$O5/F0$7$?$H$-$d!"pJs$rF@$h$&$H$7$^$9!#$=$7$F!"$3$l$O$"$^$jB.$/$"$j$^$;$s!#$b$7$=(B -$B$l$,(B @code{some} $B$G(B @sc{nntp} $B%5!<%P!<$r;H$C$F$$$k$H$-$O!"(Bgnus $B$O$G$-$k(B -$B$@$1B.$/L?Na$r=P$7!"0l7b$G$9$Y$F$NJVEz$rFI$_9~$_$^$9!#$3$NJ}$,IaDL$O$h$j(B -$BNI$$7k2L$r$b$?$i$7$^$9$,!"%5!<%P!<$,L?Na(B @code{LIST ACTIVE group} $B$rM}2r(B -$B$7$J$$$J$i!"%5!<%P!<$K$H$C$F$O$"$^$jNI$$$H$O8@$($^$;$s!#(B +$B$l$,(B @code{some} $B$G(B @acronym{NNTP} $B%5!<%P!<$r;H$C$F$$$k$H$-$O!"(Bgnus $B$O$G(B +$B$-$k$@$1B.$/L?Na$r=P$7!"0l7b$G$9$Y$F$NJVEz$rFI$_9~$_$^$9!#$3$NJ}$,IaDL$O(B +$B$h$jNI$$7k2L$r$b$?$i$7$^$9$,!"%5!<%P!<$,L?Na(B @code{LIST ACTIVE group} $B$r(B +$BM}2r$7$J$$$J$i!"%5!<%P!<$K$H$C$F$O$"$^$jNI$$$H$O8@$($^$;$s!#(B Gnus $B$N5/F0$K$"$^$j$K;~4V$,$+$+$k$H;W$C$?$J$i!"$3$NJQ?t$K$3$l$i$N;0$D$N(B $B0c$C$?CM$r;n$7$F$_$F!"$I$l$,0lHVNI$$$+$rC5$7$F$/$@$5$$!#(B @@ -1827,20 +1749,15 @@ Gnus $B$N5/F0$K@.8y$7$?8e$K!"0lHV:G8e$KpJs$rJQ99$9$k(B * Group Levels:: $B%l%Y%k(B? $B$=$l$C$F2?(B? * Group Score:: $B$"$J$?$N9%$-$J%0%k!<%W$r8+$D$1=P$9J}K!(B -* Marking Groups:: $B%0%k!<%W$K0u$r$D$1$F$*$$$F!"8e$G=hM}$G$-(B - $B$^$9(B +* Marking Groups:: $B%0%k!<%W$K0u$r$D$1$F$*$$$F!"8e$G=hM}$G$-$^$9(B * Foreign Groups:: $B%0%k!<%W$N:n@.$H=$@5(B -* Group Parameters:: $B%0%k!<%WKh$K0c$C$?%Q%i%a!<%?$r;}$?$;$i$l(B - $B$^$9(B -* Listing Groups:: Gnus $B$O%0%k!<%W$r$$$m$$$m$JJ,$1J}$GI=<((B - $B$G$-$^$9(B +* Group Parameters:: $B%0%k!<%WKh$K0c$C$?%Q%i%a!<%?$r;}$?$;$i$l$^$9(B +* Listing Groups:: Gnus $B$O%0%k!<%W$r$$$m$$$m$JJ,$1J}$GI=<($G$-$^$9(B * Sorting Groups:: $B%0%k!<%W$N=gHV$NG[CVBX$((B * Group Maintenance:: $B$-$l$$$J(B @file{.newsrc} $B$NJ]$AJ}(B -* Browse Foreign Server:: $B%5!<%P$r354Q$G$-$k!#2?$,FI$a$k$N$+8+$F$_(B - $B$h$&(B +* Browse Foreign Server:: $B%5!<%P$r354Q$G$-$k!#2?$,FI$a$k$N$+8+$F$_$h$&(B * Exiting Gnus:: $B%K%e!<%9FI$`$N$r$d$a$F!";E;v$r$7$h$&(B -* Group Topics:: $B%0%k!<%W$r@Z$j:.$<$F!"%H%T%C%/$4$H$KJ,3d(B - $B$9$k(B +* Group Topics:: $B%0%k!<%W$r@Z$j:.$<$F!"%H%T%C%/$4$H$KJ,3d$9$k(B * Misc Group Stuff:: $BB>$K$G$-$k$3$H(B @end menu @@ -1921,7 +1838,7 @@ Gnus $B$N5/F0$K@.8y$7$?8e$K!"0lHV:G8e$KpJs$O$b$&Lr$K$ON)$A$^$;$s!#$3$N%3%^%s%I$r;H$C$F4pK\%0%k!<%W$NA4$F$N%G!<(B -$B%?$r%/%j%"$9$k$3$H$,$G$-$^$9!#Cm0U$7$F;H$C$F$M!#(B +$B$b$7(B @acronym{NNTP} $B%5!<%P$rJL$N$b$N$K@Z$jBX$($?$H$9$k$H!"A4$F$N%^!<%/$H(B +$B4{FI>pJs$O$b$&Lr$K$ON)$A$^$;$s!#$3$N%3%^%s%I$r;H$C$F4pK\%0%k!<%W$NA4$F$N(B +$B%G!<%?$r%/%j%"$9$k$3$H$,$G$-$^$9!#Cm0U$7$F;H$C$F$M!#(B @end table @node Group Levels @@ -2588,7 +2505,7 @@ Gnus $B$ODL>o!"(B@code{gnus-activate-level} $B$+$=$l$h$j>.$5$$%l%Y%k$N%0%k!<% @cindex making groups $B?7$7$$%0%k!<%W$r:n@.$7$^$9(B (@code{gnus-group-make-group})$B!#(BGnus $B$O%W%m%s(B $B%W%H$rI=<($7$F!"L>A0$HJ}K!$H!">l9g$K$h$C$F$O(B @dfn{address} $B$NF~NO$r5a$a(B -$B$F$-$^$9!#$h$j4JC1$K(B @sc{nntp} $B%0%k!<%W$r9XFI$9$kJ}K!$O!"(B +$B$F$-$^$9!#$h$j4JC1$K(B @acronym{NNTP} $B%0%k!<%W$r9XFI$9$kJ}K!$O!"(B @pxref{Browse Foreign Server}$B!#(B @item G n @@ -2750,10 +2667,10 @@ kiboze $B%0%k!<%W$r:n@.$7$^$9!#%W%m%s%W%H$GL>A0$H!"(Bkiboze $B%0%k!<%W$K!V4^$ @vindex gnus-activate-foreign-newsgroups $B$b$7(B @code{gnus-activate-foreign-newsgroups} $B$,@5$N?t$G$"$l$P!"(Bgnus $B$O5/(B $BF0;~$K!"$3$N?t$+$=$l$h$j$b>.$5$$%l%Y%k$N30It%0%k!<%W$rA4$F%A%'%C%/$7$^$9!#(B -$B$3$l$OFC$K0c$C$?(B @sc{nntp} $B%5!<%P$+$i$?$/$5$s$N%0%k!<%W$r9XFI$7$F$$$k>l(B -$B9g$J$I!"$7$P$i$/;~4V$,$+$+$k$+$b$7$l$^$;$s!#(B@pxref{Group Levels} $B$b;2>H(B -$B$7$F2<$5$$!#(B@code{gnus-activate-level} $B$b30It%K%e!<%9%0%k!<%W$N3hF02=$K(B -$B1F6A$r5Z$\$7$^$9!#(B +$B$3$l$OFC$K0c$C$?(B @acronym{NNTP} $B%5!<%P$+$i$?$/$5$s$N%0%k!<%W$r9XFI$7$F$$(B +$B$k>l9g$J$I!"$7$P$i$/;~4V$,$+$+$k$+$b$7$l$^$;$s!#(B@pxref{Group Levels} $B$b(B +$B;2>H$7$F2<$5$$!#(B@code{gnus-activate-level} $B$b30It%K%e!<%9%0%k!<%W$N3hF0(B +$B2=$K1F6A$r5Z$\$7$^$9!#(B @node Group Parameters @section $B%0%k!<%W%Q%i%a!<%?(B @@ -2936,8 +2853,8 @@ Manual} $B$r8+$F2<$5$$!#(B $BL$FI!"4{FI5-;v$NN>J}$rA4$FI=<($7$^$9!#(B @item an integer -$B$=$N%0%k!<%W$N:G8e$N(B @var{integer} $B8D$N5-;v$rI=<($7$^$9!#$3$l$O(B C-u -@var{integer} $B$G$=$N%0%k!<%W$KF~$k$N$HF1$8$G$9!#(B +$B$=$N%0%k!<%W$N:G8e$N(B @var{integer} $B8D$N5-;v$rI=<($7$^$9!#$3$l(B +$B$O(B @kbd{C-u @var{integer}} $B$G$=$N%0%k!<%W$KF~$k$N$HF1$8$G$9!#(B @item default $B=i4|@_Dj$G$NI=<(5-;v$rI=<($7$^$9!#$3$l$ODL>o$OL$FI5-;v$H0uIU$-5-;v$G$9!#(B @@ -3018,9 +2935,9 @@ See also @code{gnus-group-ignored-charsets-alist}. @item banner @cindex banner -@code{(banner . "regex")} $B$N$h$&$J9`L\$O!"5-;v$N$9$Y$F$N>l=j$G@55,I=(B -$B8=(B "regex" $B$K%^%C%A$9$k$b$N$r:o=|$7$^$9!#(B"regex" $B$NBe$o$j$K%7%s%\(B -$B%k(B @code{signature} ($B:G8e$N=pL>$r:o(B +@code{(banner . @var{regex})} $B$N$h$&$J9`L\$O!"5-;v$N$9$Y$F$N>l=j$G@55,I=(B +$B8=(B @var{regex} $B$K%^%C%A$9$k$b$N$r:o=|$7$^$9!#(B@var{regex} $B$NBe$o$j$K%7%s(B +$B%\%k(B @code{signature} ($B:G8e$N=pL>$r:o(B $B=|(B) $B$dO"A[%j%9%H(B @code{gnus-article-banner-alist} $B$N3FMWAG$r;H$&$3$H$b$G(B $B$-$^$9!#(B @@ -3604,8 +3521,7 @@ Gnus * Topic Variables:: Lisp $B$G%H%T%C%/$r%+%9%?%^%$%:$9$kJ}K!(B * Topic Sorting:: $B%H%T%C%/KhJL!9$KJB$YBX$($k(B * Topic Topology:: $BA4@$3&$NCO?^(B -* Topic Parameters:: $B$"$k%H%T%C%/$NA4$F$N%0%k!<%W$KE,MQ$5$l$k(B - $B%Q%i%a!<%?(B +* Topic Parameters:: $B$"$k%H%T%C%/$NA4$F$N%0%k!<%W$KE,MQ$5$l$k%Q%i%a!<%?(B @end menu @node Topic Commands @@ -4035,11 +3951,9 @@ Gnus @section $B$=$NB>$N%0%k!<%W4XO"(B @menu -* Scanning New Messages:: Gnus $B$K?7$7$$%a%C%;!<%8$,E~Ce$7$?$+$I$&(B - $B$+$rJ9$/(B +* Scanning New Messages:: Gnus $B$K?7$7$$%a%C%;!<%8$,E~Ce$7$?$+$I$&$+$rJ9$/(B * Group Information:: $B%0%k!<%W$H(B gnus $B$K4X$9$k>pJs$H%X%k%W(B -* Group Timestamp:: Gnus $B$K:G8e$K$$$D%0%k!<%W$rFI$s$@$+$r5-(B - $BO?$5$;$k(B +* Group Timestamp:: Gnus $B$K:G8e$K$$$D%0%k!<%W$rFI$s$@$+$r5-O?$5$;$k(B * File Commands:: Gnus $B$N%U%!%$%k$NFI$_=q$-(B * Sieve Commands:: Sieve $B%9%/%j%W%H$N4IM}(B @end menu @@ -4190,14 +4104,15 @@ Gnus $B$r%j%9%?!<%H$7$^$9(B (@code{gnus-group-restart})$B!#$3$l(B @kindex H f ($B%0%k!<%W(B) @findex gnus-group-fetch-faq @vindex gnus-group-faq-directory -@cindex FAQ +@cindex @acronym{FAQ} @cindex ange-ftp -$B8=:_$N%0%k!<%W$N(B FAQ $B$ro%j%b!<%H%^%7%s>e$N%G%#%l%/%H%j$G$9!#$3$NJQ?t$O%G%#%l%/%H%j$N%j%9(B -$B%H$G$"$C$F$b9=$$$^$;$s!#$3$N>l9g!"$3$N%3%^%s%I$K%W%l%U%#%C%/%9$rM?$($k$3(B -$B$H$G$$$/$D$+$N%5%$%H$NCf$+$iA*$V$3$H$,$G$-$^$9!#%U%!%$%k$No%j%b!<%H%^%7%s>e$N%G%#%l%/%H%j$G$9!#$3$NJQ?t$O%G%#%l%/(B +$B%H%j$N%j%9%H$G$"$C$F$b9=$$$^$;$s!#$3$N>l9g!"$3$N%3%^%s%I$K%W%l%U%#%C%/%9(B +$B$rM?$($k$3$H$G$$$/$D$+$N%5%$%H$NCf$+$iA*$V$3$H$,$G$-$^$9!#%U%!%$%k$Nl9g!"(B gnus $B$O(B @code{gnus-group-faq-directory} $B$NCM$rA4$F!"0l$D0l$D%*!<%W%s$7$F(B @@ -4431,21 +4346,17 @@ if address "sender" "owner-ding@@hpc.uh.edu" @{ * Paging the Article:: $BFI$s$G$$$k5-;v$r%9%/%m!<%k$9$k(B * Reply Followup and Post:: $B5-;v$rEj9F$9$k(B * Delayed Articles:: $B5-;v$r8e$GAw$k(B -* Marking Articles:: $B5-;v$K4{FI$d4|8B@Z$l:o=|2DG=Ey$N0u$rIU$1(B - $B$k(B +* Marking Articles:: $B5-;v$K4{FI$d4|8B@Z$l:o=|2DG=Ey$N0u$rIU$1$k(B * Limiting:: $B35N,%P%C%U%!$K@)8B$r2C$($k$3$H$,$G$-$k(B * Threading:: $B%9%l%C%I$,$I$N$h$&$K:n$i$l$k$+(B -* Sorting the Summary Buffer:: $B%9%l%C%I$H5-;v$,$I$N$h$&$KJB$S$+$($i$l$k(B - $B$+(B +* Sorting the Summary Buffer:: $B%9%l%C%I$H5-;v$,$I$N$h$&$KJB$S$+$($i$l$k$+(B * Asynchronous Fetching:: Gnus $B$O5-;v$r@h$KC5n$7$J$/$5$;$k(B * Article Backlog:: $B4{$KFI$s$@5-;v$r;D$7$F$*$/(B * Saving Articles:: $B5-;v$NJ]B8$r%+%9%?%^%$%:$9$kJ}K!(B -* Decoding Articles:: Gnus $B$O0lO"$N(B (uu)encode $B$5$l$?5-;v$r07(B - $B$($k(B -* Article Treatment:: $B5-;v%P%C%U%!$O$*K>$_$I$*$j$KL\Cc6lCc$K$G(B - $B$-$k(B +* Decoding Articles:: Gnus $B$O0lO"$N(B (uu)encode $B$5$l$?5-;v$r07$($k(B +* Article Treatment:: $B5-;v%P%C%U%!$O$*K>$_$I$*$j$KL\Cc6lCc$K$G$-$k(B @c * MIME Commands:: Doing MIMEy things with the articles. @c * Charsets:: Character set issues. * Article Commands:: $B5-;v%P%C%U%!$G$$$m$$$m$J$3$H$r$9$k(B @@ -4453,15 +4364,11 @@ if address "sender" "owner-ding@@hpc.uh.edu" @{ * Finding the Parent:: $B;R5-;v$,C5$;$J$$$C$F(B? $B?F5-;v$r$N$I$N>l=j$K$b9g$o$J$+$C$?$b$N(B -* Exiting the Summary Buffer:: $B%0%k!<%W%P%C%U%!$KLa$k!"(B - $B$^$?$O8=:_$N%0%k!<%W$r:F$SA*Br$9$k(B -* Crosspost Handling:: $B%/%m%9%]%9%H$5$l$?5-;v$,$I$N$h$&$K07$o$l(B - $B$k$+(B -* Duplicate Suppression:: $B%/%m%9%]%9%H$N07$$$K<:GT$7$?$H$-$NBeBXA0$rI=<($7$J$$J}K!(B * Summary Buffer Mode Line:: $B%b!<%I9T$N8+$(J}$r7h$a$i$l$k(B * Summary Highlighting:: $B35N,%P%C%U%!$r$-$l$$$GAGE($K$9$k(B @@ -4578,8 +4484,8 @@ Gnus $B$OJQ?t(B @code{gnus-extract-address-components} $B$NCM$r(B @code{From @end example $B0J2<$N%*%W%7%g%s$G8+1I$($r%+%9%?%^%$%:$9$k$3$H$,$G$-$^$9!#%G%#%U%)%k%H(B -$B$N(B ASCII $BJ8;z$r@~IA2hMQ$N?^0F$GCV$-49$($k$3$H$K$h$C$F!"%9%l%C%II=<($rl9g$O!"$3$NJQ?t$rJQ99$7$?8e$K%5!<%P!<%P%C%U%!$K(B @kbd{^} $B$GF~$C$FE,(B -$B@Z$J%a!<%k%5!<%P!<(B ($BNc$($P(B nnml) $B$G(B @kbd{g} $B$r2!$7!":F@8@.$9$kI,MW$,$"$j(B -$B$^$9!#(B +$B4XO"$7$?JQ?t$O(B @code{nnmail-extra-headers} $B$G!"(B +overview (@acronym{NOV}) $B%U%!%$%k$K$$$DDI2C$N%X%C%@!<$r4^$a$k$+$r@)8f$7(B +$B$^$9!#8E$$(B overview $B%U%!%$%k$,$"$k>l9g$O!"$3$NJQ?t$rJQ99$7$?8e$K%5!<%P!<(B +$B%P%C%U%!$K(B @kbd{^} $B$GF~$C$FE,@Z$J%a!<%k%5!<%P!<(B ($BNc$((B +$B$P(B nnml) $B$G(B @kbd{g} $B$r2!$7!":F@8@.$9$kI,MW$,$"$j$^$9!#(B @vindex gnus-summary-line-format gnus $B$K!"(B@code{gnus-summary-line-format} $BJQ?t$N(B @code{%n} $B;EMM(B @@ -4768,9 +4674,9 @@ gnus $B$K!"(B@code{gnus-summary-line-format} $BJQ?t$N(B @code{%n} $B;EMM(B $B%K%e!<%94IM}?M!"$^$?$O%K%e!<%94IM}?M$r@bF@$7$F%5%]!<%H$NDI2C$r$7$F$b$i$*(B $B$&$H;W$C$F$$$k%f!<%6!<$N$_$J$5$s$X$N$4Cm0U(B: -$B>e5-$N$3$H$O!":n@.$5$l$k(B @sc{nov} $B%U%!%$%k$rA`:n$G$-$k%a!<%k%0%k!<%W$G$O(B -$B$?$$$F$$$N>l9gLrN)$A$^$9!#$7$+$7!"4IM}?M$r@bF@$7$F(B ($BFC$K(B INN $B$NIaDL$Ne5-$N$3$H$O!":n@.$5$l$k(B @acronym{NOV} $B%U%!%$%k$rA`:n$G$-$k%a!<%k%0%k!<(B +$B%W$G$O$?$$$F$$$N>l9gLrN)$A$^$9!#$7$+$7!"4IM}?M$r@bF@$7$F(B ($BFC$K(B INN $B$NIa(B +$BDL$NJ,$J5-;v$NMW5a$H!"M>J,$J@\B3$G!#(B +$B5-;v$N@h(B-$BJ,$J5-;v$NMW5a$H!"M>J,$J@\B3$G!#(B $B$O$$!"$3$l$GK\Ev$O$3$N$h$&$J$3$H$r$9$Y$-$GL5$$;v$,J,$+$C$?$G$7$g(B $B$&(B@dots{} $BK\Ev$K$=$&$7$?$$$H;W$o$J$$8B$j$O!#(B @@ -6975,12 +6879,12 @@ Gnus $B$O$"$J$?$,FI$`$G$"$m$&5-;v$h$j$b$?$/$5$s$N5-;v$ro$K(B}$BCY$$(B @sc{nntp} $B@\B3$G$"$k$J$i$P!"5-;v%-%c%C%7%e$r$9$k$3(B -$B$H$r9M$($k$+$b$7$l$^$;$s!#$=$&$9$k$H!"$=$l$>$l$N5-;v$O$"$J$?$N%[!<%`%G%#(B -$B%l%/%H%j$N2<$K%m!<%+%k$KN/$a$i$^$9!#4{$K?dB,$5$l$F$$$k$+$bCN$l$^$;$s$,!"(B -$B$3$l$O(B @emph{$B5pBg$J(B}$B%G%#%9%/%9%Z!<%9$r?)$$!"(Bi$B%N!<%I$bHs>o$KB.$/?)$$$D$V(B -$B$92DG=@-$,$"$k$?$a!"$=$l$O$"$J$?$NF,$r1K$,$;$k;v$K$J$k$+$b$7$l$^$;$s!#(B -$B%&%)%C%+$NCf$G!#(B +$B$b$7(B@emph{$BHs>o$K(B}$BCY$$(B @acronym{NNTP} $B@\B3$G$"$k$J$i$P!"5-;v%-%c%C%7%e$r(B +$B$9$k$3$H$r9M$($k$+$b$7$l$^$;$s!#$=$&$9$k$H!"$=$l$>$l$N5-;v$O$"$J$?$N%[!<(B +$B%`%G%#%l%/%H%j$N2<$K%m!<%+%k$KN/$a$i$^$9!#4{$K?dB,$5$l$F$$$k$+$bCN$l$^$;(B +$B$s$,!"$3$l$O(B @emph{$B5pBg$J(B}$B%G%#%9%/%9%Z!<%9$r?)$$!"(Bi$B%N!<%I$bHs>o$KB.$/?)(B +$B$$$D$V$92DG=@-$,$"$k$?$a!"$=$l$O$"$J$?$NF,$r1K$,$;$k;v$K$J$k$+$b$7$l$^$;(B +$B$s!#%&%)%C%+$NCf$G!#(B $B$G$bCm0U?<$/;H$o$l$l$P!"$=$l$O5-;v$rJ]B8$9$k4JC1$JJ}K!$K$J$jF@$^$9!#(B @@ -7002,7 +6906,8 @@ Gnus $B$O$"$J$?$,FI$`$G$"$m$&5-;v$h$j$b$?$/$5$s$N5-;v$rJ}$H$b%7%s%\%k$N%j%9%H$G$9!#A0/(B -$B$J$/$9$k0l$D$NJ}K!$O!"M_$7$/$J$$5-;v$N%9%3%"$rDc$/$7!"4{FI$N0u$rIU$1$k;v(B -$B$G$9!#$=$&$7$?>l9g!"$=$l$i$O$3$NL?Na$G$O%@%&%s%m!<%I$5$l$^$;$s!#(B +$B/$J$/$9$k0l$D$NJ}K!$O!"M_$7$/$J$$5-;v$N%9%3%"$rDc$/$7!"4{FI$N0u$rIU$1(B +$B$k;v$G$9!#$=$&$7$?>l9g!"$=$l$i$O$3$NL?Na$G$O%@%&%s%m!<%I$5$l$^$;$s!#(B @vindex gnus-uncacheable-groups @vindex gnus-cacheable-groups @@ -7040,9 +6945,9 @@ Gnus $B$O$"$J$?$,FI$`$G$"$m$&5-;v$h$j$b$?$/$5$s$N5-;v$r$NItJ,(B) $B$,2?$i$+$NM}M3$G$0$A$c$0$A$c$K$J$C$F$7$^$C$?>l9g!"(B gnus $B$OJ*;v$r@5$7$/$9$k$?$a$KFs$D$N4X?t$r$*4+$a$7$^$9!#(B -@kbd{M-x gnus-cache-generate-nov-databases} $B$O$9$Y$F$N(B @sc{nov} $B%U%!%$%k(B -$B$r(B ($B:F(B) $B:n@.$7!"(B@kbd{gnus-cache-generate-active} $B$O%"%/%F%#%V%U%!%$%k(B -$B$r(B ($B:F(B) $B:n@.$7$^$9!#(B +@kbd{M-x gnus-cache-generate-nov-databases} $B$O$9$Y$F$N(B @acronym{NOV} $B%U%!(B +$B%$%k$r(B ($B:F(B) $B:n@.$7!"(B@kbd{gnus-cache-generate-active} $B$O%"%/%F%#%V%U%!%$(B +$B%k$r(B ($B:F(B) $B:n@.$7$^$9!#(B @findex gnus-cache-move-cache @code{gnus-cache-move-cache} $B$O$9$Y$F$N(B @code{gnus-cache-directory} $B$r$I(B @@ -7200,9 +7105,9 @@ Prefixes}) $B$,M?$($i$l$k$H!"%Q%$%W$X$N=PNO$K40A4$J%X%C%@!<$r4^$a$^$9!#(B @kindex O P ($B35N,(B) @findex gnus-summary-muttprint @vindex gnus-summary-muttprint-program -$B8=:_$N5-;v$r(B muttprint $B$KJ]B8$7$^$9!#$3$l$O!"30It%W%m%0%i%`(B Muttprint -(@uref{http://muttprint.sourceforge.net/} $B;2>H(B) $B$r;H$C$F5-;v$r0u:~$7$^$9!#(B -$B%W%m%0%i%`L>$H;HMQ$9$k%*%W%7%g%s$O!"JQ(B +$B8=:_$N5-;v$r(B muttprint $B$KJ]B8$7$^$9!#$3$l$O30It%W%m%0%i(B +$B%`(B @uref{http://muttprint.sourceforge.net/, Muttprint} $B$r;H$C$F5-;v$r0u(B +$B:~$7$^$9!#%W%m%0%i%`L>$H;HMQ$9$k%*%W%7%g%s$O!"JQ(B $B?t(B @code{gnus-summary-muttprint-program} $B$G;XDj$5$l$^$9!#(B (@code{gnus-summary-muttprint})$B!#(B @end table @@ -7286,7 +7191,7 @@ MH $B%i%$%V%i%j!<$N(B @code{rcvstore} $B$rMQ$$$k;v$K$h$C$F5-;v$r(B MH $B%U% @end table @vindex gnus-article-save-directory -$B$3$l$i$NA4$F$N4X?t$O:G8e$N0l$D$r=|$$$F!"4D6-JQ?t(B @code{SAVEDIR} $B$K$h$C$F(B +$B$3$l$i$NA4$F$N4X?t$O:G8e$N0l$D$r=|$$$F!"4D6-JQ?t(B @env{SAVEDIR} $B$K$h$C$F(B $B=i4|2=$5$l$k(B @code{gnus-article-save-directory} $B$K5-;v$rJ]B8$7$^$9!#$3$l(B $B$O%G%#%U%)%k%H$G$O(B @file{~/News/} $B$G$9!#(B @@ -7382,9 +7287,9 @@ gnus $B$,J]B8$9$k5-;v$N(B @code{Archive-name} $B9T$rD4$Y$F!"$=$l$r%U%!%$%kL>$ $B$b$75-;v$r%9%W!<%k$N$h$&$J3,AX$KJ]B8$7$?$$$N$G$"$l$P!"$NI|9f2=$NJQ?t(B * Uuencoding and Posting:: uuencode $B$9$k$N$r%+%9%?%^%$%:$9$kJQ?t(B @end menu @@ -7637,10 +7541,10 @@ Gnus $B$O%U%!%$%k$r1\Mw$9$k$N$r7hDj$9$k$N$K(B@dfn{$B5,B'JQ?t(B}$B$rMQ$$$^$9 @item gnus-uu-ignore-files-by-type @vindex gnus-uu-ignore-files-by-type -$B$3$NJQ?t$K9gCW$9$k(B @sc{mime} $B$N7?$r;}$D%U%!%$%k$O1\Mw$5$l$^$;$s!#(BGnus $B$O(B -$B%U%!%$%kL>$K4p$E$$$F7?$r?dB,$7$F$$$k;v$KCm0U$7$F$/$@$5$$!#(B -@code{gnus-uu} $B$O(B ($B$^$@(B) @sc{mime} $B%Q%C%1!<%8$G$O$"$j$^$;$s$N$G!"$3$l$O(B -$B>/$7JQ$G$9!#(B +$B$3$NJQ?t$K9gCW$9$k(B @acronym{MIME} $B$N7?$r;}$D%U%!%$%k$O1\Mw$5$l$^$;$s!#(B +gnus $B$O%U%!%$%kL>$K4p$E$$$F7?$r?dB,$7$F$$$k;v$KCm0U$7$F$/$@$5$$!#(B +@code{gnus-uu} $B$O(B ($B$^$@(B) @acronym{MIME} $B%Q%C%1!<%8$G$O$"$j$^$;$s$N$G!"$3(B +$B$l$O>/$7JQ$G$9!#(B @item gnus-uu-tmp-dir @vindex gnus-uu-tmp-dir @@ -7689,8 +7593,8 @@ Gnus $B$O%U%!%$%k$r1\Mw$9$k$N$r7hDj$9$k$N$K(B@dfn{$B5,B'JQ?t(B}$B$rMQ$$$^$9 @vindex gnus-uu-view-with-metamail @cindex metamail @code{nil} $B$G$J$$$N$O!"(B@code{gnus-uu} $B$O5,B'JQ?t$GDj5A$5$l$?1\MwL?Na$rL5(B -$B;k$7$F!"%U%!%$%kL>$K4p$E$$$?(B @sc{mime} $BFbMF$N7?$K$K4p$E$$$?(B @acronym{MIME} $BFbMF$N7?$KpJs$O>C$75n$j$?$$$H$b;W$&(B -* Article Washing:: $B?M@8$r$b$C$H$h$/$9$k$?$/$5$s$N5$$NMx$$$?(B - $B4X?t(B +* Article Washing:: $B?M@8$r$b$C$H$h$/$9$k$?$/$5$s$N5$$NMx$$$?4X?t(B * Article Header:: $B%X%C%@!<$r$$$m$$$mJQ7A$5$;$k(B -* Article Buttons:: URL $B$d(B Message-ID $B$d%"%I%l%9$J$I$r%/%j%C(B - $B%/$9$k(B +* Article Buttons:: URL $B$d(B Message-ID $B$d%"%I%l%9$J$I$r%/%j%C%/$9$k(B * Article Button Levels:: $B%\%?%s$N8+$(J}$r@)8f$9$k(B * Article Date:: $B$0$:$0$:8@$&$J!"@$3&;~$@(B! * Article Display:: X-Face, Picons, Smileys $B$rI=<($9$k(B @@ -7937,7 +7838,11 @@ Fonts})$B!#F1$8%a%C%;!<%8$NCf$KJ#?t$N5-;v$+$i$N0zMQ$,$"$k$H!"(Bgnus $B$O$=$l$ @vindex gnus-emphasis-bold-italic @vindex gnus-emphasis-underline-bold-italic $B=i4|@_Dj$G$O<7$D$N5,B'$,$"$j!"$=$l$i$O0J2<$N%U%'%$%9$rMQ$$$^(B -$B$9(B: @code{gnus-emphasis-bold}, @code{gnus-emphasis-italic}, @code{gnus-emphasis-underline}, @code{gnus-emphasis-bold-italic}, @code{gnus-emphasis-underline-italic}, @code{gnus-emphasis-underline-bold}, @code{gnus-emphasis-underline-bold-italic}. +$B$9(B: @code{gnus-emphasis-bold}, @code{gnus-emphasis-italic}, +@code{gnus-emphasis-underline}, @code{gnus-emphasis-bold-italic}, +@code{gnus-emphasis-underline-italic}, +@code{gnus-emphasis-underline-bold}, +@code{gnus-emphasis-underline-bold-italic}$B!#(B $B$3$l$i$N%U%'%$%9$rJQ99$7$?$$$N$G$"$l$P!"(B @kbd{M-x customize} $B$+(B @code{copy-face} $B$r;H$&;v$,$G$-$^$9!#Nc$($P!"(B @@ -7969,7 +7874,7 @@ Fonts})$B!#F1$8%a%C%;!<%8$NCf$KJ#?t$N5-;v$+$i$N0zMQ$,$"$k$H!"(Bgnus $B$O$=$l$ @kindex W W a ($B35N,(B) @findex gnus-article-hide $B5-;v%P%C%U%!$G$?$/$5$s$N1#F?$r$7$^$9(B (@kbd{gnus-article-hide})$B!#FC$K!"$3(B -$B$N4X?t$O%X%C%@!$r1#$7$^$9!#(B +$B$N4X?t$O%X%C%@!$r1#$7$^$9!#(B @item W W h @kindex W W h ($B35N,(B) @@ -8010,8 +7915,8 @@ Fonts})$B!#F1$8%a%C%;!<%8$NCf$KJ#?t$N5-;v$+$i$N0zMQ$,$"$k$H!"(Bgnus $B$O$=$l$ @item W W P @kindex W W P ($B35N,(B) @findex gnus-article-hide-pem -@sc{pem} (privacy enhanced messages ($B%W%i%$%P%7!<3HD%%a%C%;!<%8(B)) $BItJ,$r(B -$B1#$7$^$9(B (@code{gnus-article-hide-pem})$B!#(B +@acronym{PEM} (privacy enhanced messages ($B%W%i%$%P%7!<3HD%%a%C%;!<(B +$B%8(B)) $BItJ,$r1#$7$^$9(B (@code{gnus-article-hide-pem})$B!#(B @item W W B @kindex W W B ($B35N,(B) @@ -8196,7 +8101,7 @@ gnus $B$,5-;v$rI=<($9$k4{Dj$N$d$jJ}$rJQ$($?$$$H$-(B @item W m @kindex W m ($B35N,(B) @findex gnus-summary-toggle-mime -$BI=<($9$kA0$K5-;v$K(B @sc{mime} $B=hM}$r!\$7$/$O(B @uref{http://emacs-w3m.namazu.org/} $B$r;2(B -$B>H$7$F2<$5$$(B)$B!#(B +@uref{http://emacs-w3m.namazu.org/, emacs-w3m} $B$r;H$$$^$9!#(B @item links -Links $B$r;H$$$^(B -$B$9(B (@uref{http://artax.karlin.mff.cuni.cz/~mikulas/links/} $B$r;2>H(B)$B!#(B +@uref{http://links.sf.net/, Links} $B$r;H$$$^$9!#(B @item lynx -Lynx $B$r;H$$$^$9(B (@uref{http://lynx.browser.org/} $B$r;2>H(B)$B!#(B +@uref{http://lynx.isc.org/, Lynx} $B$r;H$$$^$9!#(B @item html2text -html2text ($B%7%s%W%k$J(B @sc{html} $B%3%s%P!<%?!o$=$N%K%e!<%9%0%k!<%W3,AX$N%a%$%s%F%$%J!<$K$h$C$F=pL>$5$l$F$$$^$9!#G'(B -$B>Z$r9T$J$&$?$a$K$O!"%a%$%s%F%$%J!<$N8x3+80$r$"$J$?$N%-!<%j%s%0$KDI2C$7$J(B -$B$1$l$P$J$j$^$;$s!#(B@footnote{$BB?$/$N%K%e!<%9%0%k!<%W3,AX$N%a%$%s%F%$%J!<(B -$B$N(B PGP $B$N80$O(B @uref{ftp://ftp.isc.org/pub/pgpcontrol/README.html} $B$+$iF~(B -$BZ$r9T$J$&$?$a$K$O!"%a%$%s%F%$%J!<$N(B @acronym{PGP} $B8x3+80$r$"$J$?$N%-!<(B +$B%j%s%0$KDI2C$7$J$1$l$P$J$j$^$;$s!#(B@footnote{$BB?$/$N%K%e!<%9%0%k!<%W3,AX$N(B +$B%a%$%s%F%$%J!<$N(B @acronym{PGP} $B$N80(B +$B$O(B @uref{ftp://ftp.isc.org/pub/pgpcontrol/README.html} $B$+$iF~H$K(B@dfn{$B%\%?%s(B}$B$rIU$1$^$9(B: $B$=$l$>$l$NF~NOMWAG$," (gnus-button-emacs-level 10)) ("\\" (gnus-button-man-level 10)) @@ -8665,8 +8572,8 @@ Message-ID$B!"%a!<%k%"%I%l%9$*$h$S%K%e!<%9$N(B URL $B$NI=<($r@)8f$7$^$9!#4XO" @item gnus-button-tex-level @vindex gnus-button-tex-level -Tex $B$^$?$O(B LaTex $B$K4X$9$k;29MJ88%!"Nc$($P(B CTAN $B$N(B URL$B!"$NI=<($r@)8f$7$^(B -$B$9!#JQ?t(B @code{gnus-ctan-url}, +@TeX{} $B$^$?$O(B LaTex $B$K4X$9$k;29MJ88%!"Nc$($P(B CTAN $B$N(B URL$B!"$NI=<($r@)8f$7(B +$B$^$9!#JQ?t(B @code{gnus-ctan-url}, @code{gnus-button-ctan-handler}, @code{gnus-button-ctan-directory-regexp} $B$*$h$S(B @code{gnus-button-handle-ctan-bogus-regexp} $B$r;2>H$7$F2<$5$$!#(B @@ -8835,13 +8742,13 @@ gnus $B$G%a!<%k$rFI$`$3$H$NM-Mx$JE@$O!"C1=c$J%P%0$rAG@2$i$7$$IT>rM}$KCV$-(B @lisp (setq gnus-signature-separator - '("^-- $" ; $BI8=`(B - "^-- *$" ; $BIaDL$N2u$7J}(B - "^-------*$" ; $BB?$/$N?M$OD9!rM}$KCV$-(B @findex gnus-summary-refer-parent-article $B8=:_$N5-;v$N?F5-;v$rFI$_$?$/$F!"$=$l$,35N,%P%C%U%!$KI=<($5$l$F$$$J$/$F$b!"(B $B$*$=$i$/$=$l$O2DG=$G$7$g$&!#$H$$$&$N$O!"8=:_$N%0%k!<%W(B -$B$,(B @sc{nntp} $B$GC5n$5$l$F$$$J$$>e!"8=:_$N5-(B -$B;v$N(B @code{References} $B$,$V$A2u$5$l$F$$$J$1$l$P!"$?$@!"(B +$B$,(B @acronym{NNTP} $B$GC5n$5$l$F$$$J$$>e!"8=:_(B +$B$N5-;v$N(B @code{References} $B$,$V$A2u$5$l$F$$$J$1$l$P!"$?$@!"(B @kbd{^} $B$+(B @kbd{A r} $B$r2!$;$PNI$$$@$1$G(B $B$9(B (@code{gnus-summary-refer-parent-article})$B!#$b$7A4$F$,>erM}$KCV$-(B @kindex M-^ ($B35N,(B) @cindex Message-ID @cindex fetching by Message-ID -$B$I$N%0%k!<%W$KB0$7$F$$$k$+$K4X$o$i$:!"G$0U$N5-;v$r(B @sc{nntp} $B%5!<%P!<$K(B -$B?R$M$k;v$,$G$-$^$9!#(B +$B$I$N%0%k!<%W$KB0$7$F$$$k$+$K4X$o$i$:!"G$0U$N5-;v$r(B @acronym{NNTP} $B%5!<%P!<(B +$B$K?R$M$k;v$,$G$-$^$9!#(B @kbd{M-^} (@code{gnus-summary-refer-article}) $B$O(B @code{Message-ID}$B!"$=$l(B $B$O$"$ND9$/!"$J$+$J$+FI$`;v$N$G$-$J(B $B$$(B @samp{<38o6up$6f2@@hymir.ifi.uio.no>} $B$N$h$&$J;2>H$r$"$J$?$K?R$M$^$9!#(B @@ -9035,10 +8942,10 @@ gnus $B$G%a!<%k$rFI$`$3$H$NM-Mx$JE@$O!"C1=c$J%P%0$rAG@2$i$7$$IT>rM}$KCV$-(B @vindex gnus-refer-article-method $B$b$7$"$J$?$NFI$s$G$$$k%0%k!<%W$,(B @code{Message-ID} $B$G$Nl9g!"(B -@code{gnus-refer-article-method} $B$r(B @sc{nntp} $B$K@_Dj$9$k;v$,$G$-$^$9!#$*(B -$B$=$i$/!"$"$J$?$,2qOC$7$F$$$k(B @sc{nntp} $B%5!<%P!<$,$"$J$?$NFI$s$G$$$k%9%W!<(B -$B%k$r99?7$7$F$$$k$HHs>o$KNI$$$G$7$g$&!#$7$+$7!"$=$l$O$I$&$7$F$bI,MW$J$o$1(B -$B$G$O$"$j$^$;$s!#(B +@code{gnus-refer-article-method} $B$r(B @acronym{NNTP} $B$K@_Dj$9$k;v$,$G$-$^(B +$B$9!#$*$=$i$/!"$"$J$?$,2qOC$7$F$$$k(B @acronym{NNTP} $B%5!<%P!<$,$"$J$?$NFI$s(B +$B$G$$$k%9%W!<%k$r99?7$7$F$$$k$HHs>o$KNI$$$G$7$g$&!#$7$+$7!"$=$l$O$I$&$7$F(B +$B$bI,MW$J$o$1$G$O$"$j$^$;$s!#(B $B$=$l$OA*BrJ}K!$N%j%9%H$G$"$k$3$H$b$G$-!"FCJL$J%7%s%\%k(B @code{current} $B$G(B $B$"$k$3$H$b$G$-$^$9!#8e))} $B$G$9!#(B @item gnus-tree-parent-child-edges @@ -9559,13 +9466,14 @@ Gnus $B$,F1$8(B @code{Message-ID} $B$r;}$DFs$D$N5-;v$rH/8+$7$?$H$-$O!"2?$+;W$ @kindex H f ($B35N,(B) @findex gnus-summary-fetch-faq @vindex gnus-grou-faq-directory -$B8=:_$N%0%k!<%W$N(B FAQ (frequently asked questions ($BIQHK$K$5$l$kl9g$O!"$3$NL?Na$K@\F,0z?t$rM?$($k;v$G$$$m$$$m$J%5%$(B -$B%H(B (site) $B$+$iA*$V;v$,$G$-$^$9!#$*$=$i$/(B @code{ange-ftp} $B$b$7$/(B -$B$O(B @code{efs} $B$,%U%!%$%k$Nl9g$O!"$3$N(B +$BL?Na$K@\F,0z?t$rM?$($k;v$G$$$m$$$m$J%5%$%H(B (site) $B$+$iA*$V;v$,$G$-$^$9!#(B +$B$*$=$i$/(B @code{ange-ftp} $B$b$7$/$O(B @code{efs} $B$,%U%!%$%k$No$KNI$$$G$9!"$H$$$&$N(B -$B$O$=$l$OB.EY$r$H$F$bB.$/$9$k$+$i$G$9(B) $B$N;HMQ2DG=$J(B @sc{nntp} $B%5!<%P!<$r(B -$B;H$C$F$$$k$3$H$G$9!#$3$l$O320-$J$N$G$9$,!"$"$!!"Ha$7$$$+$J!"Hs>o$KNI$/$"(B -$B$k;v$G$9!#(BGnus $B$O$"$J$?$,FI$s$@A4$F$N5-;v$K(B @code{Xref} $B9T$rEPO?$9$k;v$G!"(B -$B@5$7$$;v$r$7$h$&$H$7$^$9$,!"5-;v$r:o=|$9$k$+!"FI$^$J$$$G4{FI$N0u$rIU$1$k(B -$B$H!"(Bgnus $B$O$3$l$i$N5-;v$K(B @code{Xref} $B$N9T$r$N$>$-$^$o$k5!2q$rF@$k;v$,L5(B -$B$/!"Aj8_;2>H5!9=$rMQ$$$k;v$,$G$-$^$;$s!#(B +$B$O$=$l$OB.EY$r$H$F$bB.$/$9$k$+$i$G$9(B) $B$N;HMQ2DG=$J(B @acronym{NNTP} $B%5!<%P!<(B +$B$r;H$C$F$$$k$3$H$G$9!#$3$l$O320-$J$N$G$9$,!"$"$!!"Ha$7$$$+$J!"Hs>o$KNI$/(B +$B$"$k;v$G$9!#(BGnus $B$O$"$J$?$,FI$s$@A4$F$N5-;v$K(B @code{Xref} $B9T$rEPO?$9$k;v(B +$B$G!"@5$7$$;v$r$7$h$&$H$7$^$9$,!"5-;v$r:o=|$9$k$+!"FI$^$J$$$G4{FI$N0u$rIU(B +$B$1$k$H!"(Bgnus $B$O$3$l$i$N5-;v$K(B @code{Xref} $B$N9T$r$N$>$-$^$o$k5!2q$rF@$k;v(B +$B$,L5$/!"Aj8_;2>H5!9=$rMQ$$$k;v$,$G$-$^$;$s!#(B @cindex LIST overview.fmt @cindex overview.fmt -$B$"$J$?$N(B @sc{nntp} $B%5!<%P!<$,$=$N354Q%U%!%$(B +$B$"$J$?$N(B @acronym{NNTP} $B%5!<%P!<$,$=$N354Q%U%!%$(B $B%k(B (overview file) $B$K(B @code{Xref} $BMs$r4^$s$G$$$k$+$rD4$Y$k$K$O!"(B @samp{telnet your.nntp.server nntp} $B$H$7$F!"(B@code{inn} $B%5!<%P!<(B $B$G(B @samp{More READER} $B$H$7!"$=$l$+$i(B @samp{LIST overview.fmt} $B$H$9$k;v$r(B @@ -9881,17 +9789,17 @@ Gnus $B$K$$$D$G$b@5$7$$(B @code{Xref} $B$ro$KNI$/$"$k;v$G$9!"$"$!(B -$BHa$7$$!#(B +@acronym{NNTP} $B%5!<%P!<$O(B @file{.overview} $B%G!<%?%Y!<%9$K(B @code{Xref} $BMs(B +$B$r4^$a$k$N$K<:GT$9$k$+$bCN$l$^$;$s!#$3$l$O0-$$;v$G!"Hs>o$KNI$/$"$k;v$G$9!"(B +$B$"$!Ha$7$$!#(B @item -$BF1$8%0%k!<%W(B ($B$b$7$/$O$$$/$D$+$N4XO"$7$?%0%k!<%W(B) $B$r0c$C$?(B @sc{nntp} $B%5!<(B -$B%P!<$+$iFI$s$G$$$k$+$b$7$l$^$;$s!#(B +$BF1$8%0%k!<%W(B ($B$b$7$/$O$$$/$D$+$N4XO"$7$?%0%k!<%W(B) $B$r0c$C(B +$B$?(B @acronym{NNTP} $B%5!<%P!<$+$iFI$s$G$$$k$+$b$7$l$^$;$s!#(B @item $B%0%k!<%W$KEj9F$5$l$?5-;v$H=EJ#$9$k%a!<%k$r(B @@ -10203,29 +10116,29 @@ Gnus $B$O%X%C%@!<$NJB$YBX$((B (sort) $B$b9T$$$^$9(B ($B$3$l$O%G%#%U%)%k%H$G @node Using MIME @section MIME $B$r;H$&(B -@cindex @sc{mime} +@cindex @acronym{MIME} $B%Q%s%H%^%$%`(B (mime) $B$H$O!"0UL#$bL5$/6uCf$G$N$_$@$i$J$b$N$rL5$N$_$@$i$J$b$N(B +$B$rL5\$7$$>pJs$O!"%^%K%e%"%k$r;2>H$7$F$/$@$5(B -$B$$(B ($B$^$@$J$$$1$I(B (;_;))$B!#(B +$B$O(B @acronym{SEMI} MIME-View $B%W%m%0%i%`$r8F$S=P$7$F\$7$$>pJs$O!"%^%K%e%"%k$r;2>H$7$F$/$@(B +$B$5$$(B ($B$^$@$J$$$1$I(B (;_;))$B!#(B -@sc{mime} $B$r>o$K;HMQ$7$?$1$l$P!"(B +@acronym{MIME} $B$r>o$K;HMQ$7$?$1$l$P!"(B @code{gnus-show-mime} $B$r(B @code{t} $B$K@_Dj$7$F$/$@$5$$!#(B @code{gnus-show-mime} $B$r@_Dj$7$F$$$k$H!"1?$,0-$$$H5-;v%P%C%U%!$K$O8N>c$7(B $B$?$h$&$J2hLL$,8+$($k$3$H$b$"$k$G$7$g$&!#$3$l$OHr$1$h$&$,$"$j$^$;$s!#(B @@ -10233,13 +10146,13 @@ Gnus $B$O(B @code{gnus-article-display-method-for-mime} $B$K5-;v$r2!$7IU$1$k$ GNUS $B$d(B Gnus $B$G$O!"$3$N$?$A$N0-$$LdBj$G6C$+$5$l$J$$$h$&$K$9$k$K$O!"35N,(B $B%P%C%U%!$K$*$$$F@Z$jBX$(5!G=$r;H$&$H$$$&$N$,:GA1$+$bCN$l$^$;$s(B ($BNc$($P!"(B @samp{alt.sing-a-long} $B%0%k!<%W$KF~$k$H!"$"$J$?$N5$$E$+$J$$$&$A(B -$B$K(B @sc{mime} $B$O5-;vCf$N%5%&%s%I%U%!%$%k$rI|9f$7$F!"2?$d$i2x$7$2$JD9$$D9(B -$B$$2N$,$"$J$?$N%9%T!<%+!<$+$iBg2;6A$GN.$l=P$7!"$"$J$?$O%\%j%e!<%`%\%?%s$r(B -$B8+$D$1$i$l$:!"$H$$$&$N$O$=$s$J$b$N$O$b$H$b$H$D$$$F$J$$$+$i$G!"$_$s$J$O$"(B -$B$J$?$NJ}$rbK$_$O$8$a!"$"$J$?$O%W%m%0%i%`$r;_$a$h$&$H$9$k$1$I$G$-$J$/$F!"(B -$B%\%j%e!<%`$r@)8f$9$k%W%m%0%i%`$b8+$D$1$i$l$J$/$F!"$=$7$FIt20Cf$NA40w$OFM(B -$BA3$"$J$?$N$3$H$r7ZJN$N4c:9$7$G8+$k$h$&$K$J$C$F$7$^$$!"$"$J$?$O$A$g$C$HLL(B -$BGr$/$J$$;W$$$r$9$k!"$H$+(B)$B!#(B +$B$K(B @acronym{MIME} $B$O5-;vCf$N%5%&%s%I%U%!%$%k$rI|9f$7$F!"2?$d$i2x$7$2$JD9(B +$B$$D9$$2N$,$"$J$?$N%9%T!<%+!<$+$iBg2;6A$GN.$l=P$7!"$"$J$?$O%\%j%e!<%`%\%?(B +$B%s$r8+$D$1$i$l$:!"$H$$$&$N$O$=$s$J$b$N$O$b$H$b$H$D$$$F$J$$$+$i$G!"$_$s$J(B +$B$O$"$J$?$NJ}$rbK$_$O$8$a!"$"$J$?$O%W%m%0%i%`$r;_$a$h$&$H$9$k$1$I$G$-$J$/(B +$B$F!"%\%j%e!<%`$r@)8f$9$k%W%m%0%i%`$b8+$D$1$i$l$J$/$F!"$=$7$FIt20Cf$NA40w(B +$B$OFMA3$"$J$?$N$3$H$r7ZJN$N4c:9$7$G8+$k$h$&$K$J$C$F$7$^$$!"$"$J$?$O$A$g$C(B +$B$HLLGr$/$J$$;W$$$r$9$k!"$H$+(B)$B!#(B $B8=(B @vindex gnus-use-idna @item gnus-use-idna -$B$3$NJQ?t$O(B @sc{From:}$B!"(B@sc{To:} $B$*$h$S(B @sc{Cc:} $B%X%C%@!<$K$"$k9q:]2=%I%a(B -$B%$%sL>$r!"(Bgnus $B$,(B IDNA $B%G%3!<%I$9$k$+$I$&$+$r@)8f$7$^$9!#$3$l$K$O(B GNU -Libidn (@url{http://www.gnu.org/software/libidn/}) $B$,I,MW$G!"$3$NJQ?t$O(B -$B$=$l$r%$%s%9%H!<%k$7$F$"$k>l9g$@$1M-8z$K$J$j$^$9!#(B +$B$3$NJQ?t$O(B @samp{From:}$B!"(B@samp{To:} $B$*$h$S(B @samp{Cc:} $B%X%C%@!<$K$"$k9q:](B +$B2=%I%a%$%sL>$r!"(Bgnus $B$,(B IDNA $B%G%3!<%I$9$k$+$I$&$+$r@)8f$7$^$9!#$3$l$K(B +$B$O(B @uref{http://www.gnu.org/software/libidn/, GNU Libidn} $B$,I,MW$G!"$3$N(B +$BJQ?t$O$=$l$r%$%s%9%H!<%k$7$F$"$k>l9g$@$1M-8z$K$J$j$^$9!#(B @end table @node Composing Messages @@ -10608,16 +10521,12 @@ Libidn (@url{http://www.gnu.org/software/libidn/}) $B$,I,MW$G!"$3$NJQ?t$O(B @menu * Mail:: $B%a!<%k$HJVEz(B -* Posting Server:: $B$I$N%5!<%P!<$rDL$7$F%K%e!<%9$rEj9F$^$?$O(B - $B%a!<%k$rAw?.$9$k$Y$-$+(B? +* Posting Server:: $B$I$N%5!<%P!<$rDL$7$F%K%e!<%9$rEj9F$^$?$O%a!<%k$rAw?.$9$k$Y$-$+(B? * Mail and Post:: $BF1;~$K%a!<%k$r=P$7JVEz$9$k(B -* Archived Messages:: $BAw$C$?%a%C%;!<%8$r(B gnus $B$,Cy$a$F$*$/$H$3(B - $B$m(B -* Posting Styles:: $B$"$J$?$,C/$G$"$k$+$r;XDj$9$k$h$j4JC1$JJ}(B - $BK!(B +* Archived Messages:: $BAw$C$?%a%C%;!<%8$r(B gnus $B$,Cy$a$F$*$/$H$3$m(B +* Posting Styles:: $B$"$J$?$,C/$G$"$k$+$r;XDj$9$k$h$j4JC1$JJ}K!(B * Drafts:: $B%a%C%;!<%8$N1d4|$H5qH]$5$l$?%a%C%;!<%8(B -* Rejected Articles:: $B%5!<%P!<$,$"$J$?$N5-;v$r9%$-$G$J$$$H$-$K(B - $B2?$,5/$3$k(B? +* Rejected Articles:: $B%5!<%P!<$,$"$J$?$N5-;v$r9%$-$G$J$$$H$-$K2?$,5/$3$k(B? @c * Signing and encrypting:: How to compose secure messages. @end menu @@ -10703,8 +10612,8 @@ gnus $B$O>o$KEj9F$K$I$NJ}K!$r;H$&$+$r$"$J$?$K?R$M$^$9!#(B $B?t(B @code{message-send-mail-with-sendmail} $B$O5-;v$r=gHVBT$A$KF~(B $B$l(B (queuing) $B$?$jAw?.$9$k$?$a$K!"%P%$%J%j!<$G(B @code{sendmail} $B$K%Q%$%W$7(B $B$^$9!#%m!<%+%k%7%9%F%`$,(B @code{sendmail} $B$G%a!<%k$rAw?.$9$k$h$&$K@_Dj$5(B -$B$l$F$$$J$/$F$b!"$"$J$?$,1s3V(B @sc{smtp} $B%5!<%P!<$K@\B3$9$k8"Mx$r;}$C$F$$(B -$B$k$J$i$P!"(B +$B$l$F$$$J$/$F$b!"$"$J$?$,1s3V(B @acronym{SMTP} $B%5!<%P!<$K@\B3$9$k8"Mx$r;}$C(B +$B$F$$$k$J$i$P!"(B @code{message-send-mail-function} $B$r(B @code{smtpmail-send-it} $B$K@_Dj$9$k(B $B$3$H$,$G$-$^$9!#(B@code{smtpmail} $B%Q%C%1!<%8$r;H$&$?$a$K@5$7$$@_Dj$,$J$5$l(B $B$F$$$k$+$I$&$+3NG'$7$F2<$5$$!#Nc$G$9(B: @@ -10712,14 +10621,14 @@ gnus $B$O>o$KEj9F$K$I$NJ}K!$r;H$&$+$r$"$J$?$K?R$M$^$9!#(B @lisp (setq message-send-mail-function 'smtpmail-send-it smtpmail-default-smtp-server "YOUR SMTP HOST") -;; FLIM $BHG$N(B smtpmail.el $B$N$?$a$K!"0J2<$NJQ?t$r@_Dj$9$kI,MQ$,$"$j$^$9!#(B -;; $B$I$A$i$N(B smtpmail.el $B$,;H$o$l$k$+$O(B `load-path' $B$K0M$j$^$9!#(B +;; @r{FLIM $BHG$N(B smtpmail.el $B$N$?$a$K!"0J2<$NJQ?t$r@_Dj$9$kI,MQ$,$"$j$^$9!#(B} +;; @r{$B$I$A$i$N(B smtpmail.el $B$,;H$o$l$k$+$O(B `load-path' $B$K0M$j$^$9!#(B} (setq smtp-default-smtp-server "YOUR SMTP HOST") @end lisp $B$3$l$H;w$?$b$N$K(B @code{message-smtpmail-send-it} $B$,$"$j$^$9!#(B -ISP $B$,(B POP-before-SMTP $B$NG'>Z$rMW5a$7$F$$$k>l9g$KM-MQ$G$9!#4X(B -$B?t(B @code{mail-source-touch-pop} $B$N@bL@J8$r8+$F$/$@$5$$!#(B +ISP $B$,(B @acronym{POP}-before-@acronym{SMTP} $B$NG'>Z$rMW5a$7$F$$$k>l9g$KM-(B +$BMQ$G$9!#4X?t(B @code{mail-source-touch-pop} $B$N@bL@J8$r8+$F$/$@$5$$!#(B $BB>$N2DG=$J(B @code{message-send-mail-function} $B$NA*Br;h(B $B$O(B @code{message-send-mail-with-mh}, @@ -10736,10 +10645,10 @@ ISP $B$,(B POP-before-SMTP $B$NG'>Z$rMW5a$7$F$$$k>l9g$KM-MQ$G$9!#4X(B @findex gnus-mailing-list-groups @cindex mailing lists -$B$b$7$"$J$?$N%K%e!<%9%5!<%P!<$,K\Ev$K%a!<%j%s%0%j%9%H$+$i(B @sc{nntp} $B%5!<(B -$B%P!<$X$N%2!<%H%&%'%$$rDs6!$7$F$$$k$N$G$"$l$P!"$=$l$i$N%0%k!<%W$OLdBj$J$/(B -$BFI$a$k$G$7$g$&!#$7$+$74JC1$K$O$=$l$i$KEj9F(B/$B%U%)%m!<%"%C%W$9$k$3$H$O$G$-(B -$B$^$;$s!#0l$D$N2r7hK!$O%0%k!<%W%Q%i%a!<(B +$B$b$7$"$J$?$N%K%e!<%9%5!<%P!<$,K\Ev$K%a!<%j%s%0%j%9%H$+(B +$B$i(B @acronym{NNTP} $B%5!<%P!<$X$N%2!<%H%&%'%$$rDs6!$7$F$$$k$N$G$"$l$P!"$=$l(B +$B$i$N%0%k!<%W$OLdBj$J$/FI$a$k$G$7$g$&!#$7$+$74JC1$K$O$=$l$i$KEj9F(B/$B%U%)%m!<(B +$B%"%C%W$9$k$3$H$O$G$-$^$;$s!#0l$D$N2r7hK!$O%0%k!<%W%Q%i%a!<(B $B%?(B (@pxref{Group Parameters}) $B$K(B @code{to-address} $B$r2C$($k;v$G$9!#4JC1(B $B$K$G$-$k$N$O!"(B@code{gnus-mailing-list-groups} $B$r!"K\Ev$K%a!<%j%s%0%j%9%H(B $B$G$"$k$h$&$J%0%k!<%W$K9gCW$9$k@55,I=8=$K@_Dj$9$k$3$H$G$9!#$=$N8e$O!"$9$/(B @@ -11036,17 +10945,17 @@ from date id references chars lines xref extra $B$N3F%X%C%@!<$+$i@.$k%Y%/(B (organization "People's Front Against MWM")) ("^rec.humor" (signature my-funny-signature-randomizer)) - ((equal (system-name) "gnarly") ;; $BMM<0(B + ((equal (system-name) "gnarly") ;; @r{$BMM<0(B} (signature my-quote-randomizer)) - (message-news-p ;; $B4X?t%7%s%\%k(B + (message-news-p ;; @r{$B4X?t%7%s%\%k(B} (signature my-news-signature)) - (window-system ;; $BJQ?t%7%s%\%k(B + (window-system ;; @r{$BJQ?t%7%s%\%k(B} ("X-Window-System" (format "%s" window-system))) - ;; Lars $B$5$s$KJV;v$r$9$k$H$-$O(B - ;; Organization $B%X%C%@!<$rIU$1$h$&!#(B + ;; @r{Lars $B$5$s$KJV;v$r$9$k$H$-$O(B} + ;; @r{Organization $B%X%C%@!<$rIU$1$h$&!#(B} ((header "to" "larsi.*org") (Organization "Somewhere, Inc.")) - ((posting-from-work-p) ;; $B%f!<%6!<$,Dj5A$7$?4X?t(B + ((posting-from-work-p) ;; @r{$B%f!<%6!<$,Dj5A$7$?4X?t(B} (signature-file "~/.work-signature") (address "user@@bar.foo") (body "You are fired.\n\nSincerely, your boss.") @@ -11193,10 +11102,10 @@ from date id references chars lines xref extra $B$N3F%X%C%@!<$+$i@.$k%Y%/(B @cindex using s/mime @cindex using smime -Gnus can digitally sign and encrypt your messages, using vanilla PGP -format or @sc{pgp/mime} or @sc{s/mime}. For decoding such messages, -see the @code{mm-verify-option} and @code{mm-decrypt-option} options -(@pxref{Security}). +Gnus can digitally sign and encrypt your messages, using vanilla +@acronym{PGP} format or @acronym{PGP/MIME} or @acronym{S/MIME}. For +decoding such messages, see the @code{mm-verify-option} and +@code{mm-decrypt-option} options (@pxref{Security}). @vindex gnus-message-replysign @vindex gnus-message-replyencrypt @@ -11209,7 +11118,7 @@ are in reply to encrypted messages. Gnus offers @code{gnus-message-replysignencrypted} (on by default) will sign automatically encrypted messages. -Instructing MML to perform security operations on a @sc{mime} part is +Instructing MML to perform security operations on a @acronym{MIME} part is done using the @kbd{C-c C-m s} key map for signing and the @kbd{C-c C-m c} key map for encryption, as follows. @@ -11219,37 +11128,37 @@ C-m c} key map for encryption, as follows. @kindex C-c C-m s s @findex mml-secure-message-sign-smime -Digitally sign current message using @sc{s/mime}. +Digitally sign current message using @acronym{S/MIME}. @item C-c C-m s o @kindex C-c C-m s o @findex mml-secure-message-sign-pgp -Digitally sign current message using PGP. +Digitally sign current message using @acronym{PGP}. @item C-c C-m s p @kindex C-c C-m s p @findex mml-secure-message-sign-pgp -Digitally sign current message using @sc{pgp/mime}. +Digitally sign current message using @acronym{PGP/MIME}. @item C-c C-m c s @kindex C-c C-m c s @findex mml-secure-message-encrypt-smime -Digitally encrypt current message using @sc{s/mime}. +Digitally encrypt current message using @acronym{S/MIME}. @item C-c C-m c o @kindex C-c C-m c o @findex mml-secure-message-encrypt-pgp -Digitally encrypt current message using PGP. +Digitally encrypt current message using @acronym{PGP}. @item C-c C-m c p @kindex C-c C-m c p @findex mml-secure-message-encrypt-pgpmime -Digitally encrypt current message using @sc{pgp/mime}. +Digitally encrypt current message using @acronym{PGP/MIME}. @item C-c C-m C-n @kindex C-c C-m C-n @@ -11267,9 +11176,9 @@ Remove security related MML tags from message. @cindex select methods @dfn{$B30It%0%k!<%W(B} (foreign group) $B$H$O!"IaDL(B ($B$b$7$/$O%G%#%U%)%k%H(B) $B$N(B -$BJ}K!$GFI$^$l$J$$%0%k!<%W$N;v$G$9!#Nc$($P!"$=$l$O0c$C$?(B @sc{nntp} $B%5!<%P!<(B -$B$N%0%k!<%W$G$"$C$?$j!";ve$N%0%k!<%W$G$"$C$?$j!"8D?ME*$J%a!<%k%0%k!<%W(B -$B$G$"$C$?$j$9$k$G$7$g$&!#(B +$BJ}K!$GFI$^$l$J$$%0%k!<%W$N;v$G$9!#Nc$($P!"$=$l$O0c$C$?(B @acronym{NNTP} $B%5!<(B +$B%P!<$N%0%k!<%W$G$"$C$?$j!";ve$N%0%k!<%W$G$"$C$?$j!"8D?ME*$J%a!<%k%0%k!<(B +$B%W$G$"$C$?$j$9$k$G$7$g$&!#(B $B30It%0%k!<%W(B ($B$b$7$/$O!"K\Ev$KA4$F%0%k!<(B $B%W(B) $B$O(B @dfn{$BL>A0(B} $B$H(B @dfn{$BA*BrJ}K!(B} $B$G;XDj$5$l$^$9!#8eA0(B} $B$O%P%C%/%(%s%I$,%0%k!<%W$rG'<1$9$kL>A0$G$9!#(B -$B$?$H$($P!"(B@sc{nntp} $B%5!<%P!<$N%0%k!<%W(B @samp{soc.motss} $B$OL>(B +$B$?$H$($P!"(B@acronym{NNTP} $B%5!<%P!<$N%0%k!<%W(B @samp{soc.motss} $B$OL>(B $BA0(B @samp{soc.motss} $B$HA*BrJ}K!(B @code{(nntp "some.where.edu")} $B$r;}$A$^$9!#(B @code{nntp} $B%P%C%/%(%s%I$O$3$N%0%k!<%W$r(B @samp{soc.motss} $B$H$7$FCN$C$F$$(B $B$k$@$1$G$9$,!"(Bgnus $B$O$3$N%0%k!<%W(B @@ -11296,11 +11205,9 @@ Remove security related MML tags from message. * Server Buffer:: $B;ve$N%5!<%P!<$r:n$C$FJT=8$9$k(B * Getting News:: USENET $B%K%e!<%9$r(B gnus $B$GFI$`(B * Getting Mail:: $B8D?ME*$J%a!<%k$r(B gnus $B$GFI$`(B -* Browsing the Web:: $B2a>j$J%&%'%V$N;q8;$+$i%a%C%;!<%8$rj$J%&%'%V$N;q8;$+$i%a%C%;!<%8$re$N3,AX$rCV$/$3$H$G$"$C$F!"$=$l$>$l$N(B $B%P%C%/%(%s%I$,$^$5$K5?;wE*$J%5!<%P!<$KAjEv$9$k$H8@$C$F$bNI$$$G$7$g$&!#(B -$BNc$($P(B @code{nntp} $B%P%C%/%(%s%I$O!"0[$J$k$$$/$D$+$Nc(B -$B$,$A$J(B @sc{nntp} $B%5!<%P!<(B @samp{news.funet.fi} $B$N%]!<%H(B 13 $B$rFI$_$?$$>l(B -$B9g$H$+!#$&$*$C$[$s!#$H$K$+$/$G$9$M!"$3$N%5!<%P!<$r;H$&$=$l$>$l$N%0%k!<%W(B -$B$K$D$$$F$=$&$$$&$3$H$r@_Dj$7$J$1$l$P$J$i$J$$$H$7$?$i!"BgJQ$J:n6H$K$J$C$F(B -$B$7$^$&$G$7$g$&!#$=$3$G(B gnus $B$O!"$=$&$$$&:n6H$r%5!<%P!<%P%C%U%!$G9T$J$&$?(B -$B$a$K!"A*BrJ}K!$KL>A0$rIU$1$kc$,$A$J(B @acronym{NNTP} $B%5!<%P!<(B @samp{news.funet.fi} $B$N%]!<%H(B 13 $B$rFI(B +$B$_$?$$>l9g$H$+!#$&$*$C$[$s!#$H$K$+$/$G$9$M!"$3$N%5!<%P!<$r;H$&$=$l$>$l$N(B +$B%0%k!<%W$K$D$$$F$=$&$$$&$3$H$r@_Dj$7$J$1$l$P$J$i$J$$$H$7$?$i!"BgJQ$J:n6H(B +$B$K$J$C$F$7$^$&$G$7$g$&!#$=$3$G(B gnus $B$O!"$=$&$$$&:n6H$r%5!<%P!<%P%C%U%!$G(B +$B9T$J$&$?$a$K!"A*BrJ}K!$KL>A0$rIU$1$k$rA*BrJ}K!$H$7$F;H$&;v$,$G$-$k(B -* Unavailable Servers:: $B@\B3$7$h$&$H;n$_$?%5!<%P!<$N$$$/$D$+$,Mn(B - $B$A$F$$$k$+$b$7$l$J$$(B +* Unavailable Servers:: $B@\B3$7$h$&$H;n$_$?%5!<%P!<$N$$$/$D$+$,Mn$A$F$$$k$+$b$7$l$J$$(B @end menu @vindex gnus-server-mode-hook @@ -11499,9 +11406,9 @@ Remove security related MML tags from message. @cindex proxy @cindex firewall -$BKIJI(B (firewall) $B$NCf$K$$$F!"KIJI%^%7%s$+$i$N(B @sc{nntp} $B%5!<%P!<$X$N@\B3(B -$B$7$+$J$$$N$G$"$l$P!"(Bgnus $B$KKIJI%^%7%s$K(B @code{rlogin} $B$7$F!"$=$3$+(B -$B$i(B @sc{nntp} $B%5!<%P!<$K(B telnet $B$r$9$k$h$&$K;X<($9$k;v$,$G$-$^$9!#(B +$BKIJI(B (firewall) $B$NCf$K$$$F!"KIJI%^%7%s$+$i$N(B @acronym{NNTP} $B%5!<%P!<$X$N(B +$B@\B3$7$+$J$$$N$G$"$l$P!"(Bgnus $B$KKIJI%^%7%s$K(B @code{rlogin} $B$7$F!"$=$3$+(B +$B$i(B @acronym{NNTP} $B%5!<%P!<$K(B telnet $B$r$9$k$h$&$K;X<($9$k;v$,$G$-$^$9!#(B $B$3$l$r$9$k;v$O>/$7$P$+$i$7$$$G$9$,!";ve$N%5!<%P!<$NDj5A$O$*$=$i$/$3$N(B $B$h$&$J$b$N$K$J$k$Y$-$G$9(B: @@ -11679,11 +11586,11 @@ Gnus $B$,$I$l$+$N%5!<%P!<$+$i@\B35qH]$rC5n$7$^(B @cindex news back ends $B%K%e!<%9%j!<%@!<$OIaDL$O%K%e!<%9$rFI$`;v$K;H$o$l$^$9!#(BGnus $B$O8=:_$O%K%e!<(B -$B%:$rC5n$7$^(B @subsection NNTP @cindex nntp -@sc{nntp} $B%5!<%P!<$N30It%0%k!<%W$r9XFI$9$k$N$OHf3SE*4JC1$G$9!#C1(B -$B$K(B @code{nntp} $B$rJ}K!$H$7$F;XDj$7!"(B@sc{nntp} $B%5!<%P!<$N%"%I%l(B +@acronym{NNTP} $B%5!<%P!<$N30It%0%k!<%W$r9XFI$9$k$N$OHf3SE*4JC1$G$9!#C1(B +$B$K(B @code{nntp} $B$rJ}K!$H$7$F;XDj$7!"(B@acronym{NNTP} $B%5!<%P!<$N%"%I%l(B $B%9(B (address) $B$r!"$&!<$s!"%"%I%l%9$H$7$F;XDj$9$k$@$1$G$9!#(B -$B$b$7(B @sc{nntp} $B%5!<%P!<$,I8=`$G$J$$%]!<%H(B (port) $B$K0LCV$7$F$$$k$H$-$O!"(B -$BA*BrJ}K!$N;0HVL\$NMWAG$r$3$N%]!<%H$N?t;z$K@_Dj$9$k;v$G@5$7$$%]!<%H$K@\B3(B -$B$9$k;v$,$G$-$k$G$7$g$&!#$=$N$?$a$K%0%k!<%W>pJs$rJT=8$7$J$1$l$P$J$j$^$;(B -$B$s(B (@pxref{Foreign Groups})$B!#(B +$B$b$7(B @acronym{NNTP} $B%5!<%P!<$,I8=`$G$J$$%]!<%H(B (port) $B$K0LCV$7$F$$$k$H$-(B +$B$O!"A*BrJ}K!$N;0HVL\$NMWAG$r$3$N%]!<%H$N?t;z$K@_Dj$9$k;v$G@5$7$$%]!<%H$K(B +$B@\B3$9$k;v$,$G$-$k$G$7$g$&!#$=$N$?$a$K%0%k!<%W>pJs$rJT=8$7$J$1$l$P$J$j$^(B +$B$;$s(B (@pxref{Foreign Groups})$B!#(B $B30It%0%k!<%W$NL>A0$O4pK\%0%k!<%W$HF1$8$G$b9=$$$^$;$s!#C5n$7$^(B @cindex nntp authentification @findex nntp-send-authinfo @findex nntp-send-mode-reader -$B$O@\B3$,$G$-$?8e$Ko$K$3$N%U%C%/$K$"$k$Y$-$G$9!#(B @@ -11724,8 +11631,8 @@ Gnus $B$,$I$l$+$N%5!<%P!<$+$i@\B35qH]$rC5n$7$^(B @vindex nntp-authinfo-function @findex nntp-send-authoinfo @vindex nntp-authinfo-file -$B$3$N4X?t$O(B @sc{nntp} $B%5!<%P!<$K(B @samp{AUTHINFO} $B$rAw$k$?$a$K;H$o$l$^$9!#(B -$B%G%#%U%)%k%H$N4X?t$O(B @code{nntp-send-authinfo} $B$G!"(B +$B$3$N4X?t$O(B @acronym{NNTP} $B%5!<%P!<$K(B @samp{AUTHINFO} $B$rAw$k$?$a$K;H$o$l(B +$B$^$9!#%G%#%U%)%k%H$N4X?t$O(B @code{nntp-send-authinfo} $B$G!"(B @file{~/.authinfo} ($B$b$7$/$OJQ?t(B @code{nntp-authinfo-file} $B$K@_Dj$7$?$I(B $B$N$h$&$J$b$N$G$b(B) $B$r;HMQ2DG=$J5-:\$rD4$Y$k$?$a$KC5$7$^$9!#$b$70l$D$b8+$D(B $B$+$i$J$+$C$?$i!"$"$J$?$K%m%0%$%sL>$H%Q%9%o!<%I$NF~NO$rB%?J$7$^$9!#%U%!%$(B @@ -11807,10 +11714,10 @@ default force yes @item nntp-maximum-request @vindex nntp-maximum-request -$B$b$7(B @sc{nntp} $B%5!<%P!<$,(B @sc{nov} $B%X%C%@!<$N5!G=$rDs6!$7$F$$$J$$$N$G$"(B -$B$l$P!"$3$N%P%C%/%(%s%I$OL?Na(B @code{head} $B$r$$$/$D$bAw$C$F!"%X%C%@!<$r=8(B -$B$a$^$9!#$3$NF0:n$rB.$/$9$k$?$a$K!"%P%C%/%(%s%I$OJVEz$rBT$?$:$K$3$NL?Na$r(B -$B$?$/$5$sAw$j!"$=$l$+$iA4$F$NJVEz$rFI$_$^$9!#$3$l$OJQ(B +$B$b$7(B @acronym{NNTP} $B%5!<%P!<$,(B @acronym{NOV} $B%X%C%@!<$N5!G=$rDs6!$7$F$$(B +$B$J$$$N$G$"$l$P!"$3$N%P%C%/%(%s%I$OL?Na(B @code{head} $B$r$$$/$D$bAw$C$F!"%X%C(B +$B%@!<$r=8$a$^$9!#$3$NF0:n$rB.$/$9$k$?$a$K!"%P%C%/%(%s%I$OJVEz$rBT$?$:$K$3(B +$B$NL?Na$r$?$/$5$sAw$j!"$=$l$+$iA4$F$NJVEz$rFI$_$^$9!#$3$l$OJQ(B $B?t(B @code{nntp-maximum-request} $B$K$h$C$F@)8f$5$l!"%G%#%U%)%k%H$G(B 400 $B$G$9!#(B $B$b$7%M%C%H%o!<%/$,8N>c$,$A$G$"$k$J$i!"$3$NJQ?t$r(B 1 $B$K@_Dj$9$k$Y$-$G$7$g(B $B$&!#(B @@ -11831,7 +11738,7 @@ default force yes @c @cindex dynamic IP addresses @c If you're running Gnus on a machine that has a dynamically assigned @c address, Gnus may become confused. If the address of your machine -@c changes after connecting to the @sc{nntp} server, Gnus will simply sit +@c changes after connecting to the @acronym{NNTP} server, Gnus will simply sit @c waiting forever for replies from the server. To help with this @c unfortunate problem, you can set this command to a number. Gnus will @c then, if it sits waiting for a reply from the server longer than that @@ -11847,7 +11754,8 @@ default force yes @item nntp-server-hook @vindex nntp-server-hook -$B$3$N%U%C%/$O(B @sc{nntp} $B%5!<%P!<$K@\B3$9$k:G8e$N0lJb$H$7$Fl(B -$B9g$O!"$3$NJQ?t$rK\Ev$K>.$5$J?t;z$K@_Dj$9$k$H$*$=$i$/l9g$O!"$3$NJQ?t$rK\Ev$K>.$5$J?t;z$K@_Dj$9$k$H$*$=$i$/@\@\B3$9$k$?$a$N4X?t(B @cindex direct connection functions -$B$3$l$i$N4X?t$O!"$"$J$?$N%^%7%s$H(B @sc{nntp}$B%5!<%P!<$r@\B3$9$k$?$a$KD>@\8F(B -$B$P$l$^$9!#$^$?!"$=$l$i$NF0:n$O$=$l$i$,6&DL$K;2>H$9$kJQ?t$K1F6A$5$l$^(B -$B$9(B (@pxref{Common Variables})$B!#(B +$B$3$l$i$N4X?t$O!"$"$J$?$N%^%7%s$H(B @acronym{NNTP}$B%5!<%P!<$r@\B3$9$k$?$a$K(B +$BD>@\8F$P$l$^$9!#$^$?!"$=$l$i$NF0:n$O$=$l$i$,6&DL$K;2>H$9$kJQ?t$K1F6A$5$l(B +$B$^$9(B (@pxref{Common Variables})$B!#(B @table @code @findex nntp-open-network-stream @@ -11991,13 +11900,13 @@ LIST $B%3%^%s%I$N%*%W%7%g%s$K;H$C$F!"(B($B%5!<%P!<$N(B) $B%j%9%H=PNO$r@_Dj$ @findex nntp-open-tls-stream @item nntp-open-tls-stream -@dfn{$B0BA4$J(B} $B%A%c%s%M%k$r;H$C$F%5!<%P!<$K@\B3$7$^$9!#$3$l$r;H$&$?$a$K$O!"(B -GNUTLS (@uref{http://www.gnu.org/software/gnutls/} $B;2>H(B) $B$r%$%s%9%H!<%k(B -$B$7$F$*$+$J$1$l$P$J$j$^$;$s!#$=$l$+$i%5!<%P!<$rA0$O;H$($^$;$s!#(B +;; @r{$B%]!<%H(B 563 $B$,(B "nntps" $B$H$7$F(B @file{/etc/services} $B$GDj5A:Q$_$G$"$C$F$b(B} +;; @r{@samp{gnutls-cli -p} $B$G$=$NL>A0$O;H$($^$;$s!#(B} ;; (nntp "snews.bar.com" (nntp-open-connection-function nntp-open-tls-stream) @@ -12007,13 +11916,14 @@ GNUTLS (@uref{http://www.gnu.org/software/gnutls/} $B;2>H(B) $B$r%$%s%9%H!<%k @findex nntp-open-ssl-stream @item nntp-open-ssl-stream -@dfn{$B0BA4$J(B} $B%A%c%s%M%k$r;H$C$F%5!<%P!<$K@\B3$7$^$9!#$3$l$r;H$&$?$a$K$O!"(B -OpenSSL (@uref{http://www.openssl.org}) $B$+(B SSLeay $B$r%$%s%9%H!<%k$7$F$*$+(B -$B$J$1$l$P$J$j$^$;$s!#$=$l$+$i%5!<%P!<$rA0$O;H$($^$;$s!#(B +;; @r{$B%]!<%H(B 563 $B$,(B "snews" $B$H$7$F(B @file{/etc/services} $B$GDj5A:Q$_$G$"$C$F$b(B} +;; @r{@samp{openssl s_client -port} $B$G$=$NL>A0$O;H$($^$;$s!#(B} ;; (nntp "snews.bar.com" (nntp-open-connection-function nntp-open-ssl-stream) @@ -12023,12 +11933,12 @@ OpenSSL (@uref{http://www.openssl.org}) $B$+(B SSLeay $B$r%$%s%9%H!<%k$7$F$*$ @findex nntp-open-telnet-stream @item nntp-open-telnet-stream -$BC1$K(B @samp{telnet} $B$7$F(B @sc{nntp} $B%5!<%P!<$K@\B3$7$^$9!#$"$J$?$O!"%G%#%U%)(B -$B%k%H$N(B @code{nntp-open-network-stream} $B$,$=$l$r$9$k$N$K$b$+$+$o$i$:!"$J(B -$B$<$3$N4X?t$,$"$k$N$+IT;W5D$K;W$&$+$b$7$l$^$;$s!#$=$NM}M3(B ($B$N0l$D(B) $B$O!"$b(B -$B$7$"$J$?$,KIJI$NCf$K$$$?$H$7$F$b(B @code{runsocks} $B$N$h$&$J%3%^%s%I%i%C%Q!<(B -$B$N$*$+$2$G30$N@$3&$rD>@\%"%/%;%9$G$-$k$J$i$P!"$"$J$?$O$=$l$r$3$N$h$&$K;H(B -$B$&$3$H$,$G$-$k$N$G$9(B: +$BC1$K(B @samp{telnet} $B$7$F(B @acronym{NNTP} $B%5!<%P!<$K@\B3$7$^$9!#$"$J$?$O!"(B +$B%G%#%U%)%k%H$N(B @code{nntp-open-network-stream} $B$,$=$l$r$9$k$N$K$b$+$+$o(B +$B$i$:!"$J$<$3$N4X?t$,$"$k$N$+IT;W5D$K;W$&$+$b$7$l$^$;$s!#$=$NM}M3(B ($B$N0l(B +$B$D(B) $B$O!"$b$7$"$J$?$,KIJI$NCf$K$$$?$H$7$F$b(B @code{runsocks} $B$N$h$&$J%3%^(B +$B%s%I%i%C%Q!<$N$*$+$2$G30$N@$3&$rD>@\%"%/%;%9$G$-$k$J$i$P!"$"$J$?$O$=$l$r(B +$B$3$N$h$&$K;H$&$3$H$,$G$-$k$N$G$9(B: @lisp (nntp "socksified" @@ -12045,8 +11955,8 @@ Emacs $B$N%;%C%7%g%sA4BN$r%i%C%W$7$F!"%G%#%U%)%k%H$N%a%=%C%I$r;H$&$H$$$&$N(B @subsubsection $B4V@\E*$K@\B3$9$k$?$a$N4X?t(B @cindex indirect connection functions -$B$3$l$i$N4X?t$O!"H$9$kJQ?t$K1F6A$5$l$^$9(B (@pxref{Common Variables})$B!#(B @@ -12055,8 +11965,8 @@ Emacs $B$N%;%C%7%g%sA4BN$r%i%C%W$7$F!"%G%#%U%)%k%H$N%a%=%C%I$r;H$&$H$$$&$N(B @item nntp-open-via-rlogin-and-telnet @findex nntp-open-via-rlogin-and-telnet $B1s3V%7%9%F%`$K(B @samp{rlogin} $B$7$F!"$=$3$+$iK\Ev(B -$B$N(B @sc{nntp} $B%5!<%P!<$K(B @samp{telnet} $B$7$^$9!#$3$l$O!"Nc$($P$"$J$?$,;O$a(B -$B$KKIJI%^%7%s$K@\B3$7$J$1$l$P$J$i$J$$>l9g$KJXMx$G$9!#(B +$B$N(B @acronym{NNTP} $B%5!<%P!<$K(B @samp{telnet} $B$7$^$9!#$3$l$O!"Nc$($P$"$J$?(B +$B$,;O$a$KKIJI%^%7%s$K@\B3$7$J$1$l$P$J$i$J$$>l9g$KJXMx$G$9!#(B @code{nntp-open-via-rlogin-and-telnet}-$BMQ$NJQ?t(B: @@ -12141,28 +12051,29 @@ Emacs $B$N%;%C%7%g%sA4BN$r%i%C%W$7$F!"%G%#%U%)%k%H$N%a%=%C%I$r;H$&$H$$$&$N(B @item nntp-address @vindex nntp-address -@sc{nntp} $B%5!<%P!<$N%"%I%l%9$G$9!#(B +@acronym{NNTP} $B%5!<%P!<$N%"%I%l%9$G$9!#(B @item nntp-port-number @vindex nntp-port-number -$B@\B3$9$k(B @sc{nntp} $B%5!<%P!<$N%]!<%HHV9f$G$9!#%G%#%U%)%k%H(B -$B$O(B @samp{nntp} $B$G$9!#(B@sc{tls}/@sc{ssl} $B$r2p$7$?(B @sc{nntp} $B$r;H$&$K$O!"%]!<(B -$B%H$NL>A0$G$O$J$/$F@0?t(B ($B$D$^$j(B @samp{snews} $B$d(B @samp{nntps} $B$G$O$J$/(B -$B$F(B @samp{563}) $B$r;XDj$7$F2<$5$$!#30It$N(B TLS/SSL $B%D!<%k$O%]!<%H$NL>A0$G$O(B -$BF0:n$7$J$$$+$i$G$9!#(B +$B@\B3$9$k(B @acronym{NNTP} $B%5!<%P!<$N%]!<%HHV9f$G$9!#%G%#%U%)%k%H(B +$B$O(B @samp{nntp} $B$G$9!#(B@acronym{TLS}/@acronym{SSL} $B$r2p$7(B +$B$?(B @acronym{NNTP} $B$r;H$&$K$O!"%]!<%H$NL>A0$G$O$J$/$F@0?t(B ($B$D$^(B +$B$j(B @samp{snews} $B$d(B @samp{nntps} $B$G$O$J$/$F(B @samp{563}) $B$r;XDj$7$F2<$5$$!#(B +$B30It$N(B @acronym{TLS}/@acronym{SSL} $B%D!<%k$O%]!<%H$NL>A0$G$OF0:n$7$J$$$+(B +$B$i$G$9!#(B @item nntp-end-of-line @vindex nntp-end-of-line -@sc{nntp} $B%5!<%P!<$H$*OC$r$7$F$$$k$H$-$K9T$N=*$o$j$N0u$H$7$F;H$o$l$kJ8;z(B -$BNs$G$9!#$3$l$O%G%#%U%)%k%H$G(B @samp{\r\n} $B$G$9$,!"AG$G$O$J$$@\B3MQ$N4X?t(B -$B$r;H$C$F$$$k$H$-$O(B @samp{\n} $B$G$"$k$Y$-$G$9!#(B +@acronym{NNTP} $B%5!<%P!<$H$*OC$r$7$F$$$k$H$-$K9T$N=*$o$j$N0u$H$7$F;H$o$l(B +$B$kJ8;zNs$G$9!#$3$l$O%G%#%U%)%k%H$G(B @samp{\r\n} $B$G$9$,!"AG$G$O$J$$@\B3MQ(B +$B$N4X?t$r;H$C$F$$$k$H$-$O(B @samp{\n} $B$G$"$k$Y$-$G$9!#(B @item nntp-telnet-command @vindex nntp-telnet-command -@samp{telnet} $B$rDL$7$F(B @sc{nntp} $B%5!<%P!<$H@\B3$9$k$H$-$K;H$&%3%^%s%I$G(B -$B$9!#$3$l$OCf4V$N%[%9%H$H@\B3$9$k$?$a$N$b$N$G$O(B $B!v$"$j$^$;$s!v!#$3$l$OC1(B -$B$KK\Ev$N(B @sc{nntp} $B%5!<%P!<$H@\B3$9$k$?$a$N$b$N$G$9!#%G%#%U%)%k%H(B -$B$O(B @samp{telnet} $B$G$9!#(B +@samp{telnet} $B$rDL$7$F(B @acronym{NNTP} $B%5!<%P!<$H@\B3$9$k$H$-$K;H$&%3%^%s(B +$B%I$G$9!#$3$l$OCf4V$N%[%9%H$H@\B3$9$k$?$a$N$b$N$G$O(B @emph{$B$"$j$^$;$s(B}$B!#$3(B +$B$l$OC1$KK\Ev$N(B @acronym{NNTP} $B%5!<%P!<$H@\B3$9$k$?$a$N$b$N$G$9!#%G%#%U%)(B +$B%k%H$O(B @samp{telnet} $B$G$9!#(B @item nntp-telnet-switches @vindex nntp-telnet-switches @@ -12203,7 +12114,7 @@ Emacs $B$N%;%C%7%g%sA4BN$r%i%C%W$7$F!"%G%#%U%)%k%H$N%a%=%C%I$r;H$&$H$$$&$N(B @item nnspool-nov-directory @vindex nnspool-nov-directory -@code{nnspool} $B$,(B @sc{nov} $B%U%!%$%k$rC5$9$H$3$m$G$9!#$3$l$OIaDL(B +@code{nnspool} $B$,(B @acronym{NOV} $B%U%!%$%k$rC5$9$H$3$m$G$9!#$3$l$OIaDL(B $B$O(B @file{/usr/spool/news/over.view/} $B$G$9!#(B @item nnspool-lib-dir @@ -12229,8 +12140,8 @@ Emacs $B$N%;%C%7%g%sA4BN$r%i%C%W$7$F!"%G%#%U%)%k%H$N%a%=%C%I$r;H$&$H$$$&$N(B @item nnspool-nov-is-evil @vindex nnspool-nov-is-evil -@code{nil} $B$G$J$$$H!"(B@code{nnspool} $B$O$=$l$,8+$D$1$?$I$s$J(B @sc{nov} $B%U%!(B -$B%$%k$b;H$*$&$H$O$7$^$;$s!#(B +@code{nil} $B$G$J$$$H!"(B@code{nnspool} $B$O$=$l$,8+$D$1$?$I$s(B +$B$J(B @acronym{NOV} $B%U%!%$%k$b;H$*$&$H$O$7$^$;$s!#(B @item nnspool-sift-nov-with-sed @vindex nnspool-sift-nov-with-sed @@ -12252,19 +12163,15 @@ Emacs $B$N%;%C%7%g%sA4BN$r%i%C%W$7$F!"%G%#%U%)%k%H$N%a%=%C%I$r;H$&$H$$$&$N(B * Mail in a Newsreader:: $B%K%e!<%9%j!<%@$G%a!<%k(B ($BBg;v$JA0CV$-(B) * Getting Started Reading Mail:: $B4JC1$JNAM}K\$N$h$&$JNc(B * Splitting Mail:: $B$I$N$h$&$K%a!<%k%0%k!<%W$r:n@.$9$k$+(B -* Mail Sources:: Gnus $B$K$I$3$+$i%a!<%k$r$N%U%!%$%k$rFI$`$?$a$K%a!<%k%P%C%/%((B - $B%s%I$r;H$&(B +* Not Reading Mail:: $BB>$N%U%!%$%k$rFI$`$?$a$K%a!<%k%P%C%/%(%s%I$r;H$&(B * Choosing a Mail Back End:: Gnus $B$O?'!9$J%a!<%kMM<0$rFI$`;v$,$G$-$k(B @end menu @@ -12296,16 +12203,16 @@ gnus $B$O$U$D$&F1$8.?M?t$KMxMQ$5$l$F$$$k%m!<%+%k%K%e!<%9%0%k!<%W$r9VFI$7$F$$(B -$B$^$9!#$=$l$i$O(B @sc{nntp} $B$GG[Aw$5$l$k!"%K%e!<%9!"$G$9!#;d$?$A$O<+J,$N;E(B -$B;v$KLrN)$F$k$?$a$K!"$=$l$i$NKDBg$J5-;v$NCGJR$rFI$s$@$jJV;v$r$7$J$1$l$P(B -$B$J$j$^$;$s!#$=$7$F$=$l$i$OJ]B8$5$l$F$$$J$$$+$b$7$l$^$;$s$+$i!"6=L#$N$"(B -$B$k5-;v$r8D?M%a!<%k$HF1$8$h$&$KJ]B8$7$J$1$l$P$J$i$J$$$G$7$g$&!#(B +$B$"$k?M$?$A$O>.?M?t$KMxMQ$5$l$F$$$k%m!<%+%k%K%e!<%9%0%k!<%W$r9VFI$7$F$$$^(B +$B$9!#$=$l$i$O(B @acronym{NNTP} $B$GG[Aw$5$l$k!"%K%e!<%9!"$G$9!#;d$?$A$O<+J,$N(B +$B;E;v$KLrN)$F$k$?$a$K!"$=$l$i$NKDBg$J5-;v$NCGJR$rFI$s$@$jJV;v$r$7$J$1$l$P(B +$B$J$j$^$;$s!#$=$7$F$=$l$i$OJ]B8$5$l$F$$$J$$$+$b$7$l$^$;$s$+$i!"6=L#$N$"$k(B +$B5-;v$r8D?M%a!<%k$HF1$8$h$&$KJ]B8$7$J$1$l$P$J$i$J$$$G$7$g$&!#(B $BG[Aw$N;EAH$_$N0c$$$O$I$&$G$b$h$$$3$H$G!"Bg;v$J$N$O$$$+$Ko$K4JC1$G$9!#$"$J$?$N%a!<%k%P%C%/(B $B%k$K9gCW$9$k$?$a$K!"$3$N@55,I=8=$O(B @emph{$B$$$D$b(B} @samp{*}$B$G$"$k$Y$-$G$9!#(B ($B$3$l$i$NK!B'$OO"A[%j%9%H$N=i$a$+$i=*$o$j$^$G=gHV$K!$A$^(B -$B$9(B''$B!#Aj8_Ej9F$r;HMQ2DG=$K$7$F$$$k>l9g!"A4$F$N9gCW$7$?K!B'$,(B ``$B>!$A$^$9(B''$B!#(B) +$B$9(B''$B!#Aj8_Ej9F$r;HMQ2DG=$K$7$F$$$k>l9g!"A4$F$N9gCW$7$?K!B'$,(B ``$B>!$A$^(B +$B$9(B''$B!#(B) $B$b$7$"$J$?<+?H$G$3$l$r$$$8$/$j$^$o$7$?$$$H$-$O!"$"$J$?$NA*$s$@4X?t$r$3$N(B $BJQ?t$K@_Dj$9$k;v$,$G$-$^$9!#$3$N4X?t$OF~$C$FMh$?%a!<%k%a%C%;!<%8$N%X%C%@!<(B @@ -12446,13 +12354,13 @@ nnmail-split-history} $B$r;H$&;v$,$G$-$^$9!#$3$l$+$i%9%W!<%k$7D>$=$&$H$9$k(B @vindex nnmail-mail-splitting-charset @vindex nnmail-mail-splitting-decodes ($BLuCm(B: $B%*%j%8%J%k$N(B Gnus $B$H$O;EMM$,HyL/$K0[$J$k$3$H$KCm0U$7$F2<$5$$(B) $B%G%#(B -$B%U%)%k%H$G$OJ,3d%3!<%I$O(B @sc{mime} $B%(%s%3!<%I$5$l$?%X%C%@!<$r%G%3!<%I$9(B -$B$k$N$G!"Hs(B-ASCII $BJ8;zNs$K%^%C%A$5$;$k$3$H$,$G$-$^$9!#JQ(B -$B?t(B @code{nnmail-mail-splitting-charset} $B$,(B @sc{mime} $BJ8;z=8(B -$B9g(B (mime-charset) $B$G$"$C$?$i$=$l!"(B@sc{mime} $BJ8;z=89g$G$O$J$$(B +$B%U%)%k%H$G$OJ,3d%3!<%I$O(B @acronym{MIME} $B%(%s%3!<%I$5$l$?%X%C%@!<$r%G%3!<(B +$B%I$9$k$N$G!"Hs(B-@acronym{ASCII} $BJ8;zNs$K%^%C%A$5$;$k$3$H$,$G$-$^$9!#JQ(B +$B?t(B @code{nnmail-mail-splitting-charset} $B$,(B @acronym{MIME} $BJ8;z=8(B +$B9g(B (mime-charset) $B$G$"$C$?$i$=$l!"(B@acronym{MIME} $BJ8;z=89g$G$O$J$$(B $BHs(B-@code{nil} $B$JCM$@$C$?$i$=$N$H$-$N(B @code{default-mime-charset} $B$NCM$G!"(B -(@sc{mime} $B%(%s%3!<%I$5$l$?$b$N$G$O$J$$(B) $BHs(B-ASCII $B%S%C%H%Q%?!<%s$b%G%3!<(B -$B%I$7$^$9!#$3$NF0:n(B +(@acronym{MIME} $B%(%s%3!<%I$5$l$?$b$N$G$O$J$$(B) $BHs(B-@acronym{ASCII} $B%S%C%H(B +$B%Q%?!<%s$b%G%3!<%I$7$^$9!#$3$NF0:n(B $B$O(B @code{nnmail-mail-splitting-decodes} $B$r(B @code{nil} $B$K$9$k$3$H$K$h$C$F(B $B40A4$K;_$a$k$3$H$,$G$-!"@8$N%X%C%@!<$N%G!<%?$r85$K5-;v$K%^%C%A$5$;$?$$>l(B $B9g$K$OM-8z$G$7$g$&!#(B @@ -12479,8 +12387,8 @@ Gnus $B$O$"$J$?$K<+J,<+?H$KD7$MJV$C$F$/$k$h$&$J2DG=@-$N$"$kA4$F$N5!2q$rDs(B @subsection Mail Sources $B$$$m$s$J$H$3$m$+$i%a!<%k$rA0$G$9!#=i4|CM$O(B @code{MAIL} $B4D6-JQ?t$NCM(B +$B%U%!%$%k$NL>A0$G$9!#=i4|CM$O(B @env{MAIL} $B4D6-JQ?t$NCM(B $B$+(B @code{rmail-spool-directory} $B$NCM(B ($BIaDL(B $B$O(B @file{usr-mail/spool/user-name} $B$N$h$&$J$b$N(B) $B$G$9!#(B @@ -12540,10 +12448,10 @@ POP $B%a!<%k%5!<%P!l9g$O!"(BPOP $B$d(B @sc{imap} $B$J(B -$B$I$G%a!<%k$r$O;HMQ$G(B -$B$-$^$;$s(B---$B%a!<%k$r0\F0$7$F$$$k$H$-$K%a!<%k%9%W!<%k$r%m%C%/$9$kJ}K!$,$"(B -$B$j$^$;$s!#(B +$B%a!<%k%9%W!<%k%U%!%$%k$,%m!<%+%k%^%7%s$KL5$$>l9g$O!"(B +@acronym{POP} $B$d(B @acronym{IMAP} $B$J$I$G%a!<%k$r$O;HMQ$G$-$^$;$s(B---$B%a!<%k$r0\F0$7$F$$$k$H$-$K(B +$B%a!<%k%9%W!<%k$r%m%C%/$9$kJ}K!$,$"$j$^$;$s!#(B $BE,@Z$J%5!<%P!<$r@_CV$9$k$3$H$,IT2DG=$J$i!"JQ$o$j$K(B ssh $B$r;H$&$3$H$,$G$-(B $B$^$9!#(B @@ -12612,32 +12520,32 @@ rm -f $TMP; $MOVEMAIL $MAIL $TMP >/dev/null && cat $TMP @end lisp @item pop -POP $B%5!<%P!<$+$i%a!<%k$rA0$G$9!#=i4|CM$O(B @code{MAILHOST} $B4D6-JQ?t$+$iA0$G$9!#=i4|CM$O(B @env{MAILHOST} $B4D6-JQ?t$+$i$G$J$1$l$P$J$j$^$;$s!#=i(B -$B4|CM$O(B @samp{pop3} $B$G$9!#%7%9%F%`$K$h$C$F$O(B @samp{"pop-3"} $B$H$7$J$1$l$P(B -$B$J$i$J$$$+$b$7$l$^$;$s!#(B +@acronym{POP} $B%5!<%P!<$N%]!<%HHV9f$G$9!#$3$l$O?tCM(B ($BNc$((B +$B$P(B @samp{:port 1234}) $B$+J8;zNs(B ($BNc$($P(B @samp{:port "pop3"}) $B$G$9!#$b$7J8(B +$B;zNs$J$i(B Unix $B%7%9%F%`$K$*$1$k(B @file{/etc/services} $B$K:\$C$F$$$k%5!<%S%9(B +$BL>$G$J$1$l$P$J$j$^$;$s!#=i4|CM$O(B @samp{pop3} $B$G$9!#%7%9%F%`$K$h$C$F(B +$B$O(B @samp{"pop-3"} $B$H$7$J$1$l$P$J$i$J$$$+$b$7$l$^$;$s!#(B @item :user -POP $B%5!<%P!<$KM?$($kMxMQ$G$9!#=i4|CM$O%m%0%$%sL>$G$9!#(B +@acronym{POP} $B%5!<%P!<$KM?$($kMxMQ$G$9!#=i4|CM$O%m%0%$%sL>$G$9!#(B @item :password -POP $B%5!<%P!<$KM?$($k%Q%9%o!<%I$G$9!#;XDj$5$l$J$$>l9g$O!"MxMQl9g$O!"MxMQZJ}<0$r;H$&$+$r(B @@ -12689,10 +12598,11 @@ POP $B%5!<%P!<$+$i%a!<%k$r$G!"=i4|(B POP $B%5!<%P!<$+$i$G!"=i4|(B @acronym{POP} $B%5!<%P!<$+$i(B +$BA0$G$9!#=i4|CM$O4D6-JQ(B -$B?t(B @code{MAILDIR} $B$+$ie$G%a!<%k$rFI$`%W%m%H%3%k$H$7$F07$$$?$/$J$$$H(B -$B$-$O!"(Bgnus $B$G$O(B POP $B%5!<%P!<$HF1MM$K07$&$3$H$,$G$-!"M?$($i$l(B -$B$?(B @sc{imap} $B%a!<%k%\%C%/%9$+$i5-;v$r\$7$/$O(B @xref{IMAP} $B$r(B -$B;2>H$7$F2<$5$$!#(B +@acronym{IMAP} $B%5!<%P!<$+$i%a!<%k$re$G%a!<%k$rFI$`%W%m%H%3(B +$B%k$H$7$F07$$$?$/$J$$$H$-$O!"(Bgnus $B$G$O(B @acronym{POP} $B%5!<%P!<$HF1MM$K07$&(B +$B$3$H$,$G$-!"M?$($i$l$?(B @acronym{IMAP} $B%a!<%k%\%C%/%9$+$i5-;v$r\$7$/$O(B @xref{IMAP} $B$r;2>H$7$F2<$5$$!#(B -Kerberos, GSSAPI, TLS/SSL $B$*$h$S(B STARTTLS $B$N$?$a$N30It%W%m%0%i%`$H%i%$%V(B -$B%i%j$,I,MW$G$"$k$3$H$KN10U$7$F2<$5$$!#(B@xref{IMAP}$B!#(B +Kerberos, GSSAPI, @acronym{TLS}/@acronym{SSL} $B$*$h$S(B STARTTLS $B$N$?$a$N30(B +$BIt%W%m%0%i%`$H%i%$%V%i%j$,I,MW$G$"$k$3$H$KN10U$7$F2<$5$$!#(B@xref{IMAP}$B!#(B $B%-!<%o!<%I(B: @table @code @item :server -@sc{imap} $B%5!<%P!<$NL>A0!#=i4|CM$O4D6-JQ?t(B @code{MAILHOST} $B$+$iF@$^$9!#(B +@acronym{IMAP} $B%5!<%P!<$NL>A0!#=i4|CM$O4D6-JQ?t(B @env{MAILHOST} $B$+$iF@$^(B +$B$9!#(B @item :port -@sc{imap} $B%5!<%P!<$N%]!<%HHV9f!#IaDL$O=i4|CM$O(B @samp{143} $B$G!"(BTLS/SSL $B@\(B -$BB3$K$O(B @samp{993} $B$G$9!#(B +@acronym{IMAP} $B%5!<%P!<$N%]!<%HHV9f!#IaDL$O=i4|CM$O(B @samp{143} $B$G!"(B +@acronym{TLS}/@acronym{SSL} $B@\B3$K$O(B @samp{993} $B$G$9!#(B @item :user -@sc{imap} $B%5!<%P!<$KEO$9MxMQ$G$9!#=i4|CM$O%m%0%$%sL>$G$9!#(B +@acronym{IMAP} $B%5!<%P!<$KEO$9MxMQ$G$9!#=i4|CM$O%m%0%$%sL>$G$9!#(B @item :password -@sc{imap} $B%5!<%P!<$KEO$9%Q%9%o!<%I$G$9!#;XDj$5$l$F$$$J$$$H$-$O!"MxMQJ}$+$i%a!<%k$rJ}$+$i%a!<%k$r$N(B (ding) $B4XO"$N%a!<%k$N$?$a$N%0%k!<%W$K$O(B - ;; $BAj8_Ej9F$7$^$;$s!#(B + ;; @r{$B%(%i!<$G$J$$%a%C%;!<%8$OA4$F$N4XO"$7$?%0%k!<%W$KAj8_Ej9F$5$l$^(B} + ;; @r{$B$9$,!"(B(ding) $B%j%9%H$HB>$N(B (ding) $B4XO"$N%a!<%k$N$?$a$N%0%k!<%W$K(B} + ;; @r{$B$OAj8_Ej9F$7$^$;$s!#(B} (& (| (any "ding@@ifi\\.uio\\.no" "ding.list" "ding.list") ("subject "ding" "ding.misc")) - ;; $BB>$N%a!<%j%s%0%j%9%H(B... + ;; @r{$BB>$N%a!<%j%s%0%j%9%H(B@dots{}} (any "procmail@@informatik\\.rwth-aachen\\.de" "procmail.list") (any "SmartList@@informatik\\.rwth-aachen\\.de" "SmartList.list") - ;; $B0J2<$N$I$A$i$N%a!<%j%s%0%j%9%H$bF1$8@\F,<-$J$N$G!"(Bbugs- - ;; $B$@$1$KEj9F$5$l$?$b$N$,(B mypkg.list $B$KAj8_Ej9F$5$l$J$$$h(B - ;; $B$&$K$7$F$$$^$9!#$7$+$7K\Ev$KAj8_Ej9F$5$l$?5-;v$rAj8_Ej9F(B - ;; $B$9$k$3$H$O5v$7$F$$$^$9!#(B + ;; @r{$B0J2<$N$I$A$i$N%a!<%j%s%0%j%9%H$bF1$8@\F,<-$J$N$G!"(Bbugs-} + ;; @r{$B$@$1$KEj9F$5$l$?$b$N$,(B mypkg.list $B$KAj8_Ej9F$5$l$J$$$h(B} + ;; @r{$B$&$K$7$F$$$^$9!#$7$+$7K\Ev$KAj8_Ej9F$5$l$?5-;v$rAj8_Ej9F(B} + ;; @r{$B$9$k$3$H$O5v$7$F$$$^$9!#(B} (any "bugs-mypackage@@somewhere" "mypkg.bugs") (any "mypackage@@somewhere\" - "bugs-mypackage" "mypkg.list") - ;; $B?M!9(B... + ;; @r{$B?M!9(B@dots{}} (any "larsi@@ifi\\.uio\\.no" "people.Lars_Magne_Ingebrigtsen")) - ;; $B9gCW$7$J$+$C$?%a!<%k$OA4$F$rJa$^$($k%0%k!<%W$X9T$-$^$9!#(B + ;; @r{$B9gCW$7$J$+$C$?%a!<%k$OA4$F$rJa$^$($k%0%k!<%W$X9T$-$^$9!#(B} "misc.misc") @end lisp @@ -13259,11 +13170,11 @@ table) $B$K=>$C$F40A4$K9gCW$7$J$1$l$P$J$j$^$;$s!#@55,I=8=$G%U%#!<%k%IL>$+(B $B;H$C$F$3$s$JIw$K=q$-$^$9(B: @lisp -(setq nnmail-treat-duplicates 'warn ; $B$^$?$O(B 'delete +(setq nnmail-treat-duplicates 'warn ; @r{$B$^$?$O(B @code{delete}} nnmail-cache-accepted-message-ids t nnmail-split-fancy '(| (: nnmail-split-fancy-with-parent) - ;; $B;D$j$N?6$jJ,$1J}$O$3$3$K=q$/(B + ;; @r{$B;D$j$N?6$jJ,$1J}$O$3$3$K=q$/(B} )) @end lisp @@ -13381,18 +13292,18 @@ nnml:mail.others: $B%W$@$1$K;H$&$3$H$,$G$-$^$9!#(B @lisp -(: gnus-group-split-fancy GROUPS NO-CROSSPOST CATCH-ALL) +(: gnus-group-split-fancy @var{groups} @var{no-crosspost} @var{catch-all}) @end lisp @var{groups} $B$O=PNO$NJ,3d$r@8@.$9$k$?$a$K%Q%i%a!<%?$,Av::$5$l$k%0%k!<%W(B $BL>$N%j%9%H$+@55,I=8=$G$9!#(B@var{no-crosspost} $B$OAj8_Ej9F$r;HMQ6X;_$K$k$?(B $B$a$K;H$&$3$H$,$G$-$^$9!#$=$N>l9g!"C10l$N(B @code{|} $BJ,3d$,=PNO$5$l$^$9!#(B @var{catch-all} $B$O(B @var{gnus-group-split-default-catch-all-group} $B$N$h$&(B -$B$K!":G8e$Nl9g!"%0%k!<%W(B -$B$K(B @var{split-spec} $B$,(B @code{catch-all} $B$K@_Dj$5$l$F$$$k$b$N$,$"$k$H!"$3(B -$B$N%0%k!<%W$,(B @var{catch-all} $B0z?t$r>e=q$-$7$^$9!#(B +$B$K!":G8e$Nl9g!"%0%k!<%W$K(B @var{split-spec} $B$,(B @code{catch-all} $B$K@_Dj$5$l$F$$$k(B +$B$b$N$,$"$k$H!"$3$N%0%k!<%W$,(B @var{catch-all} $B0z?t$r>e=q$-$7$^$9!#(B @findex gnus-group-split-setup $BIT1?$J$3$H$K!"A4$F$N%0%k%W$H%Q%i%a!<%?$rAv::$9$k$3$H$OHs>o$KCY$$$G$9!#FC(B @@ -13412,7 +13323,7 @@ nnml:mail.others: $B$P!"(B@file{~/.gnus.el} $B$K0J2<$N$b$N$rDI2C$7$F$/$@$5$$(B: @lisp -(gnus-group-split-setup AUTO-UPDATE CATCH-ALL) +(gnus-group-split-setup @var{auto-update} @var{catch-all}) @end lisp @var{auto-update} $B$,(B @code{nil} $B$GL5$$$H!"(B @@ -13791,12 +13702,12 @@ Quoted Readable $BId9f2=$rI|9f2=$7$^$9!#(B @lisp (setq nnmail-split-fancy - '(| ;; $B=EJ#%a%C%;!<%8$OJ,N%$5$l$?%0%k!<%W$X9T$-$^$9!#(B + '(| ;; @r{$B=EJ#%a%C%;!<%8$OJ,N%$5$l$?%0%k!<%W$X9T$-$^$9!#(B} ("gnus-warning" "duplicat\\(e\\|ion\\) of message" "duplicate") - ;; $B%G!<%b%s$d%]%9%H%^%9%?!<$d;w$?$h$&$J$b$N$+$i$N(B - ;; $B%a%C%;!<%8$OB>$N$H$3$m$X!#(B + ;; @r{$B%G!<%b%s$d%]%9%H%^%9%?!<$d;w$?$h$&$J$b$N$+$i$N(B} + ;; @r{$B%a%C%;!<%8$OB>$N$H$3$m$X!#(B} (any mail "mail.misc") - ;; $BB>$NK!B'!#(B + ;; @r{$BB>$NK!B'!#(B} [ ... ] )) @end lisp @@ -13804,7 +13715,7 @@ Quoted Readable $BId9f2=$rI|9f2=$7$^$9!#(B @lisp (setq nnmail-split-methods '(("duplicates" "^Gnus-Warning:.*duplicate") - ;; $BB>$NK!B'!#(B + ;; @r{$BB>$NK!B'!#(B} [...])) @end lisp @@ -13853,13 +13764,11 @@ Gnus $B$O%a!<%k%0%k!<%W$rF0:n$9$k$h$&$K$9$k$H%a!<%k%9%W!<%k$rFI$_9~$_$^$9!#(B @menu * Unix Mail Box:: ($B$H$F$b(B) $BI8=`E*$J(B Un*x mbox $B$r;H$&(B -* Rmail Babyl:: Emacs $B$N%W%m%0%i%`$O(B Rmail $B$N(B Babyl $B%U%)!<(B - $B%^%C%H$r;H$&(B +* Rmail Babyl:: Emacs $B$N%W%m%0%i%`$O(B Rmail $B$N(B Babyl $B%U%)!<%^%C%H$r;H$&(B * Mail Spool:: $B$"$J$?$N%a!<%k$r;dE*$J%9%W!<%k$KN/$a$k(B? * MH Spool:: mhspool $B$N$h$&$J%P%C%/%(%s%I(B * Maildir:: $B$b$&0l$D$N#1%U%!%$%k(B/$B#1%a%C%;!<%87A<0(B -* Mail Folders:: $B$=$l$>$l$N%0%k!<%W$KBP$7$F0l$D$N%U%!%$%k(B - $B$r;}$D(B +* Mail Folders:: $B$=$l$>$l$N%0%k!<%W$KBP$7$F0l$D$N%U%!%$%k$r;}$D(B * Comparing Mail Back Ends:: $BF@<:$N?<$$F6;!(B @end menu @@ -13925,7 +13834,7 @@ rmail box $B$N$?$a$N%"%/%F%#%V%U%!%$%k$NL>A0!#4{DjCM(B @node Mail Spool @subsubsection $B%a!<%k%9%W!<%k(B @cindex nnml -@cindex mail @sc{nov} spool +@cindex mail @acronym{NOV} spool @dfn{nnml} $B%9%W!<%k%a!<%kMM<0$OB>$NCN$i$l$?MM<0$H$O8_49@-$,$"$j$^$;$s!#(B $B$=$l$O>/$7Cm0U$7$F;H$o$l$k$Y$-$G$9!#(B @@ -13950,8 +13859,8 @@ rmail box $B$N$?$a$N%"%/%F%#%V%U%!%$%k$NL>A0!#4{DjCM(B @code{nnml} $B$O5-;vJ,3d$K4X$7$F$O$*$=$i$/0lHVCY$$%P%C%/%(%s%I$G$7$g$&!#$=(B $B$l$OB?$/$N%U%!%$%k$r:n$i$J$1$l$P$J$i$:!"$=$l$OF~$C$F$/$k%a!<%k$N$?$a(B -$B$N(B @sc{nov} $B%G!<%?%Y!<%9$b:n@.$7$J$1$l$P$J$j$^$;$s!#$3$l$N$?$a$K!"%a!<%k(B -$B$rFI$`;v$K4X$7$F$O$?$V$s:GB.$N%P%C%/%(%s%I$K$J$j$^$9!#(B +$B$N(B @acronym{NOV} $B%G!<%?%Y!<%9$b:n@.$7$J$1$l$P$J$j$^$;$s!#$3$l$N$?$a$K!"(B +$B%a!<%k$rFI$`;v$K4X$7$F$O$?$V$s:GB.$N%P%C%/%(%s%I$K$J$j$^$9!#(B @cindex self contained nnml servers @cindex marks @@ -13994,12 +13903,12 @@ rmail box $B$N$?$a$N%"%/%F%#%V%U%!%$%k$NL>A0!#4{DjCM(B @item nnml-nov-is-evil @vindex nnml-nov-is-evil -@code{nil} $B$G$J$1$l$P!"$3$N%P%C%/%(%s%I$O$I$N(B @sc{nov} $B%U%!%$%k$bL5;k$7(B -$B$^$9!#4{DjCM$O(B @code{nil} $B$G$9!#(B +@code{nil} $B$G$J$1$l$P!"$3$N%P%C%/%(%s%I$O$I$N(B @acronym{NOV} $B%U%!%$%k$bL5(B +$B;k$7$^$9!#4{DjCM$O(B @code{nil} $B$G$9!#(B @item nnml-nov-file-name @vindex nnml-nov-file-name -@sc{nov} $B%U%!%$%k$NL>A0!#%G%#%U%)%k%H$O(B @file{.overview} $B$G$9!#(B +@acronym{NOV} $B%U%!%$%k$NL>A0!#%G%#%U%)%k%H$O(B @file{.overview} $B$G$9!#(B @item nnml-prepare-save-mail-hook @vindex nnml-prepare-save-mail-hook @@ -14021,23 +13930,23 @@ rmail box $B$N$?$a$N%"%/%F%#%V%U%!%$%k$NL>A0!#4{DjCM(B @end table @findex nnml-generate-nov-databases -@code{nnml} $B%0%k!<%W$H(B @sc{nov} $B%U%!%$%k$,40A4$KNI$$>uBV$G$J$/$J$C$F$7$^$C(B -$B$?$J$i!"(B@kbd{M-x nnml-generate-nov-databases} $B$HBG$D;v$K$h$C$F!"40A4$K99(B -$B?7$9$k;v$,$G$-$^$9!#$3$NL?Na$O!"$=$l$>$lA4$F$N%U%!%$%k$r8+$k;v$K$h$C(B -$B$F(B @code{nnml} $B3,AXA4BN$r%H%m!<%k5{LV$G$5$i$$$^$9$N$G!"$=$l$,=*$o$k$^$G(B -$B$K$O;~4V$,$+$+$k$+$b$7$l$^$;$s!#$3$N5!G=$X$N$h$jNI$$%$%s%?!<%U%'!<%9$O%5!<(B -$B%P!<%P%C%U%!$G8+$D$+$k$G$7$g$&(B (@pxref{Server Commands})$B!#(B +@code{nnml} $B%0%k!<%W$H(B @acronym{NOV} $B%U%!%$%k$,40A4$KNI$$>uBV$G$J$/$J$C(B +$B$F$7$^$C$?$J$i!"(B@kbd{M-x nnml-generate-nov-databases} $B$HBG$D;v$K$h$C$F!"(B +$B40A4$K99?7$9$k;v$,$G$-$^$9!#$3$NL?Na$O!"$=$l$>$lA4$F$N%U%!%$%k$r8+$k;v$K(B +$B$h$C$F(B @code{nnml} $B3,AXA4BN$r%H%m!<%k5{LV$G$5$i$$$^$9$N$G!"$=$l$,=*$o$k(B +$B$^$G$K$O;~4V$,$+$+$k$+$b$7$l$^$;$s!#$3$N5!G=$X$N$h$jNI$$%$%s%?!<%U%'!<%9(B +$B$O%5!<%P!<%P%C%U%!$G8+$D$+$k$G$7$g$&(B (@pxref{Server Commands})$B!#(B @node MH Spool @subsubsection MH $B%9%W!<%k(B @cindex nnmh @cindex mh-e mail spool -@code{nnmh} $B$O!"(B@sc{nov} $B%G!<%?%Y!<%9$r:n$i$J$$$3$H$H%"%/%F%#%V%U%!%$%k(B -$B$d0u%U%!%$%k$rJ];}$7$J$$;v$r=|$$$F!"(B@code{nnml} $B$H;w$F$$$^$9!#$=$N$3$H(B -$B$O(B @code{nnmh} $B$r(B @code{nnml} $B$h$j(B @emph{$B$+$J$j(B} $BCY$$%P%C%/%(%s%I$K$7$F(B -$B$$$^$9$,!"$=$l$O(B procmail $B$N%9%/%j%W%H$r=q$/$?$a$K$:$C$H$d$j$d$9$/$J$C$F(B -$B$b$$$^$9!#(B +@code{nnmh} $B$O!"(B@acronym{NOV} $B%G!<%?%Y!<%9$r:n$i$J$$$3$H$H%"%/%F%#%V%U%!(B +$B%$%k$d0u%U%!%$%k$rJ];}$7$J$$;v$r=|$$$F!"(B@code{nnml} $B$H;w$F$$$^$9!#$=$N$3(B +$B$H$O(B @code{nnmh} $B$r(B @code{nnml} $B$h$j(B @emph{$B$+$J$j(B} $BCY$$%P%C%/%(%s%I$K$7(B +$B$F$$$^$9$,!"$=$l$O(B procmail $B$N%9%/%j%W%H$r=q$/$?$a$K$:$C$H$d$j$d$9$/$J$C(B +$B$F$b$$$^$9!#(B $B;ve$N%5!<%P!<$N@_Dj(B: @@ -14085,9 +13994,9 @@ nnmaildir $B$O40A4$K?.Mj$G$-$k$3$H$rL\;X$7$F$$$^$9(B: @kbd{C-g} $B$O%a%b%j!$l$N(B maildir $B$K3JG<$7$^$9!#$=$l(B -$B$K$h$C$F!"$"$k(B Gnus $B$N4D6-$+$iJL$N>l=j$K(B maildir $BA4BN$r%3%T!<$9$k$3$H$,(B -$B$G$-!"0u$OJ]B8$5$l$^$9!#(B +nnmaildir $B$O5-;v$N0u$H(B @acronym{NOV} $B%G!<%?$r$=$l$>$l$N(B maildir $B$K3JG<$7(B +$B$^$9!#$=$l$K$h$C$F!"$"$k(B Gnus $B$N4D6-$+$iJL$N>l=j$K(B maildir $BA4BN$r%3%T!<(B +$B$9$k$3$H$,$G$-!"0u$OJ]B8$5$l$^$9!#(B $B2>A[%5!<%P!<$N@_Dj(B: @@ -14253,15 +14162,15 @@ nnmaildir $B$O(B @code{expiry-target} $B%0%k!<%W%Q%i%a!<%?(B $BK\BN$G9T$o$l$k$+!"$"$k$$$OM-1W$G$J$1$l$PJ|4~$5$l$k$Y$-$G$9!#(B @item nov-cache-size -NOV $B%a%b%j!<%-%c%C%7%e$N%5%$%:$r;XDj$9$k@0?t$G$9!#%9%T!<%I%"%C%W$N$?$a$K!"(B -nnmaildir $B$O$=$l$>$l$N%0%k!<%W$N8BDj$5$l$??t$N5-;v$KBP$7$F!"%a%b%j!<>e(B -$B$K(B NOV $B%G!<%?$rJ];}$7$^$9!#(B($B$3$l$O$?$V$sM-MQ$G$O$J$/!">-Mh$O$*$=$i$/:o=|(B -$B$5$l$k$G$7$g$&(B)$B!#$3$N%Q%i%a!<%?$NCM$O!"%5!<%P!<$,3+DL$7$?8e$G:G=i$K%0%k!<(B -$B%W$,8+$i$l$?$H$-!"$9$J$o$A0lHL$K$O:G=i$K(B Gnus $B$r5/F0$7$?$H$-!"$@$1CmL\$5(B -$B$l$^$9!#%5!<%P!<$,JD$8$i$l$F:F$S3+DL$5$l$k$^$G$O!"(BNOV $B%-%c%C%7%e$N%5%$%:(B -$B$OJQ99$5$l$^$;$s!#%G%#%U%)%k%H$O35N,%P%C%U%!$KI=<($5$l$k5-;v$N?t$N8+@Q(B -$B$j(B (@code{tick} $B0u$,$"$C$F(B @code{read} $B$,L5$$5-;v$N?t$K>/!9$NM>J,$r2C$((B -$B$?$b$N(B) $B$G$9!#(B +@acronym{NOV} $B%a%b%j!<%-%c%C%7%e$N%5%$%:$r;XDj$9$k@0?t$G$9!#%9%T!<%I%"%C(B +$B%W$N$?$a$K!"(Bnnmaildir $B$O$=$l$>$l$N%0%k!<%W$N8BDj$5$l$??t$N5-;v$KBP$7$F!"(B +$B%a%b%j!<>e$K(B @acronym{NOV} $B%G!<%?$rJ];}$7$^$9!#(B($B$3$l$O$?$V$sM-MQ$G$O$J$/!"(B +$B>-Mh$O$*$=$i$/:o=|$5$l$k$G$7$g$&(B)$B!#$3$N%Q%i%a!<%?$NCM$O!"%5!<%P!<$,3+DL(B +$B$7$?8e$G:G=i$K%0%k!<%W$,8+$i$l$?$H$-!"$9$J$o$A0lHL$K$O:G=i$K(B Gnus $B$r5/F0(B +$B$7$?$H$-!"$@$1CmL\$5$l$^$9!#%5!<%P!<$,JD$8$i$l$F:F$S3+DL$5$l$k$^$G$O!"(B +@acronym{NOV} $B%-%c%C%7%e$N%5%$%:$OJQ99$5$l$^$;$s!#%G%#%U%)%k%H$O35N,%P%C(B +$B%U%!$KI=<($5$l$k5-;v$N?t$N8+@Q$j(B (@code{tick} $B0u$,$"$C$F(B @code{read} $B$,(B +$BL5$$5-;v$N?t$K>/!9$NM>J,$r2C$($?$b$N(B) $B$G$9!#(B @end table @subsubsection $B5-;v$N<1JL(B @@ -14275,15 +14184,16 @@ maildir $B$N(B @file{.nnmaildir/} $B%5%V%G%#%l%/%H%j$N?'!9$J>l=j$K5-;v$K4XO"$ $B$N40A4$J%Q%9L>$,(B @code{nnmaildir-article-file-name} $BJQ?t$+$iF@$i$l$^$9!#(B @subsubsection NOV $B%G!<%?(B -@code{uniq} $B$K$h$C$F<1JL$5$l$k5-;v$O!"$=$N(B NOV $B%G!<%?(B ($B35N,%P%C%U%!$N9T(B -$B$r@8@.$9$k$?$a$K;H$o$l$k(B) $B$r(B @file{.nnmaildir/nov/uniq} $B$K3JG<$7$^$9!#(B -@code{nnmaildir-generate-nov-databases} $B4X?t$O$"$j$^$;$s!#(B($B$=$NI,MW$O$"(B -$B$^$j$"$j$^$;$s!#5-;v$N(B NOV $B%G!<%?$O5-;v$+(B @code{nnmail-extra-headers} $B$,(B -$BJQ2=$7$?$H$-$K<+F0E*$K99?7$5$l$^$9!#(B) $BBP1~$9$k(B NOV $B%U%!%$%k$r$?$@>C$9$3(B -$B$H$K$h$C$FC10l$N5-;v$N(B NOV $B%G!<%?$N@8@.$r(B nnmaildir $B$K6/@)$9$k$3$H$O$G$-(B -$B$^$9!#$7$+$7(B @emph{$B$4MQ?4(B}$B!#$3$l$O(B nnmaildir $B$,$3$N5-;v$K?7$7$$5-;vHV9f(B -$B$r3d$j?6$i$;!"(B@code{seen} $B0u!"%(!<%8%'%s%H!"$*$h$S%-%c%C%7%e$K$H$C$FLLE](B -$B$J$3$H$K$J$j$^$9!#(B +@code{uniq} $B$K$h$C$F<1JL$5$l$k5-;v$O!"$=$N(B @acronym{NOV} $B%G!<%?(B ($B35N,%P%C(B +$B%U%!$N9T$r@8@.$9$k$?$a$K;H$o$l$k(B) $B$r(B @file{.nnmaildir/nov/uniq} $B$K3JG<$7(B +$B$^$9!#(B@code{nnmaildir-generate-nov-databases} $B4X?t$O$"$j$^$;$s!#(B($B$=$NI,(B +$BMW$O$"$^$j$"$j$^$;$s!#5-;v$N(B @acronym{NOV} $B%G!<%?$O5-;v(B +$B$+(B @code{nnmail-extra-headers} $B$,JQ2=$7$?$H$-$K<+F0E*$K99?7$5$l$^(B +$B$9!#(B) $BBP1~$9$k(B @acronym{NOV} $B%U%!%$%k$r$?$@>C$9$3$H$K$h$C$FC10l$N5-;v(B +$B$N(B @acronym{NOV} $B%G!<%?$N@8@.$r(B nnmaildir $B$K6/@)$9$k$3$H$O$G$-$^$9!#$7$+(B +$B$7(B @emph{$B$4MQ?4(B}$B!#$3$l$O(B nnmaildir $B$,$3$N5-;v$K?7$7$$5-;vHV9f$r3d$j?6$i(B +$B$;!"(B@code{seen} $B0u!"%(!<%8%'%s%H!"$*$h$S%-%c%C%7%e$K$H$C$FLLE]$J$3$H$K$J(B +$B$j$^$9!#(B @subsubsection $B5-;v$N0u(B @file{.nnmaildir/marks/flag/uniq} $B%U%!%$%k$,$"$k>l9g$K!"(B@code{uniq} $B$K$h$C(B @@ -14374,16 +14284,16 @@ i$B%N!<%I(B $B$r@aLs$9$k$?$a$KC1$K(B @file{.nnmaildir/markfile} $B$X$N%O!<% @item nnfolder-nov-is-evil @vindex nnfolder-nov-is-evil -$B$b$7Hs(B@code{nil}$B$J$i!"$3$N%P%C%/%(%s%I$O(B @sc{nov} $B%U%!%$%k$rL5;k$7$^$9!#(B -$B4{DjCM$O(B @code{nil} $B$G$9!#(B +$B$b$7Hs(B@code{nil}$B$J$i!"$3$N%P%C%/%(%s%I$O(B @acronym{NOV} $B%U%!%$%k$rL5;k$7(B +$B$^$9!#4{DjCM$O(B @code{nil} $B$G$9!#(B @item nnfolder-nov-file-suffix @vindex nnfolder-nov-file-suffix -@sc{nov} $B%U%!%$%k$N3HD%;R$G$9!#%G%#%U%)%k%H$O(B @file{.nov} $B$G$9!#(B +@acronym{NOV} $B%U%!%$%k$N3HD%;R$G$9!#%G%#%U%)%k%H$O(B @file{.nov} $B$G$9!#(B @item nnfolder-nov-directory @vindex nnfolder-nov-directory -@sc{nov} $B%U%!%$%k$,3JG<$5$l$k%G%#%l%/%H%j$G$9!#(B@code{nil} $B$@$C$?(B +@acronym{NOV} $B%U%!%$%k$,3JG<$5$l$k%G%#%l%/%H%j$G$9!#(B@code{nil} $B$@$C$?(B $B$i(B @code{nnfolder-directory} $B$,;H$o$l$^$9!#(B @item nnfolder-marks-is-evil @@ -14419,11 +14329,11 @@ i$B%N!<%I(B $B$r@aLs$9$k$?$a$KC1$K(B @file{.nnmaildir/markfile} $B$X$N%O!<% $B$G$9!#(B $BF1$835G0$,(B Usenet $B<+?H$K$bB8:_$7$^$9!#5-;v$X$N@\?($O:#F|$G$O!"IaDL(B -$B$O(B @sc{nntp} $B$G$J$5$l$^$9$,!"@N!9$NM+]5$J?@\5-;v$N%G%#%l%/%H%j!<%9%W!<%k$KF'$_9~$`$H$$$&$b$N(B -$B$G$7$?!#$=$l$G$b!"$?$^$?$^%5!<%P!<(B ($B$b$7$/$O!"(BNFS $B$G%9%W!<%k$,FI$a$k$h(B -$B$&$J>l9g(B) $B$K$$$k$h$&$J>l9g$O!"$3$l$i$NJ}K!$rA*$V$?$a(B +$B$O(B @acronym{NNTP} $B$G$J$5$l$^$9$,!"@N!9$NM+]5$J?@\5-;v$N%G%#%l%/%H%j!<%9%W!<%k$KF'$_9~$`$H(B +$B$$$&$b$N$G$7$?!#$=$l$G$b!"$?$^$?$^%5!<%P!<(B ($B$b$7$/$O!"(BNFS $B$G%9%W!<%k$,FI(B +$B$a$k$h$&$J>l9g(B) $B$K$$$k$h$&$J>l9g$O!"$3$l$i$NJ}K!$rA*$V$?$a(B $B$K(B @code{nntp} $B$d(B @code{nnspool} $B%P%C%/%(%s%I$N$I$A$i$+$rA*$V$3$H$,$G$-(B $B$^$7$?!#(B @@ -14476,11 +14386,12 @@ Rmail $B<+?H$b$b$A$m$s$^$@B8:_$7$F$$$F!"$^$@(B Stallman $B$K$h$C$F0];}$5$l$F$ $B$K(B 1:1 $B$GJ,$1$i$l$^$9!#(BUsenet $BMM<0$N%"%/%F%#%V%U%!%$%k(B (INN $B$d(B CNews $B$K(B $B4p$E$$$?%K%e!<%9%7%9%F%`$G(B ($BNc$($P(B) @file{/var/lib/news/active} $B$d!"F0(B $B;l(B @samp{NNTP LIST} $B$GJV$5$l$k$b$N$KN`;w$7$?$b$N(B) $B$r0];}$7!":#$+$i$@$H$+(B -$B$J$jA0$K(B @sc{nntp} $B%5!<%P!<$N$?$a$KDj5A$5$l$F$$$k!"(B@dfn{overview} $B%U%!%$(B -$B%k$b!"%0%k!<%W$XF~$k$H$-$N8zN($N$?$a$K:n@.$7$^$9!#%a!<%kJ,3d$G$O!"$?$/$5(B -$B$s$N%U%!%$%k$N:n@.$H!"(B@code{nnml} $B%"%/%F%#%V%U%!%$%k$N99?7!"%a%C%;!<%8Kh(B -$B$N(B overview $B$X$NDI2C$N$?$a$KCY$/$J$j$^$9$,!";HMQ;~$K$O%"%/%F%#%V%U%!%$%k(B -$B$H(B overview $B$G$N:w0z5!G=$K$h$j!"$H$F$D$b$J$/B.$/$J$j$^$9!#(B +$B$J$jA0$K(B @acronym{NNTP} $B%5!<%P!<$N$?$a$KDj5A$5$l$F$$$k!"(B +@dfn{overview} $B%U%!%$%k$b!"%0%k!<%W$XF~$k$H$-$N8zN($N$?$a$K:n@.$7$^$9!#(B +$B%a!<%kJ,3d$G$O!"$?$/$5$s$N%U%!%$%k$N:n@.$H!"(B@code{nnml} $B%"%/%F%#%V%U%!%$(B +$B%k$N99?7!"%a%C%;!<%8Kh$N(B overview $B$X$NDI2C$N$?$a$KCY$/$J$j$^$9$,!";HMQ;~(B +$B$K$O%"%/%F%#%V%U%!%$%k$H(B overview $B$G$N:w0z5!G=$K$h$j!"$H$F$D$b$J$/B.$/$J(B +$B$j$^$9!#(B @code{nnml} $B$O(B @dfn{inode} $B$rHs>o$K$?$/$5$s>CHq$7$^$9!#$9$J$o$A!"%U%!%$(B $B%k%7%9%F%`$G?7$7$$%U%!%$%k$rF~$l$k$?$a$N2DG=$J>l=j$rDj5A$9$k;q8;$r$?$/$5(B @@ -14530,7 +14441,7 @@ Rand MH $B%a!<%k1\Mw%7%9%F%`$O(B UNIX $B%7%9%F%`$K$+$J$jD9$$4VB8:_$7$F$$$^$9! $B$4$H$K0l$D3JG<$9$k$N$G!"(B@code{nnml} $B$NLsFsG\$NNL$N(B i$B%N!<%I$r;H$$$^$9!#(B (@code{df -i} $B$r;H$C$F(B i$B%N!<%I$N3d$jEv$F$,$I$l$[$I$?$/$5$s$"$k$+$rD4$Y$F(B $B2<$5$$!#(B) $B$=$N$?$a$KCY$/$J$C$?$jB?$/$N>l=j$r$NHs%V%m%C%/9=B$$N%U%!%$%k(B +@uref{http://www.namesys.com/, ReiserFS} $B$dB>$NHs%V%m%C%/9=B$$N%U%!%$%k(B $B%7%9%F%`$X$NE>49$r8!F$$7$F2<$5$$!#(B maildir $B$O/$7Hw$($D$D$"$j(B $B$K(B Emacs/W3 $B$H(B url $B%i%$%V%i%j$,I,MW$G$9!#(B $B$3$l$i$N%&%'%V%=!<%9$N0lHV$NLdBj$OD94|4V$OF0:n$7$J$$2DG=@-$,9b$$$3$H$G$9!#(B -@sc{html} $B%G!<%?$+$i>pJs$r=8$a$k$N$O$;$$$<$$?dB,$G!"9=B$$,JQ2=$7$?$H$-$K(B -$B$O!"(Bgnus $B%P%C%/%(%s%I$OF0:n$7$^$;$s!#$G$b!"$"$kDxEY?7$7$$%P!<%8%g%s$N%P%C(B -$B%/%(%s%I$r;H$C$F$$$l$PBg>fIW$N$O$:$G$9!#(B +@acronym{HTML} $B%G!<%?$+$i>pJs$r=8$a$k$N$O$;$$$<$$?dB,$G!"9=B$$,JQ2=$7$?(B +$B$H$-$K$O!"(Bgnus $B%P%C%/%(%s%I$OF0:n$7$^$;$s!#$G$b!"$"$kDxEY?7$7$$%P!<%8%g(B +$B%s$N%P%C%/%(%s%I$r;H$C$F$$$l$PBg>fIW$N$O$:$G$9!#(B $B$3$l$i$N%&%'%VJ}K!$K6&DL$9$k$3$H$O!"%&%'%V%=!<%9$O$7$P$7$PMn$A$F$$$?$j!"(B $B;HMQ2DG=$G$J$+$C$?$j!"C1=c$K3Z$7$`$K$OCY$9$.$k$3$H$,$"$k!"$H$$$&$3$H$G$9!#(B @@ -14736,7 +14647,7 @@ gnus $B$r=*N;$7$?$$$+$b$7$l$^$;$s!#(B @cindex Slashdot @cindex nnslashdot -Slashdot (@uref{http://slashdot.org/}) $B$O?M5$$N$"$k%K%e!<%9%5%$%H$G!"%K%e!<(B +@uref{http://slashdot.org/, Slashdot} $B$O?M5$$N$"$k%K%e!<%9%5%$%H$G!"%K%e!<(B $B%95-;v$N8e$K3hH/$J5DO@$,$J$5$l$F$$$^$9!#(B@code{nnslashdot} $B$G$OJXMx$JJ}K!(B $B$G$3$N2q5D<<$rFI$`$3$H$,$G$-$^$9!#(B @@ -14759,11 +14670,11 @@ Slashdot (@uref{http://slashdot.org/}) $B$O?M5$$N$"$k%K%e!<%9%5%$%H$G!"%K%e!<( @kbd{G DEL} $B$,:G$b/$7(B @sc{html} $B$KJQ49$5$l$^$9!#FC$K!"(B@samp{> } $B$G0zMQ$5$l(B -$B$?%F%-%9%H$O$=$NBe$o$j$K(B @code{blockquote} $B$G0zMQ$5$l!"=pL>$K$O$=$l$>$l(B -$B$N9T$N:G8e$K(B @code{br} $B$,DI2C$5$l$^$9!#$=$l0J30$O!"%a%C%;!<%8%P%C%U%!$K(B -$BD>@\(B @sc{html} $B$r=q$/$3$H$,$G$-$^$9!#(BSlashdot $B$O$$$/$D$+(B @sc{html} $B$rA*(B -$BJL$9$k$3$H$K5$$r$D$1$F$/$@$5$$!#(B +$B$r$9$k$H$-$O!">/$7(B @acronym{HTML} $B$KJQ49$5$l$^$9!#FC$K!"(B@samp{> } $B$G0zMQ(B +$B$5$l$?%F%-%9%H$O$=$NBe$o$j$K(B @code{blockquote} $B$G0zMQ$5$l!"=pL>$K$O$=$l(B +$B$>$l$N9T$N:G8e$K(B @code{br} $B$,DI2C$5$l$^$9!#$=$l0J30$O!"%a%C%;!<%8%P%C%U%!(B +$B$KD>@\(B @acronym{HTML} $B$r=q$/$3$H$,$G$-$^$9!#(BSlashdot $B$O$$$/$D(B +$B$+(B @acronym{HTML} $B$rA*JL$9$k$3$H$K5$$r$D$1$F$/$@$5$$!#(B $B0J2<$NJQ?t$G?6$kIq$$$rJQ$($k$3$H$,$G$-$^$9(B: @@ -14819,10 +14730,10 @@ Slashdot (@uref{http://slashdot.org/}) $B$O?M5$$N$"$k%K%e!<%9%5%$%H$G!"%K%e!<( @cindex nnultimate @cindex Ultimate Bulletin Board -Ultimate Bulletin Board (@uref{http://www.ultimatebb.com/}) $B$O$*$=$i$/0l(B -$BHVNI$/;H$o$l$F$$$k%&%'%V7G<(HD%7%9%F%`$G$7$g$&!#$H$F$b@0A3$H$7$FNI$$3&LL(B -$B$G!"(Bgnus $B$,%0%k!<%W$r:G?7$N>uBV$KJ]$C$F$*$/$?$a$K>pJs$rF@$k$3$H$,2DG=$G(B -$B$9!#(B +@uref{http://www.ultimatebb.com/, The Ultimate Bulletin Board} $B$O$*$=$i(B +$B$/0lHVNI$/;H$o$l$F$$$k%&%'%V7G<(HD%7%9%F%`$G$7$g$&!#$H$F$b@0A3$H$7$FNI$$(B +$B3&LL$G!"(Bgnus $B$,%0%k!<%W$r:G?7$N>uBV$KJ]$C$F$*$/$?$a$K>pJs$rF@$k$3$H$,2D(B +$BG=$G$9!#(B @code{nnultimate} $B$r;O$a$k$?$a$N0lHV4JC1$JJ}K!$O%0%k!<%W%P%C%U%!$G0J2<$N(B $B$h$&$J$b$N$r$9$k$3$H$G$9(B: @kbd{B nnultimate RET @@ -14855,11 +14766,11 @@ http://www.tcj.com/messboard.ubbcgi/ RET}$B!#(B($B6=L#$N$"$k2q5D<<(B @findex gnus-group-make-warchive-group @code{nnwarchive} $B$r;O$a$k$?$a$N0lHV4JC1$JJ}K!$O%0%k!<%W%P%C%U%!$G0J2<$N(B $B$h$&$J$b$N$r$9$k$3$H$G$9(B: @kbd{M-x gnus-group-make-warchive-group RET -an_egroup RET egroups RET www.egroups.comRET your@@email.address RET}$B!#(B -(@sc{an_egroup} $B$r9XFI$7$F$$$k%a!<%j%s%0%j%9%H$K!"(B -@sc{your@@emailaddress} $B$rEE;R%a!<%k%"%I%l%9$KCV$-49$($F$/$@$5$$!#(B) -$B$^$?$O(B @kbd{B nnwarchive RET mail-archive RET} $B$G%P%C%/%(%s%I$r%V%i%&%:(B -$B$7$F2<$5$$!#(B +@var{an_egroup} RET egroups RET www.egroups.com RET +@var{your@@email.address} RET}$B!#(B(@var{an_egroup} $B$r9XFI$7$F$$$k%a!<%j%s(B +$B%0%j%9%H$K!"(B@var{your@@emailaddress} $B$rEE;R%a!<%k%"%I%l%9$KCV$-49$($F2<(B +$B$5$$!#(B) $B$^$?$O(B @kbd{B nnwarchive RET mail-archive RET} $B$G%P%C%/%(%s%I$r(B +$B%V%i%&%:$7$F2<$5$$!#(B $B0J2<$N(B @code{nnwarchive} $BJQ?t$rJQ$($k$3$H$,2DG=$G$9(B: @@ -14905,7 +14816,7 @@ an_egroup RET egroups RET www.egroups.comRET your@@email.address RET}$B!#(B $BJ}$H$bL>A0$NJd40$,$G$-$^$9!#(B @c $B$^$?$O(B @kbd{B nnshimbun RET asahi RET} $B$G%P%C%/%(%s%I$r%V%i%&%:$9$k$3$H(B @c $B$K$h$C$F$b5-;v$rFI$`$3$H$,$G$-$^$9!#(B -$B2C$($F!"(B@sc{html} $B$N%I%-%e%a%s%H$r%$%s%i%$%sI=<($5$;$?$$>l9g$O!"(B +$B2C$($F!"(B@acronym{HTML} $B$N%I%-%e%a%s%H$r%$%s%i%$%sI=<($5$;$?$$>l9g$O!"(B @file{~/.gnus.el} $B%U%!%$%k$K0J2<$N@_Dj$r$7$F2<$5$$!#(B @lisp @@ -15032,19 +14943,19 @@ Web Newspaper $B$K4X$9$k0J2<$N(B @code{nnshimbun} $BJQ?t$rJQ$($k$3$H$,2DG=$G$ $B8D!9$KF|?t$r@_Dj$7$J$$>l9g$O%G%#%U%)%k%H$NCM$,E,MQ$5$l$^$9!#(B}$B!#$"$"!"$b(B $B$A$m$s$"$J$?$,;0F|A0$N?7J95-;v$r>C5n$9$k$h$&$K@_Dj$7$?$+$i$H$$$C$F!"?7J9(B $BC$($F$7$^$&$o$1$G$O$"$j$^$;$s!#>C$($k$N(B -$B$O$"$J$?8D?M$,;}$C$F$$$k(B @code{nnshimbun} $BMQ$N(B @sc{nov} $B%U%!%$(B -$B%k(B @footnote{@code{nnshimbun} $BMQ$N(B @sc{nov} $B%U%!%$%k$H(B +$B$O$"$J$?8D?M$,;}$C$F$$$k(B @code{nnshimbun} $BMQ$N(B @acronym{NOV} $B%U%!%$(B +$B%k(B @footnote{@code{nnshimbun} $BMQ$N(B @acronym{NOV} $B%U%!%$%k$H(B $B$O(B ``~/News/shimbun/asahi/national/.overview'' $B$N$h$&$J$b$N$G$9!#(B} $B$N3:(B $BEv$9$kItJ,$G!"$=$l$K$h$C$F$=$N5-;v$OFsEY$H35N,%P%C%U%!$K8=$l$J$/$J$j$^$9!#(B @code{nnshimbun} $B%P%C%/%(%s%I$G$O5-;v$N4|8B@Z$l>C5n$r9T$J$o$J$$(B -$B$H(B @sc{nov} $B%U%!%$%k$,:]8BL5$/B@$jB3$1!"?7J9l9g$K$O!"2a5n$NA45-;v$rJ]M-$7$F(B -$B$$$k>l9g$,>/$J$/$J$$$G$7$g$&!#@N$"$J$?$,6=$8$?0lO"$N5-;v$rFI$_JV$7$F2{$+(B -$B$7$`$?$a$K!"$=$&$$$&%0%k!<%W$G$O4|8B@Z$l>C5n$O$5$;$?$/$J$$$H;W$&$+$b$7$l(B -$B$^$;$s!#(B +$B$H(B @acronym{NOV} $B%U%!%$%k$,:]8BL5$/B@$jB3$1!"?7J9l9g$K$O!"2a5n$NA45-;v$rJ](B +$BM-$7$F$$$k>l9g$,>/$J$/$J$$$G$7$g$&!#@N$"$J$?$,6=$8$?0lO"$N5-;v$rFI$_JV$7(B +$B$F2{$+$7$`$?$a$K!"$=$&$$$&%0%k!<%W$G$O4|8B@Z$l>C5n$O$5$;$?$/$J$$$H;W$&$+(B +$B$b$7$l$^$;$s!#(B $B$N%a!<%k%P%C%/%(%s%I$HF1MM$NJ}(B $BK!$G%0%k!<%WKh$K<+F04|8B@Z$l>C5n2DG=$K$7$?$j!";D$7$F$*$/4|4V$r@_Dj$9$k$3(B @@ -15203,59 +15114,60 @@ Gnus $B$O%&%'%V%Z!<%8$rH(B -$B$9$k$h$&$K$J$k$G$7$g$&!#(B +$B$G(B @acronym{HTML} $B%j%s%/$rC!$1$P!"(B@code{browse-url} $B$r;H$C$F$=$N%j%s%/$r(B +$B;2>H$9$k$h$&$K$J$k$G$7$g$&!#(B @node IMAP @section IMAP @cindex nnimap -@cindex IMAP - -@sc{imap} $B$O%a!<%k(B ($B$b$7$/$O!"%K%e!<%9!"$b$7$/$O(B @dots{}) $B$rFI$`$?$a$N%M%C(B -$B%H%o!<%/%W%m%H%3%k$G$9!#8=BeIw$N(B @sc{nntp} $B$H9M$($F$/$@$5$$!#(B -@sc{imap} $B%5!<%P!<$X$N@\B3$O%K%e!<%9%5!<%P!<$X$N@\B3$HHs>o$K;w$F$$$F!"$=(B -$B$N%5!<%P!<$N%M%C%H%o!<%/%"%I%l%9$r;XDj$9$k$@$1$K$J$C$F$$$^$9!#(B - -@sc{imap} $B$K$OFs$D$NFCo$K;w$F$$(B +$B$F!"$=$N%5!<%P!<$N%M%C%H%o!<%/%"%I%l%9$r;XDj$9$k$@$1$K$J$C$F$$$^$9!#(B + +@acronym{IMAP} $B$K$OFs$D$NFCH$7$F2<$5$$!#(B -@sc{imap} $B$r%a!<%k$rCyB"$9$k%W%m%H%3%k$H$7$F;H$$$?$$$H$-$O!"(B +@acronym{IMAP} $B$r%a!<%k$rCyB"$9$k%W%m%H%3%k$H$7$F;H$$$?$$$H$-$O!"(B @code{gnus-secondary-select-methods} $B$K(B nnimap $B$rEPO?$7$F2<$5$$!#$3$l$K(B -$B$h$C$F(B gnus $B$O(B @sc{imap} $B%5!<%P!<$KCyB"$5$l$F$$$k%a!<%k$rA`:n$9$k$h$&$K(B -$B$J$j$^$9!#$3$l$,$3$3$G@bL@$9$k;H$$J}$G$9!#(B +$B$h$C$F(B gnus $B$O(B @acronym{IMAP} $B%5!<%P!<$KCyB"$5$l$F$$$k%a!<%k$rA`:n$9$k$h(B +$B$&$K$J$j$^$9!#$3$l$,$3$3$G@bL@$9$k;H$$J}$G$9!#(B -$B$$$/$D$+$N(B @sc{imap} $B%5!<%P!<$r(B @file{~/.gnus.el} $B$G@_Dj$9$k$H!"$?$V$s0J(B -$B2<$N$h$&$J$b$N$K$J$k$G$7$g$&!#(B($BCm(B: TLS/SSL $B$G$O30It%W%m%0%i%`$H%i%$%V%i(B -$B%j$,I,MW$G$9!#0J2<$r;2>H$7$F2<$5$$!#(B) +$B$$$/$D$+$N(B @acronym{IMAP} $B%5!<%P!<$r(B @file{~/.gnus.el} $B$G@_Dj$9$k$H!"$?(B +$B$V$s0J2<$N$h$&$J$b$N$K$J$k$G$7$g$&!#(B($BCm(B: @acronym{TLS}/@acronym{SSL} $B$G(B +$B$O30It%W%m%0%i%`$H%i%$%V%i%j$,I,MW$G$9!#0J2<$r;2>H$7$F2<$5$$!#(B) @lisp (setq gnus-secondary-select-methods - '((nnimap "simpleserver") ; $BIaDL$N@_Dj(B - ; SSH $B%]!<%H$r%U%)%o!<%I$7$?%5!<%P!<(B: + '((nnimap "simpleserver") ; @r{$BIaDL$N@_Dj(B} + ; @r{SSH $B%]!<%H$r%U%)%o!<%I$7$?%5!<%P!<(B:} (nnimap "dolk" (nnimap-address "localhost") (nnimap-server-port 1430)) - ; $B%m!<%+%k%[%9%H$G1?E>$7$F$$$k(B UW $B%5!<%P!<(B: + ; @r{$B%m!<%+%k%[%9%H$G1?E>$7$F$$$k(B UW $B%5!<%P!<(B:} (nnimap "barbar" (nnimap-server-port 143) (nnimap-address "localhost") (nnimap-list-pattern ("INBOX" "mail/*"))) - ; $BF?L>$G;H$($k(B cyrus $B$N8x=0%5!<%P!<(B: + ; @r{$BF?L>$G;H$($k(B cyrus $B$N8x=0%5!<%P!<(B:} (nnimap "cyrus.andrew.cmu.edu" (nnimap-authenticator anonymous) (nnimap-list-pattern "archive.*") (nnimap-stream network)) - ; $BI8=`$G$O$J$$%]!<%H$N(B SSL $B%5!<%P!<(B: + ; @r{$BI8=`$G$O$J$$%]!<%H$N(B @acronym{SSL} $B%5!<%P!<(B:} (nnimap "vic20" (nnimap-address "vic20.somewhere.com") (nnimap-server-port 9930) @@ -15274,13 +15186,13 @@ Gnus $B$O%&%'%V%Z!<%8$rl9g$O2>A[%5!<%P!<(B -$B$N$b$N$K$J$j$^$9!#(B +$B1s3V(B @acronym{IMAP} $B%5!<%P!<$N%"%I%l%9$G$9!#;XDj$5$l$F$$$J$$>l9g$O2>A[%5!<(B +$B%P!<$N$b$N$K$J$j$^$9!#(B @item nnimap-server-port @vindex nnimap-server-port $B@\B3$r;n$_$k%5!<%P!<$N%]!<%H$G$9!#%G%#%U%)%k%H$O%]!<%H(B 143$B!"$^$?(B -$B$O(B TLS/SSL $B$G$O(B 993 $B$G$9!#(B +$B$O(B @acronym{TLS}/@acronym{SSL} $B$G$O(B 993 $B$G$9!#(B $B$3$l$O@0?t$G$J$1$l$P$J$j$^$;$s!#0J2<$O%5!<%P!<;XDj$NNc$G$9!#(B @@ -15293,9 +15205,9 @@ Gnus $B$O%&%'%V%Z!<%8$ro$KB?$/$N%a!<%k%\%C%/%9$,$"$k$1$l$I!"6=L#$N$"$k$b$N$O>/$7$@$1$G(B -$B$"$k$H$-$K;HMQ$7$^$9!#%5!<%P!<$K$O%[!<%`%G%#%l%/%H%j!<$r(B @sc{imap} $B7PM3(B -$B$G=P$9$b$N$b$"$j$^$9$N$G!"$=$N>l9g$O$*$=$i$/%a!<%k%\%C%/%9(B -$B$r(B @file{~/Mail/*} $B$K@)8B$7$?$$$G$7$g$&!#(B +$B$"$k$H$-$K;HMQ$7$^$9!#%5!<%P!<$K$O%[!<%`%G%#%l%/%H%j!<(B +$B$r(B @acronym{IMAP} $B7PM3$G=P$9$b$N$b$"$j$^$9$N$G!"$=$N>l9g$O$*$=$i$/%a!<%k(B +$B%\%C%/%9$r(B @file{~/Mail/*} $B$K@)8B$7$?$$$G$7$g$&!#(B $BJ8;zNs$O(B REFERENCE $B$H>e$NJ8;zNs$H$N(B cons $B$G$"$k$3$H$b$G$-$^$9!#$I(B $B$N(B REFERENCE $B$,;HMQ$5$l$k$+$O%5!<%P!Z$K$h$k(B IMAP $B@\B3$r5/F0$9$k$?$a$N(B -$B%3%^%s%I9T$N%j%9%H$r;XDj$7$^$9!#$3$l$i$O@\B3$,3NN)$9$k$^$G!"$^$?$O%j%9%H(B -$B$,;H$$?T$/$5$l$k$^$G!"=g$0$j$K;n$5$l$^$9!#%G%#%U%)%k%H$G$O!"(B +$B$3$N%Q%i%a!<%?$O!"I{%7%'%k$G(B GSSAPI $BG'>Z$K$h$k(B @acronym{IMAP} $B@\B3$r5/F0(B +$B$9$k$?$a$N%3%^%s%I9T$N%j%9%H$r;XDj$7$^$9!#$3$l$i$O@\B3$,3NN)$9$k$^$G!"$^(B +$B$?$O%j%9%H$,;H$$?T$/$5$l$k$^$G!"=g$0$j$K;n$5$l$^$9!#%G%#%U%)%k%H$G$O!"(B @uref{http://www.gnu.org/software/gsasl/} $B$K$"$k(B GNU SASL $B$K$h(B $B$k(B @samp{gsasl} $B$H!"(BCyrus IMAPD $B$K$h$k(B @samp{imtest} $B%W%m%0%i(B $B%`(B (@code{imap-kerberos4-program} $B;2>H(B) $B$,;n$5$l$^$9!#(B @vindex imap-ssl-program -SSL $B@\B3$N$?$a$N(B OpenSSL $B%W%m%0%i%`$O(B @uref{http://www.openssl.org/} $B$+(B -$B$iF~l9g!"JQ(B +@acronym{IMAP} $B@\B3$K(B @code{shell} $B%9%H%j!<%`$r;H$&>l9g!"JQ(B $B?t(B @code{imap-shell-program} $B$O2?$N%W%m%0%i%`$r8F$V$+$r;XDj$7$^$9!#(B @item nnimap-authenticator @@ -15424,13 +15338,13 @@ nnimap $B$O$=$l$b%5%]!<%H$7$^$9!#$7$+$7!"(BSSLeay $B$N:G?7HG$G$"$k(B 0.9.x  @cindex Expunging @vindex nnimap-expunge-on-close -$B%Q%k%a%K%G%9$H0c$C$F!"(B@sc{imap} $B$N@_7W\$7$/@bL@$9$k$H!"(B@sc{imap} $B$OC5n$7$J$$!"5-;v$K(B @code{Deleted} $B$H$$$&0u$rIU$1$k35G0$,$"$j!"$3(B -$B$l(B ($B$($C$H!"(B@code{Deleted} $B$H$$$&0u$rIU$1$k$3$H$G(B -$B$9(B) $B$,(B nnimap $B$,(B Gnus $B$G5-;v$r>C5n$9$k$H$-$K$9$k$3$H$G$9(B (@kbd{B DEL} $B$J(B -$B$I$G(B)$B!#(B -($BLuCm(B: $B%Q%k%a%K%G%9$O5*85A0(B 5 $B@$5*$N%.%j%7%"$N(B Elea $BGI$NE/3X\$7$/@bL@$9$k$H!"(B +@acronym{IMAP} $B$OC5n$7$J$$!"5-;v$K(B @code{Deleted} $B$H$$$&(B +$B0u$rIU$1$k35G0$,$"$j!"$3$l(B ($B$($C$H!"(B@code{Deleted} $B$H$$$&0u$rIU$1$k$3$H(B +$B$G$9(B) $B$,(B nnimap $B$,(B Gnus $B$G5-;v$r>C5n$9$k$H$-$K$9$k$3$H$G(B +$B$9(B (@kbd{B DEL} $B$J$I$G(B)$B!#(B($BLuCm(B: $B%Q%k%a%K%G%9$O5*85A0(B 5 $B@$5*$N%.%j%7%"(B +$B$N(B Elea $BGI$NE/3XC5n$5$l$F$$$J$$$N(B $B$G!"C5n$9$k$?$a$NJ}K!$,I,MW$H$J$j$^$9!#=[4D$7$F$$$k$h$&$K46$8$^$9(B @@ -15448,8 +15362,9 @@ nnimap $B$O$=$l$b%5%]!<%H$7$^$9!#$7$+$7!"(BSSLeay $B$N:G?7HG$G$"$k(B 0.9.x  $B5-;v$r>C5n$7$^$9!#(B @item never $B7h$7$F5-;v$r>C5n$7$^$;$s!#8=:_$O!">C5n$N0u$,IU$$$?5-;v$r(B nnimap $B$GI=<($9(B -$B$kJ}K!$O$"$j$^$;$s$,!"B>$N(B @sc{imap} $B%/%i%$%"%s%H$O$G$O$G$-$k$+$b$7$l$^(B -$B$;$s!#$N(B @acronym{IMAP} $B%/%i%$%"%s%H$O$G$O$G$-$k$+$b$7(B +$B$l$^$;$s!#C5n$5$l$?5-;v$r:o=|$9$k$+$I$&$+(B $B$r?R$M$^$9!#(B @@ -15458,12 +15373,12 @@ nnimap $B$O$=$l$b%5%]!<%H$7$^$9!#$7$+$7!"(BSSLeay $B$N:G?7HG$G$"$k(B 0.9.x  @item nnimap-importantize-dormant @vindex nnimap-importantize-dormant -$BHs(B-@code{nil} ($B%G%#%U%)%k%H(B) $B$@$C$?$i!"B>$N(B @sc{imap} $B%/%i%$%"%s%H$N$?$a(B -$B$KJ]N15-;v$r0uIU$-$H$7$F$b0u$rIU$1$^$9!#(Bgnus $B$NFbIt$G$O!"J]N15-;v$O85!9(B -$B$9$G$KJ]N15-;v$H$7$F$N$_0u$,IU$1$i$l$F$$$^$9!#$3$l$O!"B>$N(B @sc{imap} $B%/(B -$B%i%$%"%s%H$K$*$1$kJ]N15-;v$r!"$"$?$+$b0uIU$-$N$h$&$K$-$oN)$?$;$^$9!#(B($BJL(B -$B$N8@$$J}$r$9$k$H!"(Bgnus $B$OFs$D$N0u$rIU$1!"(B@sc{imap} $B$O$?$C$?0l$D$@$H$$$&(B -$B$3$H$G$9!#(B) +$BHs(B-@code{nil} ($B%G%#%U%)%k%H(B) $B$@$C$?$i!"B>$N(B @acronym{IMAP} $B%/%i%$%"%s%H(B +$B$N$?$a$KJ]N15-;v$r0uIU$-$H$7$F$b0u$rIU$1$^$9!#(Bgnus $B$NFbIt$G$O!"J]N15-;v(B +$B$O85!9$9$G$KJ]N15-;v$H$7$F$N$_0u$,IU$1$i$l$F$$$^$9!#$3$l$O!"B>(B +$B$N(B @acronym{IMAP} $B%/%i%$%"%s%H$K$*$1$kJ]N15-;v$r!"$"$?$+$b0uIU$-$N$h$&$K(B +$B$-$oN)$?$;$^$9!#(B($BJL$N8@$$J}$r$9$k$H!"(Bgnus $B$OFs$D$N0u$rIU$1!"(B +@acronym{IMAP} $B$O$?$C$?0l$D$@$H$$$&$3$H$G$9!#(B) $B$?$V$s$3$l$r$$$8$j$^$o$9$N$O!"$"$J$?$,%f!<%6C10L$NJ]N1%U%i%0$rIU$1$h$&$H(B $B$9$k$@$1$NM}M3$K$h$k$G$7$g$&!#$3$s$J46$8$G(B: @@ -15483,7 +15398,7 @@ nnimap $B$O$=$l$b%5%]!<%H$7$^$9!#$7$+$7!"(BSSLeay $B$N:G?7HG$G$"$k(B 0.9.x  @vindex nnimap-expunge-search-string $B$3$NJQ?t$K$O!"4|8B@Z$l>C5n$9$k$N$,K>$^$7$$5-;v$rC5$9$H$-$K%5!<%P!<$KAw$C(B -$B$?(B @sc{imap} $B$N8!:w%3%^%s%I$,F~$C$F$$$^$9!#%G%#%U%)%k%H(B +$B$?(B @acronym{IMAP} $B$N8!:w%3%^%s%I$,F~$C$F$$$^$9!#%G%#%U%)%k%H(B $B$O(B @code{"UID %s NOT SINCE %s"} $B$G!"$3$3$G:G=i$N(B @code{%s} $B$O(B UID $B$GCV$-(B $B49$($i$l!"FsHVL\$N(B @code{%s} $B$OF|IU$GCV$-49$($i$l$^$9!#(B @@ -15504,10 +15419,9 @@ nnimap $B$K5-;v$NFbItE*$JF|IU$NBe$o$j$K(B Date: $B$r;H$&$h$&$K$5$;$^$9!#$5$i$ @menu * Splitting in IMAP:: nnimap $B$G%a!<%k$rJ,3d$9$k(B * Expiring in IMAP:: nnimap $B$K$h$k%a!<%k$N4|8B@Z$l>C5n(B -* Editing IMAP ACLs:: $B%a!<%k%\%C%/%9$X$NB>$NMxMQ$NMxMQA06u4V$r;H$&(B($B;H$o$J$$(B)$BJ}K!(B +* A note on namespaces:: gnus $B$G(B @acronym{IMAP} $BL>A06u4V$r;H$&(B($B;H$o$J$$(B)$BJ}K!(B @end menu @node Splitting in IMAP @@ -15515,10 +15429,10 @@ nnimap $B$K5-;v$NFbItE*$JF|IU$NBe$o$j$K(B Date: $B$r;H$&$h$&$K$5$;$^$9!#$5$i$ @cindex splitting imap mail $BJ,3d$O(B gnus $B$NMxMQA0$r;XDj$7$?J8;zNs$+J8;zNs(B -$B$N%j%9%H$G$9!#=i4|CM$O(B @code{nil} $B$G!"J,3d$O;HMQ$7$J$$$h$&$K$J$C$F$$$^$9(B! +$BJ,3d$N85$H$J$k(B @acronym{IMAP} $B$N%a!<%k%\%C%/%9$NL>A0$r;XDj$7$?J8;zNs$+J8(B +$B;zNs$N%j%9%H$G$9!#=i4|CM$O(B @code{nil} $B$G!"J,3d$O;HMQ$7$J$$$h$&$K$J$C$F$$(B +$B$^$9(B! @lisp (setq nnimap-split-inbox @@ -15559,9 +15474,9 @@ Nnmail $B$KBP1~$9$k$b$N$O$"$j$^$;$s!#(B $B$5$l$^$9!#(B $B$3$NJQ?t$O%j%9%H$N%j%9%H$+$i@.$j$^$9!#I{%j%9%H$N:G=i$NMWAG(B -$B$O(B @sc{imap} $B$N%a!<%k%\%C%/%9$G!"Fs$D$a$NMWAG$N@55,I=8=$K9gCW$7$?5-;v$N(B -$B0\F0@h$r;XDj$7$^$9!#$o$+$j$^$7$?$+(B? $B$$$$$(!";d$b$o$+$j$^$;$s!#Nc$,I,MW$G(B -$B$9!#(B +$B$O(B @acronym{IMAP} $B$N%a!<%k%\%C%/%9$G!"Fs$D$a$NMWAG$N@55,I=8=$K9gCW$7$?5-(B +$B;v$N0\F0@h$r;XDj$7$^$9!#$o$+$j$^$7$?$+(B? $B$$$$$(!";d$b$o$+$j$^$;$s!#Nc$,I,(B +$BMW$G$9!#(B @lisp (setq nnimap-split-rule @@ -15634,10 +15549,10 @@ Nnmail $B$GBP1~$9$k$b$N(B: @code{nnmail-split-methods}. $B$3$N=R8l$K%^%C%A$9$k(B @code{nnimap-split-inbox} $B$K$"$k%a!<%k$OJ,3d$5$l$^(B $B$9!#$3$l$OJ8;zNs$G4{DjCM$O(B @samp{UNSEEN UNDELETED} $B$G$9!#(B -$B$b$7$"$J$?$,(B inbox $B$K$"$k%a!<%k$rFI$`$?$a$KJL$N(B @sc{imap} $B%/%i%$%"%s%H$r(B -$B;H$C$F$$$k$,!"9XFIEY$K4X$o$i$:$K$9$Y$F$N5-;v$r(B gnus $B$KJ,3d$5$;$?$$$J$i$P!"(B -$B$3$l$OLr$KN)$D$+$b$7$l$^$;$s!#$=$N>l9g$O(B @samp{UNDELETED} $B$KJQ$($l$PNI$$(B -$B$G$7$g$&!#(B +$B$b$7$"$J$?$,(B inbox $B$K$"$k%a!<%k$rFI$`$?$a$KJL$N(B @acronym{IMAP} $B%/%i%$%"(B +$B%s%H$r;H$C$F$$$k$,!"9XFIEY$K4X$o$i$:$K$9$Y$F$N5-;v$r(B gnus $B$KJ,3d$5$;$?$$(B +$B$J$i$P!"$3$l$OLr$KN)$D$+$b$7$l$^$;$s!#$=$N>l9g$O(B @samp{UNDELETED} $B$KJQ$((B +$B$l$PNI$$$G$7$g$&!#(B @item nnimap-split-fancy @cindex splitting, fancy @@ -15677,19 +15592,19 @@ Nnmail $B$GBP1~$9$k$b$N(B: @code{nnmail-split-fancy}. @code{nnimap} $B$O40A4$J(B @code{nnmail} $BM3Mh$N%P%C%/%(%s%I$G$O$"$j$^$;$s$,!"(B $B$?$$$F$$$N4|8B@Z$l>C5n(B (@pxref{Expiring Mail}) $B$NI8=`5!G=$r%5%]!<%H$7$^(B -$B$9!#(BIMAP $B$NJ,3d(B (@pxref{Splitting in IMAP}) $B$G$O(B @code{nnmail} $B$NJQ?t$r(B -$BJ#@=$7$J$$(B ($BNc$($P(B @var{nnimap-expiry-wait} $B$r@8@.$7$J$$(B) $BE@$,0c$&$N$G$9(B -$B$,!"(B@code{nnmail} $B$NJQ?t$rN.MQ$7$^$9!#0J2<$O(B @code{nnimap} $B$N4|8B@Z$l>C(B -$B5n=hM}$G;H$o$l$kJQ?t$G$9!#(B - -$B4|8B@Z$l>C5n$N0u$,$I$N$h$&$KE,@Z$K(B @sc{imap} $B%5!<%P!<$K5-O?$5$l$k$+$K$D(B -$B$$$F$b$3$3$G8@5Z$7$F$*$-$^$7$g$&!#4|8B@Z$l>C5n$N0u$O(B @code{imap} $B%/%i%$(B -$B%"%s%HFCM-$N0u$G$"$k(B @code{gnus-expire} $B$KJQ49$5$l!"%a%C%;!<%8$K5-O?$5$l(B -$B$^$9!#$3$l$O!"B>$N%/%i%$%"%s%H$O%a%C%;!<%8$N%/%i%$%"%s%HFCM-$N%U%i%0$r8+(B -$B$k$+$b$7$l$J$$$N$KBP$7$F!"(BGnus $B$O$?$V$s(B @code{gnus-expire} $B$N0u$rE,@Z$K(B -$B07$$M}2r$9$k$@$1$G$"$k$3$H$r0UL#$7$^$9!#$^$?$3$l$O%5!<%P!<$,!"%/%i%$%"%s(B -$B%HFCM-$N%U%i%0$N%a%C%;!<%8$X$N915WE*$JJ]B8$r%5%]!<%H$7$J$1$l$P$J$i$J$$$3(B -$B$H$b0UL#$7$^$9!#9,$$$K!"$?$$$F$$$O%5%]!<%H$7$^$9!#(B +$B$9!#(B@acronym{IMAP} $B$NJ,3d(B (@pxref{Splitting in IMAP}) $B$G(B +$B$O(B @code{nnmail} $B$NJQ?t$rJ#@=$7$J$$(B ($BNc$($P(B @var{nnimap-expiry-wait} $B$r(B +$B@8@.$7$J$$(B) $BE@$,0c$&$N$G$9$,!"(B@code{nnmail} $B$NJQ?t$rN.MQ$7$^$9!#0J2<(B +$B$O(B @code{nnimap} $B$N4|8B@Z$l>C5n=hM}$G;H$o$l$kJQ?t$G$9!#(B + +$B4|8B@Z$l>C5n$N0u$,$I$N$h$&$KE,@Z$K(B @acronym{IMAP} $B%5!<%P!<$K5-O?$5$l$k$+(B +$B$K$D$$$F$b$3$3$G8@5Z$7$F$*$-$^$7$g$&!#4|8B@Z$l>C5n$N0u$O(B @code{imap} $B%/(B +$B%i%$%"%s%HFCM-$N0u$G$"$k(B @code{gnus-expire} $B$KJQ49$5$l!"%a%C%;!<%8$K5-O?(B +$B$5$l$^$9!#$3$l$O!"B>$N%/%i%$%"%s%H$O%a%C%;!<%8$N%/%i%$%"%s%HFCM-$N%U%i%0(B +$B$r8+$k$+$b$7$l$J$$$N$KBP$7$F!"(BGnus $B$O$?$V$s(B @code{gnus-expire} $B$N0u$rE,(B +$B@Z$K07$$M}2r$9$k$@$1$G$"$k$3$H$r0UL#$7$^$9!#$^$?$3$l$O%5!<%P!<$,!"%/%i%$(B +$B%"%s%HFCM-$N%U%i%0$N%a%C%;!<%8$X$N915WE*$JJ]B8$r%5%]!<%H$7$J$1$l$P$J$i$J(B +$B$$$3$H$b0UL#$7$^$9!#9,$$$K!"$?$$$F$$$O%5%]!<%H$7$^$9!#(B @table @code @item nnmail-expiry-wait @@ -15701,23 +15616,23 @@ Nnmail $B$GBP1~$9$k$b$N(B: @code{nnmail-split-fancy}. @item nnmail-expiry-target $B$3$NJQ?t$O%5%]!<%H$5$l$F$$$F!"FbItE*$K$O$3$l$r07$&(B @code{nnmail} $B4X?t$r(B -$B8F$V$3$H$K$h$C$F$5$l$k(B) -$B$H$$$&:GE,2=$b4^$_$^$9!#(B +$B8F$V$3$H$K$h$C$F$5$l$k(B) $B$H$$$&:GE,2=$b4^$_$^$9!#(B @end table @node Editing IMAP ACLs @subsection IMAP $B$N(B ACL $B$rJT=8$9$k!#(B @cindex editing imap acls @cindex Access Control Lists -@cindex Editing @sc{imap} ACLs +@cindex Editing @acronym{IMAP} ACLs @kindex G l @findex gnus-group-nnimap-edit-acl -ACL $B$O(B Access Control List ($B;HMQ@)8B0lMw(B) $B$NN,$G$9!#(B@sc{imap} $B$G(B +ACL $B$O(B Access Control List ($B;HMQ@)8B0lMw(B) $B$NN,$G$9!#(B@acronym{IMAP} $B$G(B $B$O(B ACL $B$OB>$NMxMQ$NMxMQ/$J$/$H$b(B Cyrus $B$N%5!<%P!<$K$*$$$F$O!"(B``plussing'' $B$,F0:n$9$k$?$a$K(B ($B$D(B -$B$^$j!"(Buser+mail@@domain $B$,(B INBOX.mailbox $B$H$$$&(B @sc{imap} $B$N%a!<%k%\%C%/(B -$B%9$K$J$k(B)$B!"MxMQA06u4V$K4X$9$kCm0U(B -@cindex IMAP namespace +@cindex @acronym{IMAP} namespace @cindex namespaces -IMAP $B%W%m%H%3%k$K$OL>A06u4V(B (namespaces) $B$H8F$P$l$k35G0$,$"$j!"0J2<(B -$B$N(B RFC2060 $B$NJ8=q$G5-=R$5$l$F$$$^$9!#(B +@acronym{IMAP} $B%W%m%H%3%k$K$OL>A06u4V(B (namespaces) $B$H8F$P$l$k35G0$,$"$j!"(B +$B0J2<$N(B RFC2060 $B$NJ8=q$G5-=R$5$l$F$$$^$9!#(B @example 5.1.2. $B%a!<%k%\%C%/%9L>A06u4VL?L>5,B'(B @@ -15778,11 +15694,11 @@ IMAP $B%W%m%H%3%k$K$OL>A06u4V(B (namespaces) $B$H8F$P$l$k35G0$,$"$j!"0J2<(B ($BLuCp(B: http://kame.zit.to/~obata/imap/rfc/rfc2060ja.txt $B$h$jE>:\(B) @end example -$B$3$3$K$O(B gnus $B$K$*$1$k(B IMAP $B$NZ$9$kJ8=q$,L5$$$N$G$9(B -$B$,!"$$$/$D$+$N%5!<%P!<$O(B gnus $B$N%a!<%k%\%C%/%9$NL>A0$N;H$$J}$G$OF0:n$7$J(B -$B$$$d$jJ}$GL>A06u4V@\F,<-$r;H$C$F$$$^$9!#(B +$B$3$3$K$O(B gnus $B$K$*$1$k(B @acronym{IMAP} $B$NZ$9$kJ8=q$,(B +$BL5$$$N$G$9$,!"$$$/$D$+$N%5!<%P!<$O(B gnus $B$N%a!<%k%\%C%/%9$NL>A0$N;H$$J}$G(B +$B$OF0:n$7$J$$$d$jJ}$GL>A06u4V@\F,<-$r;H$C$F$$$^$9!#(B -$B6qBNE*$K$O!"%o%7%s%H%sBg3X$N(B IMAP $B%5!<%P!<(B +$B6qBNE*$K$O!"%o%7%s%H%sBg3X$N(B @acronym{IMAP} $B%5!<%P!<(B $B$O(B @code{#driver.mbx/read-mail} $B$N$h$&$J%a!<%k%\%C%/%9L>$r;H$C$F$$$F!"$=(B $B$l$O(B @sc{create} $B$H(B @sc{append} $B%3%^%s%I$G$@$1M-8z$G$9!#%a!<%k%\%C%/%9$,(B $B:n$i$l$?8e(B ($B$^$?$O%a%C%;!<%8$,%a!<%k%\%C%/%9$KDI2C$5$l$?8e(B) $B$G$O!"$=$l$O(B @@ -15791,9 +15707,9 @@ IMAP $B%W%m%H%3%k$K$OL>A06u4V(B (namespaces) $B$H8F$P$l$k35G0$,$"$j!"0J2<(B $B%k%\%C%/%9L>$rJ]>Z$G$-$J$$$N$G!"@dBP$KL>A06u4V@\F,<-$,IU$$$?%a!<%k%\%C%/(B $B%9L>$r(B gnus $B$G;H$C$F$O$$$1$^$;$s!#(B -@code{#driver.*/} $B@\F,<-$K$D$$$F$N$5$i$J$k;H$$J}$N>pJs(B -$B$O(B UoW @sc{imapd} $B$NJ8=q$r8+$F2<$5$$!#$=$l$i$O6/NO$J9)6q$J$N$G!"$I$s$J8z(B -$B2L$,$"$k$+$,3N$+$J>l9g$@$1;H$C$F2<$5$$!#(B +@code{#driver.*/} $B@\F,<-$K$D$$$F$N$5$i$J$k;H$$J}$N>pJs$O(B UoW IMAPD $B$NJ8(B +$B=q$r8+$F2<$5$$!#$=$l$i$O6/NO$J9)6q$J$N$G!"$I$s$J8z2L$,$"$k$+$,3N$+$J>l9g(B +$B$@$1;H$C$F2<$5$$!#(B @node Other Sources @section $B$=$NB>$N%0%k!<%W8;(B @@ -15804,13 +15720,11 @@ Gnus $B$O$?$@C1$K%K%e!<%9$d%a!<%k$rFI$`0J>e$N$3$H$,$G$-$^$9!#0J2<(B $B$9!#(B @menu -* Directory Groups:: $B%G%#%l%/%H%j!<$r%K%e!<%9%0%k!<%W$N$h$&$K(B - $BFI$`(B +* Directory Groups:: $B%G%#%l%/%H%j!<$r%K%e!<%9%0%k!<%W$N$h$&$KFI$`(B * Anything Groups:: Dired? $BC/$,(B dired $B$J$s$F;H$&$N(B? * Document Groups:: $B8DJL$N%U%!%$%k72$O%0%k!<%W$NAG(B * SOUP:: @sc{soup} $B%Q%1%C%H$r(B ``$B%*%U%i%$%s(B'' $B$GFI$`(B -* Mail-To-News Gateways:: $B%a!<%k$+$i%K%e!<%9$X$N%2!<%H%&%'%$$rDL$7(B - $B$F5-;v$rEj9F$9$k(B +* Mail-To-News Gateways:: $B%a!<%k$+$i%K%e!<%9$X$N%2!<%H%&%'%$$rDL$7$F5-;v$rEj9F$9$k(B @end menu @node Directory Groups @@ -15834,7 +15748,7 @@ Gnus $B$O$?$@C1$K%K%e!<%9$d%a!<%k$rFI$`0J>e$N$3$H$,$G$-$^$9!#0J2<(B @samp{$B%7%J(B} $B$N8~$3$&$N%G%#%l%/%H%j!<$r%K%e!<%9%0%k!<%W$H$7$FFI$`$3$H$r2D(B $BG=$K$9$k$N$G$9!#$*!<$$!"J,;6%K%e!<%9$h(B! -@code{nndir} $B$O(B @sc{nov} $B%U%!%$%k$,B8:_$9$l$P$=$l$rMxMQ$7$^$9!#(B +@code{nndir} $B$O(B @acronym{NOV} $B%U%!%$%k$,B8:_$9$l$P$=$l$rMxMQ$7$^$9!#(B @code{nndir} $B$O(B ``$BFI$_=P$7@lMQ(B'' $B$N%P%C%/%(%s%I$G$9(B --- $B$3$NA*BrJ}K!$G$O!"(B $B5-;v$N:o=|$d4|8B@Z$l>C5n$r9T$J$&$3$H$O$G$-$^$;$s!#(B@code{nndir} $B$,;H$($k(B @@ -15948,13 +15862,13 @@ rnews $B$N%P%C%AE>Aw7A<0!#(B Netscape $B$N%a!<%k%\%C%/%9!#(B @item mime-parts -@sc{mime} $BItJ,%a%C%;!<%8(B (multipart)$B!#(B +@acronym{MIME} $BItJ,%a%C%;!<%8(B (multipart)$B!#(B @item standard-digest $BI8=`(B (RFC 1153) $B$^$H$aAw$j7A<0!#(B @item mime-digest -@sc{mime} $B$N$^$H$aAw$j%a%C%;!<%8!#(B +@acronym{MIME} $B$N$^$H$aAw$j%a%C%;!<%8!#(B @item lanl-gov-announce $B%m%9%"%i%b%99qN)8&5f=j(B (LANL) Gov Announce $B$+$i$NH/I=%a%C%;!<%8!#(B @@ -16142,8 +16056,8 @@ Clarinet $B$N%K%e!<%99`L\$rMWLs$7$?$^$H$aAw$j!#(B @code{nndoc-add-type} $B4X?t$r;HMQ$7$^$9!#$3$l$OFs$D$N%Q%i%a!<%?$r$H$j$^(B $B$9(B --- $B0l$DL\$O$=$NDj5A<+?H$G!"Fs$DL\$N(B ($B>JN,2DG=$J(B) $B%Q%i%a!<%?$O$3$NDj(B $B5A$r!"J8=ql9g$O(B @code{nil} $B$rJV$7!"$=(B @@ -16245,8 +16159,7 @@ Gnus $B$+$i(B @kbd{G s s} $BL?Na$r;H$C$F$3$N%Q%1%C%H$+$i%a!<%k$r=P$7$^$9!#(B @menu * SOUP Commands:: @sc{soup} $B%Q%1%C%H$r:n@.!"Aw=P$9$kL?Na(B * SOUP Groups:: @sc{soup} $B%Q%1%C%H$rFI$`%P%C%/%(%s%I(B -* SOUP Replies:: @code{nnsoup} $B$K%a!<%k$H%K%e!<%9$r0z$-7Q$,$;(B - $B$kJ}K!(B +* SOUP Replies:: @code{nnsoup} $B$K%a!<%k$H%K%e!<%9$r0z$-7Q$,$;$kJ}K!(B @end menu @node SOUP Commands @@ -16601,8 +16514,8 @@ nnvirtual $B%0%k!<%W(B (@dfn{nnvirtual group}) $B$O$N%0%k!<%W$N=89g0J>e @dfn{Kiboze} $B$9$k!"$H$O!"(B``$B%K%e!<%9%9%W!<%kA4It(B ($B$"$k$$$O$=$N0lIt(B) $B$+(B $B$i(B grep $B$9$k$3$H(B'' $B$H%*%C%/%9%U%)!<%IBg<-E5$K$h$C$FDj5A$5$l$F$$$^$9!#(B @code{nnkiboze} $B$O$3$l$r$"$J$?$N$?$a$K9T$C$F$/$l$k%P%C%/%(%s%I$G$9!#4r$7(B -$B$$$M(B! $B$3$l$G$I$s$J(B @sc{nntp} $B%5!<%P!<$G$b!"Lr$KN)$?$J$$MW5a$G;_$^$C$F$7(B -$B$^$&$^$G9s;H$9$k$3$H$,$G$-$k$M!#$"$"!"$J$s$F9,$;$J$s$@(B! +$B$$$M(B! $B$3$l$G$I$s$J(B @acronym{NNTP} $B%5!<%P!<$G$b!"Lr$KN)$?$J$$MW5a$G;_$^$C(B +$B$F$7$^$&$^$G9s;H$9$k$3$H$,$G$-$k$M!#$"$"!"$J$s$F9,$;$J$s$@(B! @kindex G k ($B%0%k!<%W(B) kiboze $B%0%k!<%W$r:n@.$9$k$K$O!"%0%k!<%W%P%C%U%!$G(B @kbd{G k} $BL?Na$r;H$$$^(B @@ -16627,9 +16540,9 @@ Gnus $B$O$=$N(B @code{nnkiboze} $B%0%k!<%W$N0lIt$H$J$k$Y$-5-;v$,$"$k$+$I$&$+$ $B$l$iA4$F$KBP$7$F%9%3%"=hM}$rpJs$r3JG<$9$k!"(B@file{.newsrc} $B$NJd=u%U%!%$%k(B -$B$G$9!#(B +$B$N(B @acronym{NOV} $B%X%C%@!<9T$r4^$s$G$$$F!"$b$&0lJ}$O9=@.5-;v$r8+$D$1$k$?(B +$B$a$K$I$N%0%k!<%W$,8!:w$5$l$?$+$N>pJs$r3JG<$9$k!"(B@file{.newsrc} $B$NJd=u%U%!(B +$B%$%k$G$9!#(B -@code{nnkiboze} $B%0%k!<%WFb$N4{FI$H$J$C$?5-;v$O!"$=$N5-;v$N(B @sc{nov} $B9T(B -$B$,(B @sc{nov} $B%U%!%$%k$+$i:o=|$5$l$^$9!#(B +@code{nnkiboze} $B%0%k!<%WFb$N4{FI$H$J$C$?5-;v$O!"$=$N5-;v(B +$B$N(B @acronym{NOV} $B9T$,(B @acronym{NOV} $B%U%!%$%k$+$i:o=|$5$l$^$9!#(B @node Namazu Groups @subsection Namazu $B$r;H$C$F%a!<%k$N;3$+$i5-;v$rC$9J}K!(B * Agent Regeneration:: $BDL?.@ZCG$dB>$N;v8N$+$i2sI|$9$kJ}K!(B -* Agent and IMAP:: $B%(!<%8%'%s%H$r(B IMAP $B$G;H$&J}K!(B +* Agent and IMAP:: $B%(!<%8%'%s%H$r(B @acronym{IMAP} $B$G;H$&J}K!(B * Outgoing Messages:: $BEj9F!"%a!<%k$r=P$9$H$-$K$J$K$,5/$3$k$N$+(B? * Agent Variables:: $B%+%9%?%^%$%:$O3Z$7(B * Example Setup:: $B%*%U%i%$%s?M4V$N$?$a$N(B @file{~/.gnus.el} $B$NNc(B * Batching Agents:: @code{cron} $B%8%g%V$K$h$k%K%e!<%9l9g$O!"$?$V$s$3$N:G8e$NE@$O0UL# @findex gnus-agent-regenerate-group @kindex M-x gnus-agent-regenerate-group -$B%3%^%s%I(B @code{gnus-agent-regenerate-group} $B$O!"%m!<%+%k$N(B NOV ($B%X%C(B -$B%@!<(B) $B%G!<%?%Y!<%9$r=$I|$9$k$?$a$K!"8D!9$N5-;v$N%m!<%+%k$J%3%T!<$r;H$$$^(B -$B$9!#$=$N8e$=$l$O!"$I$N5-;v$,%m!<%+%k$K3JG<$5$l$k$+$rN"IU$1$k$?$a$NFbIt%G!<(B -$B%?9=B$$r99?7$7$^$9!#0z?t$rM?$($k$H!"%(!<%8%'%s%H$NCf$N5-;v$KL$FI$N0u$rIU(B -$B$1$^$9!#(B +$B%3%^%s%I(B @code{gnus-agent-regenerate-group} $B$O!"%m!<%+%k(B +$B$N(B @acronym{NOV} ($B%X%C%@!<(B) $B%G!<%?%Y!<%9$r=$I|$9$k$?$a$K!"8D!9$N5-;v$N%m!<(B +$B%+%k$J%3%T!<$r;H$$$^$9!#$=$N8e$=$l$O!"$I$N5-;v$,%m!<%+%k$K3JG<$5$l$k$+$r(B +$BN"IU$1$k$?$a$NFbIt%G!<%?9=B$$r99?7$7$^$9!#0z?t$rM?$($k$H!"%(!<%8%'%s%H$N(B +$BCf$N5-;v$KL$FI$N0u$rIU$1$^$9!#(B @node Agent and IMAP @subsection $B%(!<%8%'%s%H$r(B IMAP $B$G;H$&J}K!(B $B%(!<%8%'%s%H$O(B nnimap $B$r4^$`(B gnus $B$N$I$s$J%P%C%/%(%s%I$G$bF0:n$7$^$9!#$7(B -$B$+$7(B @sc{nntp} $B$H(B @sc{imap} $B$K$O$$$/$D$+$N35G0$N0c$$$,$"$k$N$G!"$3$N9`$G(B -$B$O(B gnus $B%(!<%8%'%s%H$r(B @sc{imap} $B$N(B @dfn{unplugged} $B$J%b!<%I$N%/%i%$%"%s(B -$B%H$H$7$F1_3j$K;H$($k$h$&$K$9$k$?$a$N!"$$$/$D$+$N>pJs$rDs6!$7$^$9!#(B +$B$+$7(B @acronym{NNTP} $B$H(B @acronym{IMAP} $B$K$O$$$/$D$+$N35G0$N0c$$$,$"$k$N$G!"(B +$B$3$N9`$G$O(B gnus $B%(!<%8%'%s%H$r(B @acronym{IMAP} $B$N(B @dfn{unplugged} $B$J%b!<(B +$B%I$N%/%i%$%"%s%H$H$7$F1_3j$K;H$($k$h$&$K$9$k$?$a$N!"$$$/$D$+$N>pJs$rDs6!(B +$B$7$^$9!#(B $B?4$KN1$a$F$*$/:G=i$N$3$H$O!"A4$F$N%U%i%0(B (read, ticked $B$J$I(B) $B$O(B nntp $B$N(B -$B>l9g$K$*$1$k(B @file{.newsrc} $B$G$O$J$/$F(B @sc{imap} $B%5!<%P!<$KJ];}$5$l$k$H(B -$B$$$&$3$H$G$9!#$7$?$,$C$F!"(Bgnus $B$O(B @dfn{unplugged} $B$N$H$-$N%U%i%0$NJQ2=$r(B -$B3P$($F$*$$$F!":F$S@\B3$7$?$H$-$K$=$l$i$N%U%i%0$rF14|$5$;$kI,MW$,$"$j$^$9!#(B +$B>l9g$K$*$1$k(B @file{.newsrc} $B$G$O$J$/$F(B @acronym{IMAP} $B%5!<%P!<$KJ];}$5$l(B +$B$k$H$$$&$3$H$G$9!#$7$?$,$C$F!"(Bgnus $B$O(B @dfn{unplugged} $B$N$H$-$N%U%i%0$NJQ(B +$B2=$r3P$($F$*$$$F!":F$S@\B3$7$?$H$-$K$=$l$i$N%U%i%0$rF14|$5$;$kI,MW$,$"$j(B +$B$^$9!#(B gnus $B$O%(!<%8%'%s%H$N85$G(B nnimap $B%0%k!<%W$rFI$`$H$-!"%U%i%0$NJQ2=$K@d$((B $B$:Cm0U$7$F$$$^$9!#$"$J$?$,:F$S@\B3$7$?$H$-!"(Bgnus $B$O$"$J$?$,2?$i$+$N%U%i(B @@ -17576,9 +17489,9 @@ gnus $B$O%(!<%8%'%s%H$N85$G(B nnimap $B%0%k!<%W$rFI$`$H$-!"%U%i%0$NJQ2=$K@d$( $B$=$l$r9T$J$&$3$H$b$G$-$^$9!#$3$l$K$O%0%k!<%W%P%C%U%!$N(B @kbd{J Y} $B%-!<$K(B $B3d$jEv$F$i$l$?(B @code{gnus-agent-synchronize-flags} $B%3%^%s%I$r;H$$$^$9!#(B -$B$"$J$?$,!"(B@dfn{unplugged} $B$N$H$-$N(B @sc{imap} $B%/%i%$%"%s%H$K4|BT$9$k$G$"(B -$B$m$&$$$/$D$+$N5!G=$O!"8=:_$N%(!<%8%'%s%H$K$O@9$j9~$^$l$F$$$^$;$s!#$=$l$i(B -$B$O0J2<$NDL$j$G$9!#(B +$B$"$J$?$,!"(B@dfn{unplugged} $B$N$H$-$N(B @acronym{IMAP} $B%/%i%$%"%s%H$K4|BT$9$k(B +$B$G$"$m$&$$$/$D$+$N5!G=$O!"8=:_$N%(!<%8%'%s%H$K$O@9$j9~$^$l$F$$$^$;$s!#$=(B +$B$l$i$O0J2<$NDL$j$G$9!#(B @itemize @bullet @@ -17640,9 +17553,9 @@ Gnus $B%(!<%8%'%s%H$,%U%!%$%k$r3JG<$9$k>l=j!#=i4|@_DjCM(B @item gnus-agent-cache @vindex gnus-agent-cache -plugged $B$N$H$-$K!"%m!<%+%k$K;}$C$F$$$k(B @sc{nov} $B$H5-;v$r;H$&$+$I$&$+$r@)(B -$B8f$9$kJQ?t$G!"Nc$($P%(!<%8%'%s%H$r%-%c%C%7%e$H$7$F;H$&$K$OI,?\$G$9!#%G%#(B -$B%U%)%k%H$G$OHs(B-@code{nil} $B$G!"%(!<%8%'%s%H$r%-%c%C%7%e$H$7$F;H$$$^$9!#(B +plugged $B$N$H$-$K!"%m!<%+%k$K;}$C$F$$$k(B @acronym{NOV} $B$H5-;v$r;H$&$+$I$&(B +$B$+$r@)8f$9$kJQ?t$G!"Nc$($P%(!<%8%'%s%H$r%-%c%C%7%e$H$7$F;H$&$K$OI,?\$G$9!#(B +$B%G%#%U%)%k%H$G$OHs(B-@code{nil} $B$G!"%(!<%8%'%s%H$r%-%c%C%7%e$H$7$F;H$$$^$9!#(B @item gnus-agent-go-online @vindex gnus-agent-go-online @@ -17712,21 +17625,21 @@ gnus $B$,%5!<%P!<$K@\B3$G$-$J$H$-$K2?$,5/$-$?$+$rJ*8l$j$^$9!#%(!<%8%'%s%H(B $B$H$3$m$+$i;O$a$i$l$k$G$7$g$&!#(B @lisp -;;; Gnus $B$,$I$N$h$&$K%K%e!<%9$ro$H$F$b;~4V$,(B -$B$+$+$j$^$9$,!"0lEY$@$1$7$+o$H$F$b;~(B +$B4V$,$+$+$j$^$9$,!"0lEY$@$1$7$+.$5$/$9$k$?$a$K!"@E$+$K:o=|$5$l$^$9!#(B @menu -* Summary Score Commands:: $B8=:_$N%0%k!<%W$N$?$a$N%9%3%"EPO?$rDI2C$9(B - $B$k(B +* Summary Score Commands:: $B8=:_$N%0%k!<%W$N$?$a$N%9%3%"EPO?$rDI2C$9$k(B * Group Score Commands:: $B0lHLE*$J%9%3%"L?Na(B -* Score Variables:: $B$"$J$?$N%9%3%"$r%+%9%?%^%$%:$9$k(B - ($B$^$!!"$J$s$FMQ8l$G$7$g$&(B) +* Score Variables:: $B$"$J$?$N%9%3%"$r%+%9%?%^%$%:$9$k(B ($B$^$!!"$J$s$FMQ8l$G$7$g$&(B) * Score File Format:: $B%9%3%"%U%!%$%k$K2?$rF~$l$k$+(B * Score File Editing:: $BC5n%U%!%$%k$r%9%3%"%U%!%$%k$KJQ49$9$k(B * GroupLens:: $B$I$l$rFI$`$N$,9%$-$+$NM=8@$rF@$k(B * Advanced Scoring:: $B%9%3%"$NK!B'$r:n$k$?$a$KO@M}I=8=$r;H$&(B -* Score Decays:: $B%9%3%"$r8O$l$F$$$+$;$k$N$OLr$KN)$D;v$b$"(B - $B$k(B +* Score Decays:: $B%9%3%"$r8O$l$F$$$+$;$k$N$OLr$KN)$D;v$b$"$k(B @end menu @node Summary Score Commands @@ -18068,8 +17973,8 @@ File Editing})$B!#(B @item e ``$BDI2C(B'' $B$N%X%C%@!<(B ($B$9$J$o$A!"(B(@code{gnus-extra-headers} $B$K@_Dj$5$l$F$$(B -$B$F!"(B@sc{nntp} $B%5!<%P!<$,(B overview $B$K$=$l$i$N>pJs$r5-O?$7$F$$$k(B) $B$K%9%3%"(B -$B$rIU$1$^$9!#(B +$B$F!"(B@acronym{NNTP} $B%5!<%P!<$,(B overview $B$K$=$l$i$N>pJs$r5-O?$7$F$$$k(B) $B$K(B +$B%9%3%"$rIU$1$^$9!#(B @item f $B%U%)%m!<%"%C%W(B (followup) $B$K%9%3%"$rIU$1$^$9(B---$B$3$l$OCx$H$N9gCW$r$7!"(B @@ -18225,7 +18130,7 @@ Gnus $B$O2?EY$b%9%3%"O"A[%j%9%H$rFI$_9~$`$N$rHr$1$k$?$a$K!"$=$l$N%-%c%C%7%e(B @item gnus-kill-files-directory @vindex gnus-kill-files-directory $BA4$F$N:o=|$H%9%3%"$N%U%!%$%k$O$3$N%G%#%l%/%H%j!<$KC_@Q$5$l!"$=$l$O=i4|@_(B -$BDj$G4D6-JQ?t(B @code{SAVEDIR} $B$K$h$C$F=i4|2=$5$l$^$9!#$3$l$O=i4|@_Dj(B +$BDj$G4D6-JQ?t(B @env{SAVEDIR} $B$K$h$C$F=i4|2=$5$l$^$9!#$3$l$O=i4|@_Dj(B $B$G(B @file{~/News/} $B$G$9!#(B @item gnus-score-file-suffix @@ -18355,9 +18260,10 @@ Gnus $B$O0lHLE*$J%9%3%"%U%!%$%k$rFCDj$N%9%3%"%U%!%$%k8~$1$N$b$N$h$jA0$KE,(B @item gnus-score-thread-simplify @vindex gnus-score-thread-simplify $B$3$NJQ?t$,(B @code{nil} $B$G$J$$$H!"5-;vI=Bj$O%9%l%C%I$HF1$8J}K!$GI=Bj%9%3%"(B -$B$N$?$a$KC1=c2=$5$l$^$9(B---$B8=:_$N(B gnus-simplify-subject-functions $B$NCM$K$h$C(B -$B$F!#%9%3%"EPO?$,(B @code{$BJ8;zNsItJ,(B} $B$+(B @code{$B@53N$J(B} $B9gCW$r;H$C$F$$$k$H!"(B -$B9gCW$b$3$NJ}K!$GC1=c2=$5$l$^$9!#(B +$B$N$?$a$KC1=c2=$5$l$^$9(B---$B8=:_(B +$B$N(B @code{gnus-simplify-subject-functions} $B$NCM$K$h$C$F!#%9%3%"EPO?(B +$B$,(B @code{$BJ8;zNsItJ,(B} $B$+(B @code{$B@53N$J(B} $B9gCW$r;H$C$F$$$k$H!"9gCW$b$3$NJ}K!(B +$B$GC1=c2=$5$l$^$9!#(B @end table @node Score File Format @@ -18462,9 +18368,9 @@ gnus $B$K5-;vA4BN$rl9g%9(B $B%3%"EPO?$N(B 5 $BHVL\$NMWAG$,%9%3%"$rIU$1$k%X%C%@!<$NL>A0$K$J$j$^$9!#(B -@sc{nntp} $B%5!<%P!<$,(B overview $B$K(B NNTP-Posting-Host $B$r5-O?$7$F$$$k$J$i$P!"(B -@file{all.SCORE} $B%U%!%$%k$N0J2<$NEPO?$O!"C10l$N%[%9%H$+$i(B spam $B$N967b$,(B -$B$"$k>l9g$KM-8z$G$9!#(B +@acronym{NNTP} $B%5!<%P!<$,(B overview $B$K(B NNTP-Posting-Host $B$r5-O?$7$F$$$k$J(B +$B$i$P!"(B@file{all.SCORE} $B%U%!%$%k$N0J2<$NEPO?$O!"C10l$N%[%9%H$+$i(B spam $B$N(B +$B967b$,$"$k>l9g$KM-8z$G$9!#(B @lisp ("111.222.333.444" -1000 nil s "NNTP-Posting-Host") @@ -18910,9 +18816,9 @@ gnus $B$O%0%k!<%WL>$NA4$F$N8l$K$D$$$F!"C18lE,1~@-%9%3%"$r$7$^$;$s!#$[$H$s(B @lisp (setq gnus-home-score-file - ;; All groups that match the regexp "\\.emacs" + ;; @r{$B@55,I=8=(B @code{"\\.emacs"} $B$K9gCW$9$k$9$Y$F$N%0%k!<%W(B} '(("\\.emacs" "emacs.SCORE") - ;; All the comp groups in one score file + ;; @r{$B$9$Y$F$N(B comp $B%0%k!<%W$rC10l$N%9%3%"%U%!%$%k$G(B} ("^comp" "comp.SCORE"))) @end lisp @@ -19190,7 +19096,7 @@ Gnus $B$O$^$@!"$"$N$&$6$C$?$$8E$$>C5n%U%!%$%k$r%5%]!<%H$7$F$$$^$9!#C(B $B$7(B gnus $B$,(B @code{rn} $B$N>C5n%U%!%$%k$i$7$-$b$N$K=P2q$C$?$i!"2?$H$+$=$l$r(B $B2rC5n%U%!%$%k$rJT=8$9$k$?$a$NFs$D$N35N,%P%C%U%!4X?t$,$"$j$^$9!#(B +@sc{gnus} $B>C5n%U%!%$%k$rJT=8$9$k$?$a$NFs$D$N35N,%P%C%U%!4X?t$,$"$j$^$9!#(B @table @kbd @item M-k @@ -19274,7 +19180,7 @@ GNUS $B>C5n%U%!%$%k$rJT=8$9$k$?$a$NFs$D$N35N,%P%C%U%!4X?t$,$"$j$^$9!#(B @section GroupLens @cindex GroupLens -GoupLens (@uref{http://www.cs.umn.edu/Research/GroupLens/}) $B$O!"KhF|:n@.(B +@uref{http://www.cs.umn.edu/Research/GroupLens/, GroupLens} $B$O!"KhF|:n@.(B $B$5$l$kB?$/$NNL$N%K%e!<%95-;v$+$i$N?M$H6&$K8+$D$1$k$N$r=u(B $B$1$k$?$a$N6&F1A*JL5!9=$G$9!#(B @@ -19290,22 +19196,18 @@ GoupLens (@uref{http://www.cs.umn.edu/Research/GroupLens/}) $B$O!"KhF|:n@.(B $B$O(B (pseudonym) $B$rEPO?$7$J$1$l$P$J$j$^$;$s!#(B -@uref{http://www.cs.umn.edu/Research/GroupLens/bbb.html} $B$,8=:_!"$A$^$?(B -$B$KB8:_$9$kM#0l$N(B better bit $B$G$9!#(B +GroupLens $B$r;H$&$?$a$K$O!"8=:_$A$^$?$KB8:_$9$kM#0l$N(B better bit $B$G$"(B +$B$k(B @uref{http://www.cs.umn.edu/Research/GroupLens/bbb.html, Better Bit +Bureau (BBB)} $B$KI.L>(B (pseudonym) $B$rEPO?$7$J$1$l$P$J$j$^$;$s!#(B $BEPO?$7$?8e$G!"$$$/$D$+$NJQ?t$r@_Dj$9$kI,MW$,$"$j$^$9!#(B @@ -19682,18 +19584,15 @@ Gnus $B$O0lF|$K0l2s%9%3%"$rIeGT$5$;$h$&$H$7$^$9!#Nc$($P!"$b$7(B gnus $B$r;MF| @menu * Process/Prefix:: $BB?$/$N07$$L?Na$G;H$o$l$k=,47(B * Interactive:: Gnus $B$KB?$/$Ne$2$k$+(B * Mode Lines:: $B%b!<%I9T$K>pJs$rI=<($9$k(B * Highlighting and Menus:: $B%P%C%U%!$rAGE($G?4CO$h$/8+$;$k(B * Buttons:: $B4JC1$J==Jb$G%"%-%l%9g'$rF@$k(B -* Daemons:: Gnus $B$O$"$J$?$NN"$GJ*;v$r$NB@$j$d$9$$?);v$rHr$1$kJ}K!(B * Undo:: $B$$$/$D$+$NF0:n$O85$KLa$9;v$,$G$-$k(B * Predicate Specifiers:: $B=R8l$r@_Dj$9$k(B @@ -19829,10 +19728,8 @@ Gnus $B$r=*N;$9$kA0$K3NG'$rMW5a$7$^$9!#$3$NJQ?t$O=i4|@_Dj$G(B @code{t} $B$G$9 $B9f$,$I$3$K$G$b$"$j$^$9!#(B @menu -* Formatting Basics:: $B=qK!;EMMJQ?t$O4pK\E*$K=qK!;XDjJ8;zNs$G$"(B - $B$k(B -* Mode Line Formatting:: $B%b!<%I9T$N=qK!;EMMJQ?t$K4X$9$k$$$/$D$+$N(B - $B5,B'(B +* Formatting Basics:: $B=qK!;EMMJQ?t$O4pK\E*$K=qK!;XDjJ8;zNs$G$"$k(B +* Mode Line Formatting:: $B%b!<%I9T$N=qK!;EMMJQ?t$K4X$9$k$$$/$D$+$N5,B'(B * Advanced Formatting:: $B?'!9$JJ}K!$G=PNO$r=$@5$9$k(B * User-Defined Specs:: Gnus $B$K$"$J$?<+?H$N4X?t$r8F$P$;$k(B * Formatting Fonts:: $B;EMM$rB?:L$GAGE($K8+$;$k(B @@ -20019,19 +19916,19 @@ Manual} (GNU Emacs) $B$^$?$O(B @code{balloon-help-mode} (XEmacs) $B$N@bL@J8;z $B$3$l$O%0%k!<%W%P%C%U%!$NBeBXeEy$N=qK!;EMM$r@_Dj$9$k!#(B +;; @r{$B?7$7$$>eEy$N=qK!;EMM$r@_Dj$9$k!#(B} (setq gnus-group-line-format "%M%S%3@{%5y%@}%2[:%] %(%1@{%g%@}%)\n") @end lisp @@ -20619,8 +20516,8 @@ Gnus $B$O$5$^$6$^$J@)8f;R(B @dfn{handlers} $B$rDj5A$9$k$3$H$K$h$C$F$=$N$h$&$J (gnus-demon-close-connections nil 30) @end lisp -$B0J2<$O(B Emacs $B$,2?$b$7$F$$$J$$$H$-!"0l;~4VKh$K(B PGP $B%X%C%@!<$rAv::$9$k@)8f(B -$B;R$G$9!#(B +$B0J2<$O(B Emacs $B$,2?$b$7$F$$$J$$$H$-!"0l;~4VKh$K(B @acronym{PGP} $B%X%C%@!<$rAv(B +$B::$9$k@)8f;R$G$9!#(B @lisp (gnus-demon-scan-pgp 60 t) @@ -20921,8 +20818,7 @@ gnus $B$O$3$l$rMxMQ$9$k$3$H$K$7$^$9!#(B @menu * Picons:: $B$"$J$?$,FI$s$G$$$k$b$N$N3($rI=<($9$kJ}K!(B -* Smileys:: $BI=<($5$l$k$Y$/@8$^$l$?9,$;$=$&$J4i$rI=<((B - $B$9$kJ}K!(B +* Smileys:: $BI=<($5$l$k$Y$/@8$^$l$?9,$;$=$&$J4i$rI=<($9$kJ}K!(B * X-Face:: $B%U%!%s%-!<$J$A$C$A$c$JGr9u$N3($rI=<($9$k(B * XVarious:: $B$=$NB>$N(B XEmacs $B$G(B Gnus $B$JJQ?t(B @end menu @@ -21357,10 +21253,10 @@ Spam $B$KBP=h$9$k0l$D$NJ}K!$O!"(Bgnus $B$KA4$F$N(B spam $B$r(B @samp{spam} @samp{spam} $B%0%k!<%W$K9T$-$^$9!#(B($B$3$N%"%$%G%"$O$*$=$i$/(B Tim Pierce $B;a$K(B $B$h$k$b$N$G$9!#(B) -$B$3$l$K2C$($F!"B?$/$N%a!<%k(B spam $B20$O!"$"$J$?$N$H$3$m$N(B @sc{smtp} $B%5!<%P!<(B -$B$HD>@\OC$7!"(B@code{To} $B%X%C%@!<$K$"$J$?$N%a!<%k%"%I%l%9$,L@<($5$l$J$$$h$&(B -$B$K$7$^$9!#$J$s$G$=$s$J$3$H$r$9$k$N$+$O$o$+$j$^$;$s$,(B --- $B$*$=$i$/;d$?$A(B -$B$NN"$r$+$/5!9=$NN"$r$+$/$?$a$+$J(B? $B$I$A$i$K$7$F$b!"BP=h$O4JC1$J$3$H$G(B +$B$3$l$K2C$($F!"B?$/$N%a!<%k(B spam $B20$O!"$"$J$?$N$H$3$m$N(B @acronym{SMTP} $B%5!<(B +$B%P!<$HD>@\OC$7!"(B@code{To} $B%X%C%@!<$K$"$J$?$N%a!<%k%"%I%l%9$,L@<($5$l$J$$(B +$B$h$&$K$7$^$9!#$J$s$G$=$s$J$3$H$r$9$k$N$+$O$o$+$j$^$;$s$,(B --- $B$*$=$i$/;d(B +$B$?$A$NN"$r$+$/5!9=$NN"$r$+$/$?$a$+$J(B? $B$I$A$i$K$7$F$b!"BP=h$O4JC1$J$3$H$G(B $B$9(B --- $B$"$J$?08$F$G$J$$$b$N$rA4It(B @samp{spam} $B%0%k!<%W$K$$$l$k$@$1$G$9!#(B $B$3$l$O$*9%$_J,N%5,B'$N:G8e$K$3$s$JIw$KF~$l$k$3$H$G$G$-$^$9!#(B @@ -21685,15 +21581,16 @@ Spam $B%0%k!<%W$G$O!"%G%#%U%)%k%H$G$9$Y$F$N%a%C%;!<%8$,(B spam $B$G$"$k$H2r$O(B @samp{spam} $B$G$9$,!"%+%9%?%^%$%:$9$k$3$H$O(B $B2DG=$G$9!#(B -@emph{IMAP $BMxMQl9g$O!"%V!<(B $B%kJQ?t(B @code{nnimap-split-download-body} $B$,@_Dj$5$l$kI,MW$,$"$j$^$9!#%G%#(B $B%U%)%k%H$G$O!"(Bnnimap $B%P%C%/%(%s%I$O%a%C%;!<%8%X%C%@!<$@$1$rpJs$rF@$k(B) $B$r;H$&$J$i$P!"$3$NJQ?t$r@_Dj(B -$B$7$J$1$l$P$J$j$^$;$s!#(BIMAP $B$NF0:n$rCY$/$7$F$7$^$&$N$G!"%G%#%U%)%k%H$G$O(B -$B@_Dj$5$l$F$$$^$;$s!#(B +@code{spam-check-bogofilter}$B!"(B@code{spam-check-ifile} $B$^$?(B +$B$O(B @code{spam-check-stat} ($B$=$l$i$NJ,3d4o$O%a%C%;!<%8$NK\J8A4BN$+$i>pJs(B +$B$rF@$k(B) $B$r;H$&$J$i$P!"$3$NJQ?t$r@_Dj$7$J$1$l$P$J$j$^$;$s!#(B +@acronym{IMAP} $B$NF0:n$rCY$/$7$F$7$^$&$N$G!"%G%#%U%)%k%H$G$O@_Dj$5$l$F$$(B +$B$^$;$s!#(B @xref{Splitting in IMAP}. @@ -22136,19 +22033,19 @@ Spam $B$G$O$J$$(B ($BL$J,N`$^$?$O(B ham) $B%0%k!<%W$@$1$KE,MQ$5$l$k!#(B") @lisp (defun spam-blackbox-register-spam-routine () (spam-generic-register-routine - ;; spam $BMQ$N4X?t(B + ;; @r{spam $BMQ$N4X?t(B} (lambda (article) (let ((from (spam-fetch-field-from-fast article))) (when (stringp from) (blackbox-do-something-with-this-spammer from)))) - ;; ham $BMQ$N4X?t(B + ;; @r{ham $BMQ$N4X?t(B} nil)) (defun spam-blackbox-register-ham-routine () (spam-generic-register-routine - ;; spam $BMQ$N4X?t(B + ;; @r{spam $BMQ$N4X?t(B} nil - ;; ham $BMQ$N4X?t(B + ;; @r{ham $BMQ$N4X?t(B} (lambda (article) (let ((from (spam-fetch-field-from-fast article))) (when (stringp from) @@ -22233,9 +22130,10 @@ nnml $B%P%C%/%(%s%I$O0lDL$N%a!<%k$K$D$-0l$D$N%U%!%$%k$G!"$9$Y$F$N%a!<%k$r(B $B>o(B @samp{nnml:mail.misc} $B%0%k!<%W$KBP1~(B) $B$KBP$7(B $B$F(B @code{spam-stat-process-non-spam-directory} $B$r8F$V$G$7$g$&!#(B -$B$"$J$?$,(B IMAP $B$r;H$C$F$$$k$J$i%a!<%k$r%m!<%+%k$K$O;}$C$F$$$J$$$N$G!"$=$l(B -$B$OF0$+$J$$$G$7$g$&!#0l$D$N2r7h:v$O!"(Bgnus $B%(!<%8%'%s%H$G5-;v$r%-%c%C%7%e(B -$B$9$k$3$H$G$9!#$=$&$9$l$P(B @code{spam-stat-process-spam-directory} $B$H$7(B +$B$"$J$?$,(B @acronym{IMAP} $B$r;H$C$F$$$k$J$i%a!<%k$r%m!<%+%k$K$O;}$C$F$$$J$$(B +$B$N$G!"$=$l$OF0$+$J$$$G$7$g$&!#0l$D$N2r7h:v$O!"(Bgnus $B%(!<%8%'%s%H$G5-;v$r(B +$B%-%c%C%7%e$9$k$3$H$G$9!#$=$&$9$l(B +$B$P(B @code{spam-stat-process-spam-directory} $B$H$7(B $B$F(B @file{"~/News/agent/nnimap/mail.yourisp.com/personal_spam"} $B$N$h$&$J(B $B$b$N$,;H$($^$9!#(B@xref{Agent as Cache}$B!#(B @@ -22448,7 +22346,7 @@ Save table: (spam-stat-save) @item gnus-directory @vindex gnus-directory gnus $B$,3JG<$9$k$?$/$5$s$N%U%!%$%kL>$H%G%#%l%/%H%jL>$NJQ?t$O!"$3$l$K$h$C(B -$B$F=i4|2=$5$l$^$9!#%G%#%U%)%k%HCM$O(B @samp{SAVEDIR} $B4D6-JQ?t$NCM$+!"$=$NJQ(B +$B$F=i4|2=$5$l$^$9!#%G%#%U%)%k%HCM$O(B @env{SAVEDIR} $B4D6-JQ?t$NCM$+!"$=$NJQ(B $B?t$,@_Dj$5$l$F$$$J$$>l9g$O(B @file{~/News/} $B$G$9!#(B @file{~/.gnus.el} $B%U%!%$%k$,FI$^$l$?$H$-$O(B gnus $B$N$[$H$s$I$O$9$G$KFI$_9~(B @@ -22538,7 +22436,8 @@ gnus $B$,3JG<$9$k$?$/$5$s$N%U%!%$%kL>$H%G%#%l%/%H%jL>$NJQ?t$O!"$3$l$K$h$C(B $BDL>o(B @samp{:} $B$r;H$C$F$$$k(B) $B$r$a$A$c$a$A$c$K$7$F$7$^$&$+$b$7$l$J$$!"$$$/(B $B$D$+$N(B @strong{$BK\Ev$K(B} $B;H$($J$$%0%k!<%WL>$rJa$^$($^$9!#(B -@sc{imap} $B%f!<%6$O%0%k!<%WL>$K(B @samp{/} $B$r;H$$$?$$$H;W$&$G$7$g$&$1$l$I!#(B +@acronym{IMAP} $B%f!<%6$O%0%k!<%WL>$K(B @samp{/} $B$r;H$$$?$$$H;W$&$G$7$g$&$1(B +$B$l$I!#(B @end table @node The End @@ -22601,8 +22500,7 @@ but at the common table.@* * On Writing Manuals:: $B$J$<$3$l$,=i?4ee$N%P!<%8%g%s$N(B Gnus * Why?:: Gnus $B$NL\E*$O2?(B? -* Compatibility:: Gnus $B$O(B @sc{gnus} $B$H$I$l$/$i$$8_49@-$,$"$k(B - $B$N(B? +* Compatibility:: Gnus $B$O(B @sc{gnus} $B$H$I$l$/$i$$8_49@-$,$"$k$N(B? * Conformity:: Gnus $B$OA4$F$NI8=`$rK~$?$=$&$H$9$k(B -* Emacsen:: Gnus $B$O$$$/$D$+$N8=BeE*$J(B Emacs $B4D6-$GN$5$l!"(BT-gnus, Nana-gnus $B$*$h$S(B Chaos $B$N0[$J$C$?7O(B -$BE}$,$"$j$^$9!#$3$l$i$O6/NO$J(B @sc{mime} $B$N5!G=$H3F9q8lBP1~$N5!G=$rDs6!$9(B -$B$k$b$N$G!"FC$KF|K\?M$N%f!<%6$K$H$C$FBg;v$J$b$N$G$9!#(B +$BE}$,$"$j$^$9!#$3$l$i$O6/NO$J(B @acronym{MIME} $B$N5!G=$H3F9q8lBP1~$N5!G=$rDs(B +$B6!$9$k$b$N$G!"FC$KF|K\?M$N%f!<%6$K$H$C$FBg;v$J$b$N$G$9!#(B @node Why? @subsection $B$J$<(B? @@ -22849,7 +22744,7 @@ RFC 1036 $B$N8e7Q$H$7$F=q$$$F$$$k$b$N$G$9!#%K%e!<%95-;v$NMM<0$KBP$7$F!"$$(B @item MIME - RFC 2045-2049 etc @cindex MIME -@sc{mime} $B4XO"$N$9$Y$F$N(B RFC $B$,%5%]!<%H$5$l$F$$$^$9!#(B +@acronym{MIME} $B4XO"$N$9$Y$F$N(B RFC $B$,%5%]!<%H$5$l$F$$$^$9!#(B @item Disposition Notifications - RFC 2298 Message Mode $B$O/99?7$5$l$F$$$^$9!#(BRFC 2195 $B$O(B @sc{imap} $B$N(B CRAM-MD5 $BG'>Z$K$D$$$F=R$Y(B -$B$F$$$^$9!#(BRFC 2086 $B$O(B @sc{imap} $B$N;HMQ@)8B0lMw(B (ACL) $B$K$D$$$F=R$Y$F$$$^(B -$B$9!#(BRFC 2359 $B$O(B @sc{imap} $B$N%W%m%H%3%k$N3HD%$K$D$$$F=R$Y$F$$$^$9!#(BRFC -2595 $B$O(B @sc{imap} $B$K$*$1$kE,@Z$J(B TLS $B$NE}9g(B (STARTTLS) $B$K$D$$$F=R$Y$F$$(B -$B$^$9!#(BRFC 1731 $B$O(B @sc{imap} $B$N(B GSSAPI/Kerberos4 $B$N/99?7$5$l$F$$$^$9!#(B +RFC 2195 $B$O(B @acronym{IMAP} $B$N(B CRAM-MD5 $BG'>Z$K$D$$$F=R$Y$F$$$^$9!#(B +RFC 2086 $B$O(B @acronym{IMAP} $B$N;HMQ@)8B0lMw(B (ACL) $B$K$D$$$F=R$Y$F$$$^$9!#(B +RFC 2359 $B$O(B @acronym{IMAP} $B$N%W%m%H%3%k$N3HD%$K$D$$$F=R$Y$F$$$^$9!#(B +RFC 2595 $B$O(B @acronym{IMAP} $B$K$*$1$kE,@Z$J(B @acronym{TLS} $B$NE}(B +$B9g(B (STARTTLS) $B$K$D$$$F=R$Y$F$$$^$9!#(B +RFC 1731 $B$O(B @acronym{IMAP} $B$N(B GSSAPI/Kerberos4 $B$N$N7A<0$NId9f2=(B/$BI|9f2=$d%P%0=$@5!"?7$7$$5!G=(B -$B$J$I$N$[$s$H$&$KB?$/$N$b$N!#(B +nnwarchive $B$H(B @acronym{MIME} $B$HB>$N7A<0$NId9f2=(B/$BI|9f2=$d%P%0=$@5!"?7$7$$(B +$B5!G=$J$I$N$[$s$H$&$KB?$/$N$b$N!#(B @item Per Abrahamsen--custom$B!"%9%3%"!"%O%$%i%$%H$H(B @sc{soup} $B%3!<%I(B ($BB>$NB?$/(B @@ -22990,7 +22889,7 @@ Luis Fernandes---$B%G%6%$%s$H%0%i%U%#%C%/!#(B Joe Reiss---$B%9%^%$%j!<$N4i$N:n!#(B @@ -23029,7 +22928,7 @@ Scott Byer---@file{nnfolder.el} $B$N3HD%$H2~D{!#(B Peter Mutsaers---$B8E;v5-;v$N%9%3%"%3!<%I!#(B @item -Ken Raebburn---POP $B%a!<%k%5%]!<%H!#(B +Ken Raebburn---@acronym{POP} $B%a!<%k%5%]!<%H!#(B @item Hallvard B Furuseth---$B$$$m$$$m$J>.$5$JJ*$dItJ,!"FC$K(B .newsrc $B%U%!%$%k$r(B @@ -23285,14 +23184,11 @@ Lloyd Zusman. @cindex new features @menu -* ding Gnus:: $B:G=i$N?7$7$$(B Gnus $B$G$"$k(B Gnus 5.0/5.1 $B$N(B - $B?7$7$$;v(B -* September Gnus:: $B8x<0$K(B Gnus 5.2/5.3 $B$H$7$FCN$i$l$F$$$k$b(B - $B$N(B +* ding Gnus:: $B:G=i$N?7$7$$(B Gnus $B$G$"$k(B Gnus 5.0/5.1 $B$N?7$7$$;v(B +* September Gnus:: $B8x<0$K(B Gnus 5.2/5.3 $B$H$7$FCN$i$l$F$$$k$b$N(B * Red Gnus:: $B;0HVL\$N:G>e$N$b$N(B---Gnus 5.4/5.5 * Quassia Gnus:: 2 $B$+$1$k(B 2 $B$O(B 4$B!"$b$7$/$O(B Gnus 5.6/5.7 -* Pterodactyl Gnus:: $B8^HVL\!"(BP $B$G;O$^$k!"$b$7$/$O(B Gnus 5.8 - /5.9 $B$H$7$FCN$i$l$F$$$k$b$N(B +* Pterodactyl Gnus:: $B8^HVL\!"(BP $B$G;O$^$k!"$b$7$/$O(B Gnus 5.8/5.9 $B$H$7$FCN$i$l$F$$$k$b$N(B @end menu $B$3$N%j%9%H$O!"$b$A$m$s!"(B@emph{$B$?$$$F$$$N(B} $B=EMW$J?7$7$$5!G=$K4X$9(B @@ -23313,8 +23209,8 @@ Format} $B$H(B @pxref{Summary Buffer Format}) $B$K$h$C$F@_Dj$rJQ$($k;v$,$G$-$ $B$h$&$K$J$j$^$7$?!#(B @item -$B%m!<%+%k%9%W!<%k$H!"$$$/$D$+$N(B @sc{nntp} $B%5!<%P!<$rF1;~$K;H$&;v$,$G$k$h(B -$B$&$K$J$j$^$7$?(B (@pxref{Select Methods})$B!#(B +$B%m!<%+%k%9%W!<%k$H!"$$$/$D$+$N(B @acronym{NNTP} $B%5!<%P!<$rF1;~$K;H$&;v$,$G(B +$B$-$k$h$&$K$J$j$^$7$?(B (@pxref{Select Methods})$B!#(B @item $B%0%k!<%W$r;ve$N%0%k!<%W$K7k9g$G$-$k$h$&$K$J$j$^$7$?(B (@pxref{Virtual @@ -23392,8 +23288,8 @@ uudecode $B$N4X?t$,3HD%$5$l!"0lHL2=$5$l$^$7$?(B (@pxref{Decoding Articles})$B $B$J$j$^$7$?(B (@pxref{Finding the Parent})$B!#(B @item -Gnus $B$O(B FAQ $B$H%0%k!<%W$N5-=R$rl9g$G$b!"Ej9F$G$-$k$h$&$K$J$j$^$7(B +$B?7$7$$%a!<%k$+$i%K%e!<%9$X$N%P%C%/%(%s%I$,(B @acronym{NNTP} $B%5!<%P!<$,Ej9F(B +$B$r5v2D$7$F$$$J$$>l9g$G$b!"Ej9F$G$-$k$h$&$K$J$j$^$7(B $B$?(B (@pxref{Mail-To-News Gateways})$B!#(B @item @@ -23894,7 +23790,8 @@ M******** sm*rtq**t*s $B$rE,@Z$JJ8>O$KK]0F$9$k?7$7$$L?Na$,$"$j$^$9(B--- @item @code{nntp} $B$O(B @file{~/.authinfo} $B$r;H$&$h$&$K$J$j!"$3$l(B $B$O(B @file{.netrc} $B$N$h$&$J%U%!%$%k$G!"$I$3$G$I$N$h$&(B -$B$K(B @sc{authinfo} $B$r(B @sc{nntp} $B%5!<%P!<$KAw$k$+$r@)8f$9$k$?$a$N$b$N$G$9!#(B +$B$K(B @sc{authinfo} $B$r(B @acronym{NNTP} $B%5!<%P!<$KAw$k$+$r@)8f$9$k$?$a$N$b$N(B +$B$G$9!#(B @item $B35N,%P%C%U%!$N%0%k!<%W%Q%i%a!<%?$rJT=8$9$k$?$a$NL?Na$,2C$($i$l$^$7$?!#(B @@ -23969,22 +23866,22 @@ Gnus 5.8 $B$N?7$7$$5!G=(B: Sources $B$GF@$k$3$H$,$G$-$^$9!#(B @item -Gnus $B$O(B @sc{mime} $B$KBP1~$7$?%j!<%@!<$K$J$j$^$7$?!#$3$l$O(B Gnus $B$NB?$/$NIt(B -$BJ,$K1F6A$7$F$$$F!"$?$/$5$s$N?7$7$$%3%^%s%I$,DI2C$5$l$F$$$^$9!#>\:Y$O%^%K%e(B -$B%"%k$r;2>H$7$F2<$5$$!#(B($BLuCm(B: T-gnus $B$O(B @sc{semi} $B$*$h$S(B @sc{flim} $B$N=t5!(B -$BG=$K4p$E$$$F$$$^$9!#(B) +Gnus $B$O(B @acronym{MIME} $B$KBP1~$7$?%j!<%@!<$K$J$j$^$7$?!#$3$l$O(B Gnus $B$NB?(B +$B$/$NItJ,$K1F6A$7$F$$$F!"$?$/$5$s$N?7$7$$%3%^%s%I$,DI2C$5$l$F$$$^$9!#>\:Y(B +$B$O%^%K%e%"%k$r;2>H$7$F2<$5$$!#(B($BLuCm(B: T-gnus $B$O(B @acronym{SEMI} $B$*$h(B +$B$S(B @acronym{FLIM} $B$N=t5!G=$K4p$E$$$F$$$^$9!#(B) @item Gnus $B$O$^$?3F9q8lBP1~$K$J$j$^$7$?!#$3$3$G$OMWLs$G$-$J$$$/$i$$$K(B Gnus $B$N(B $BB?$/$NItJ,$K1F6A$7$F$$$F!"?7$7$$$?$/$5$s$NJQ?t$,DI2C$5$l$F$$$^$9!#(B($BLuCm(B: -T-gnus $B$O(B @sc{semi} $B$*$h$S(B @sc{flim} $B$N=t5!G=$K4p$E$$$F$$$^$9!#(B) +T-gnus $B$O(B @acronym{SEMI} $B$*$h$S(B @acronym{FLIM} $B$N=t5!G=$K4p$E$$$F$$$^$9!#(B) @item @code{gnus-auto-select-first} $B$,4X?t$G$"$C$F$b$h$/$J$j$^$7$?!#(B @item -Summary $B%P%C%U%!$H(B @sc{nov} $B%U%!%$%k$K4^$a$kDI2C$N%X%C%@!<$r!"%f!<%6$,7h(B -$B$a$k$3$H$,$G$-$k$h$&$K$J$j$^$7$?!#(B +Summary $B%P%C%U%!$H(B @acronym{NOV} $B%U%!%$%k$K4^$a$kDI2C$N%X%C%@!<$r!"%f!<(B +$B%6$,7h$a$k$3$H$,$G$-$k$h$&$K$J$j$^$7$?!#(B @item @code{gnus-article-display-hook} $B$,:o=|$5$l$^$7$?!#Be$o$j(B @@ -24000,7 +23897,7 @@ Gnus posting styles $B$,:F$S2~Au$5$l$^$7$?!#8=:_$OHyL/$K0c$&5,B'$GF0:n$7$^(B $B>o$KJQ2=$9$k9=@.$rB3$1$^$9!#(B @item -Gnus $B$O(B @code{nnimap} $B$K$h$C$F(B @sc{imap} $B%a!<%k$rFI$`$3$H$,$G$-$^$9!#(B +Gnus $B$O(B @code{nnimap} $B$K$h$C$F(B @acronym{IMAP} $B%a!<%k$rFI$`$3$H$,$G$-$^$9!#(B @end itemize @iftex @@ -24089,10 +23986,10 @@ Gnus $B$O(B @code{nnimap} $B$K$h$C$F(B @sc{imap} $B%a!<%k$rFI$`$3$H$,$G$-$^ @item $B%K%e!<%9(B (news) @cindex news $B$3$l$O$"$J$?$,$=$N$?$a$K$3$N$b$N$r;H$$$?$$$H;W$C$F$$$k$b$N$G$9(B---$B%K%e!<(B -$B%9$rFI$`;v$G$9!#%K%e!<%9$O0lHLE*$K$O6a$/$N(B @sc{nntp} $B%5!<%P!<$+$iP$o$l$k$G$7$g$&!#$"$J$?$NCN$i$J$$$H$3$m$G!#(B +$B%9$rFI$`;v$G$9!#%K%e!<%9$O0lHLE*$K$O6a$/$N(B @acronym{NNTP} $B%5!<%P!<$+$iP$o$l$k$G$7$g$&!#$"$J$?$NCN$i$J$$$H$3$m$G!#(B @item $B%a!<%k(B (mail) @cindex mail @@ -24114,20 +24011,21 @@ Gnus $B$O(B @code{nnimap} $B$K$h$C$F(B @sc{imap} $B%a!<%k$rFI$`$3$H$,$G$-$^ @cindex back end gnus $B$O%a!<%k$H%K%e!<%9$,$[$H$s$IF1$8$@$H$_$J$7$^$9!#K\Ev$K!#0c$$$Oe$2$F!"B>$N$H$3(B - $B$m$+$i%K%e!<%9$rF@$k;v$,$G$-$k!#(B +* Slow/Expensive Connection:: $B%m!<%+%k$N(B Emacs $B$rN)$A>e$2$F!"B>$N$H$3$m$+$i%K%e!<%9$rF@$k;v$,$G$-$k(B * Slow Terminal Connection:: $B1s3V(B Emacs $B$ro$K:Y$$@~$N8~$3$&$N%^%7(B -$B%s$+$i%K%e!<%9$ro$K(B} $B$h$/F0:n$7$^$9(B---$B2? $B$r>C$7$F2<$5$$!#(B @item -FAQ $B$H(B how-to $B$rFI$`$?$a$K%X%k%W%0%k!<%W(B ($B%0%k!<%W%P%C%U%!(B +@acronym{FAQ} $B$H(B how-to $B$rFI$`$?$a$K%X%k%W%0%k!<%W(B ($B%0%k!<%W%P%C%U%!(B $B$G(B @kbd{G h}) $B$rFI$s$G2<$5$$!#(B @item @@ -24545,8 +24442,7 @@ gnus $B$H$=$N%P%C%/%(%s%I4V$N%$%s%?!<%U%'!<%9(B ($B$3$l$O40A4$K5-=R$5$l$F$$( * Gnus Utility Functions:: $B;HMQ$G$-$k6&DL$N4X?t$HJQ?t(B * Back End Interface:: Gnus $B$O$I$&$d$C$F%5!<%P!<$HDL?.$9$k$N$+(B * Score File Syntax:: $B%9%3%"%U%!%$%k5,3J$N(B BNF $BDj5A(B -* Headers:: Gnus $B$O%X%C%@!<$rFbItE*$K$I$N$h$&$K3JG<(B - $B$9$k$+(B +* Headers:: Gnus $B$O%X%C%@!<$rFbItE*$K$I$N$h$&$K3JG<$9$k$+(B * Ranges:: $B$?$/$5$s$N?t$r3JG<$9$kJXMx$J7A<0(B * Group Info:: $B%0%k!<%W>pJs7A<0(B * Extended Interactive:: $B5-9f@\F,<-$J$I(B @@ -24674,10 +24570,10 @@ Gnus $B=*N;;~$K>C5n$9$k%P%C%U%!$N0lMw$K8=:_$N%P%C%U%!$rDI2C$7$^$9!#(B @node Back End Interface @subsection $B%P%C%/%(%s%I%$%s%?!<%U%'!<%9(B -Gnus $B$O(B @sc{nntp} $B$d%9%W!<%k!"%a!<%k!"2>A[%0%k!<%W$K$D$$$F$O2?$K$bCN$j$^(B -$B$;$s!#$?$@2>A[%5!<%P!<(B @dfn{virtual servers} $B$HBPOC$9$kJ}K!$rCN$C$F$$$k(B -$B$@$1$G$9!#2>A[%5!<%P!<$O%P%C%/%(%s%I(B @dfn{back end} $B$H$$$/$D$+$N%P%C%/%((B -$B%s%IJQ?t(B @dfn{back end variables} $B$+$i$J$j$^$9!#A0A[%0%k!<%W$K$D$$$F$O2?$K$b(B +$BCN$j$^$;$s!#$?$@2>A[%5!<%P!<(B @dfn{virtual servers} $B$HBPOC$9$kJ}K!$rCN$C(B +$B$F$$$k$@$1$G$9!#2>A[%5!<%P!<$O%P%C%/%(%s%I(B @dfn{back end} $B$H$$$/$D$+$N%P%C(B +$B%/%(%s%IJQ?t(B @dfn{back end variables} $B$+$i$J$j$^$9!#A0J,$J%X%C(B $B%@!<(B'' $B$ro!"(B@code{articles} $B$NCf$N:G>.HV9f(B @@ -25017,8 +24913,8 @@ Gnus $B%0%k!<%W>pJs(B (@pxref{Group Info}) $B$,JQ992U=j$H$7$F%P%C%/%((B $B5-;v$N0u$r@_Dj(B/$B>C5n(B/$BDI2C$7$^$9!#IaDL$O(B gnus $B$O5-;v$N0u(B ($B4{FI!"2D;k!";~8B(B $B>C5n$J$I(B) $B$rFbIt$G07$$!"(B@file{~/.newsrc.eld} $B$KJ]B8$7$^$9!#$7$+$7!"%P%C(B -$B%/%(%s%I$K$O(B (@sc{imap} $B$N$h$&$K(B) $B5-;v$NA4$F$N>pJs$r%5!<%P!<$K<}$a$k$N(B -$B$G!"(Bgnus $B$O0u$N>pJs$r%5!<%P!<$KEAC#$7$J$1$l$P$J$i$J$$$b$N$,$"$j$^$9!#(B +$B%/%(%s%I$K$O(B (@acronym{IMAP} $B$N$h$&$K(B) $B5-;v$NA4$F$N>pJs$r%5!<%P!<$K<}$a(B +$B$k$N$G!"(Bgnus $B$O0u$N>pJs$r%5!<%P!<$KEAC#$7$J$1$l$P$J$i$J$$$b$N$,$"$j$^$9!#(B @var{action} $B$O$3$N$h$&$JMM<0$N0u@_Dj$NMW5a$N%j%9%H$G$9(B: @@ -25073,10 +24969,11 @@ Gnus $B%0%k!<%W>pJs(B (@pxref{Group Info}) $B$,JQ992U=j$H$7$F%P%C%/%((B $B$3$N4X?t$O!"%P%C%/%(%s%I$,E~Ce5-;v$r3NG'$9$kMW5a$r9T$J$&$H$-$K$$$D$G(B $B$b(B (gnus $B$+$=$l0J30$K$h$C$F(B)$B!"$"$l$d$3$l$d$H8F$S=P$5$l$k$3$H$,$"$j$^$9!#(B $B%a!<%k%P%C%/%(%s%I$O$3$N4X?t$,5/F0$5$l$?$H$-!"E57?E*$K$O%9%W!<%k%U%!%$%k(B -$B$rFI$`$+(B POP $B%5!<%P!<$KLd$$9g$o$;$K$$$-$^$9!#(B@var{group} $B$OFC$K5$$KN1$a(B -$B$kI,MW$O$"$j$^$;$s(B --- $B$b$7%P%C%/%(%s%I$,!"0l$D$@$1$N%0%k!<%W$rAv::$9$k(B -$B$N$OBgJQ$9$.$k$HH=CG$7$?>l9g$K$O!"A4%0%k!<%W$NA4Av::$r9T$J$C$F$b9=$$$^$;(B -$B$s!#$G$9$,!"l9g$K$O!"A4%0%k!<%W$NA4Av::$r9T$J$C$F(B +$B$b9=$$$^$;$s!#$G$9$,!" / ] @node Headers @subsection $B%X%C%@!<(B -$BFbItE*$K$O(B gnus $B$OIT;W5D$JN.57$G!"(B@sc{nov} $BMM<0$KBP1~$9$k5-;v$N%X%C%@!<(B -$B$rN/$a$F$*$/MM<0$r;H$$$^$9!#$"$k?M$O!":no$KIiC4$N$+$1$i$l$9$.$?8l$G$9!#(B ``$B%X%C%@!<(B'' $B$O(B RFC1036 $B$G$O5-;v$NF,$N9T$N;v(B ($BNc$($P!"(B@code{From}) $B$rOC(B @@ -25572,11 +25470,12 @@ space = *[ " " / / ] $B$3$l$O6e$D$NMWAG$+$i$J$k%Y%/%H%k$G!"4pK\E*$K!"$=$l$>$l$N%X%C(B $B%@!<(B ($B$"DK(B) $B$,0l$D$N6u$->l=j$r@j$a$F$$$^$9!#(B -$B$3$l$i$N6u$->l=j$O!"=gHV(B -$B$K(B: @code{number}, @code{subject}, @code{from}, @code{date}, @code{id}, @code{chars}, @code{lines}, @code{xref}, @code{extra} $B$G(B -$B$9!#$3$l$i$N6u$->l=j$K?($C$F@_Dj$9$k%^%/%m$,$"$j$^$9(B---$B$=$l$i$OA4$F!"$=(B -$B$l$>$l(B @code{mail-header-} $B$H(B @code{mail-header-set-} $B$$$&M=A[$5$l$kL>A0(B -$B$r;}$C$F$$$^$9!#(B +$B$3$l$i$N6u$->l=j$O!"=gHV$K(B: @code{number}, @code{subject}, @code{from}, +@code{date}, @code{id}, @code{chars}, @code{lines}, @code{xref}, +@code{extra} $B$G$9!#$3$l$i$N6u$->l=j$K?($C$F@_Dj$9$k%^%/%m$,$"$j$^(B +$B$9(B --- $B$=$l$i$OA4$F!"$=$l$>(B +$B$l(B @code{mail-header-} $B$H(B @code{mail-header-set-} $B$$$&M=A[$5$l$kL>A0$r;}$C(B +$B$F$$$^$9!#(B @code{extra} $B$N>l=j$O%X%C%@!<(B/$BCM$NBP$NO"A[%j%9%H$G$"$k0J30$O$3$l$i$NA4$F(B $B$N>l=j$OJ8;zNs$G$9(B (@pxref{To From Newsgroups})$B!#(B @@ -26028,8 +25927,8 @@ Gnus $B$O(B Emacs Lisp $B$K$h$C$F=q$+$l$F$$$F!"$=$l$O$?$/$5$s$NC` #1}} -\newcommand{\gnusacronym}[1]{\textit{#1}} +\newcommand{\gnusacronym}[1]{\textsc{#1}} \newcommand{\gnusemail}[1]{\textit{#1}} \newcommand{\gnusbullet}{{${\bullet}$}} @@ -382,17 +384,17 @@ license to the document, as described in section 6 of the license. @ifinfo -You can read news (and mail) from within Emacs by using gnus. The news -can be gotten by any nefarious means you can think of---@sc{nntp}, local +You can read news (and mail) from within Emacs by using T-gnus. The news +can be gotten by any nefarious means you can think of---@acronym{NNTP}, local spool or your mbox file. All at the same time, if you want to push your luck. -T-gnus provides @sc{mime} features based on @sc{semi} API. So T-gnus -supports your right to read strange messages including big images or -other various kinds of formats. T-gnus also supports +T-gnus provides @acronym{MIME} features based on @acronym{SEMI} API. So +T-gnus supports your right to read strange messages including big images +or other various kinds of formats. T-gnus also supports internationalization/localization and multiscript features based on MULE -API. So T-gnus does not discriminate various language communities. -Oh, if you are a Klingon, please wait Unicode Next Generation. +API. So T-gnus does not discriminate various language communities. Oh, +if you are a Klingon, please wait Unicode Next Generation. This manual corresponds to T-gnus 6.15. @@ -435,16 +437,16 @@ the program. * Scoring:: Assigning values to articles. * Various:: General purpose settings. * The End:: Farewell and goodbye. -* Appendices:: Terminology, Emacs intro, FAQ, History, Internals. +* Appendices:: Terminology, Emacs intro, @acronym{FAQ}, History, Internals. * Index:: Variable, function and concept index. * Key Index:: Key Index. Other related manuals * Message:(message). Composing messages. -* Emacs-MIME:(emacs-mime). Composing messages; MIME-specific parts. +* Emacs-MIME:(emacs-mime). Composing messages; @acronym{MIME}-specific parts. * Sieve:(sieve). Managing Sieve scripts in Emacs. -* PGG:(pgg). PGP/MIME with Gnus. +* PGG:(pgg). @acronym{PGP/MIME} with Gnus. @detailmenu --- The Detailed Node Listing --- @@ -636,7 +638,7 @@ Various Summary Stuff Article Buffer * Hiding Headers:: Deciding what headers should be displayed. -* Using MIME:: Pushing articles through @sc{mime} before reading them. +* Using MIME:: Pushing articles through @acronym{MIME} before reading them. * Customizing Articles:: Tailoring the look of the articles. * Article Keymap:: Keystrokes available in the article buffer. * Misc Article:: Other stuff. @@ -658,7 +660,7 @@ Select Methods * Getting News:: Reading USENET news with Gnus. * Getting Mail:: Reading your personal mail with Gnus. * Browsing the Web:: Getting messages from a plethora of Web sources. -* IMAP:: Using Gnus as a @sc{imap} client. +* IMAP:: Using Gnus as a @acronym{IMAP} client. * Other Sources:: Reading directories, files, SOUP packets. * Combined Groups:: Combining groups into one group. * Gnus Unplugged:: Reading news and mail offline. @@ -675,10 +677,10 @@ Server Buffer Getting News -* NNTP:: Reading news from an @sc{nntp} server. +* NNTP:: Reading news from an @acronym{NNTP} server. * News Spool:: Reading news from the local spool. -@sc{nntp} +@acronym{NNTP} * Direct Functions:: Connecting directly to the server. * Indirect Functions:: Connecting indirectly to the server. @@ -726,13 +728,13 @@ Browsing the Web * RSS:: Reading RDF site summary. * Customizing w3:: Doing stuff to Emacs/w3 from Gnus. -@sc{imap} +@acronym{IMAP} * Splitting in IMAP:: Splitting mail with nnimap. * Expiring in IMAP:: Expiring mail with nnimap. * Editing IMAP ACLs:: Limiting/enabling other users access to a mailbox. * Expunging mailboxes:: Equivalent of a ``compress mailbox'' button. -* A note on namespaces:: How to (not) use IMAP namespace in Gnus. +* A note on namespaces:: How to (not) use @acronym{IMAP} namespace in Gnus. Other Sources @@ -765,7 +767,7 @@ Gnus Unplugged * Agent as Cache:: The Agent is a big cache too. * Agent Expiry:: How to make old articles go away. * Agent Regeneration:: How to recover from lost connections and other accidents. -* Agent and IMAP:: How to use the Agent with IMAP. +* Agent and IMAP:: How to use the Agent with @acronym{IMAP}. * Outgoing Messages:: What happens when you post/mail something? * Agent Variables:: Customizing is fun. * Example Setup:: An example @file{~/.gnus.el} file for offline people. @@ -988,7 +990,7 @@ news. This variable should be a list where the first element says native method. All groups not fetched with this method are foreign groups. -For instance, if the @samp{news.somewhere.edu} @sc{nntp} server is where +For instance, if the @samp{news.somewhere.edu} @acronym{NNTP} server is where you want to get your daily dosage of news from, you'd say: @lisp @@ -1007,12 +1009,13 @@ server is running Leafnode; in this case, use @code{(nntp "localhost")}. @vindex gnus-nntpserver-file @cindex NNTPSERVER -@cindex @sc{nntp} server +@cindex @acronym{NNTP} server If this variable is not set, gnus will take a look at the -@code{NNTPSERVER} environment variable. If that variable isn't set, +@env{NNTPSERVER} environment variable. If that variable isn't set, gnus will see whether @code{gnus-nntpserver-file} -(@file{/etc/nntpserver} by default) has any opinions on the matter. If -that fails as well, gnus will try to use the machine running Emacs as an @sc{nntp} server. That's a long shot, though. +(@file{/etc/nntpserver} by default) has any opinions on the matter. +If that fails as well, gnus will try to use the machine running Emacs +as an @acronym{NNTP} server. That's a long shot, though. @vindex gnus-nntp-server If @code{gnus-nntp-server} is set, this variable will override @@ -1022,7 +1025,7 @@ If @code{gnus-nntp-server} is set, this variable will override @vindex gnus-secondary-servers @vindex gnus-nntp-server You can also make gnus prompt you interactively for the name of an -@sc{nntp} server. If you give a non-numerical prefix to @code{gnus} +@acronym{NNTP} server. If you give a non-numerical prefix to @code{gnus} (i.e., @kbd{C-u M-x gnus}), gnus will let you choose between the servers in the @code{gnus-secondary-servers} list (if any). You can also just type in the name of any server you feel like visiting. (Note that this @@ -1032,7 +1035,7 @@ server.) @findex gnus-group-browse-foreign-server @kindex B (Group) -However, if you use one @sc{nntp} server regularly and are just +However, if you use one @acronym{NNTP} server regularly and are just interested in a couple of groups from a different server, you would be better served by using the @kbd{B} command in the group buffer. It will let you have a look at what groups are available, and you can subscribe @@ -1348,7 +1351,7 @@ New groups that match this regexp are subscribed using @section Changing Servers @cindex changing servers -Sometimes it is necessary to move from one @sc{nntp} server to another. +Sometimes it is necessary to move from one @acronym{NNTP} server to another. This happens very rarely, but perhaps you change jobs, or one server is very flaky and you want to use another. @@ -1358,7 +1361,7 @@ Changing the server is pretty easy, right? You just change @emph{Wrong!} Article numbers are not (in any way) kept synchronized between different -@sc{nntp} servers, and the only way Gnus keeps track of what articles +@acronym{NNTP} servers, and the only way Gnus keeps track of what articles you have read is by keeping track of article numbers. So when you change @code{gnus-select-method}, your @file{.newsrc} file becomes worthless. @@ -1576,7 +1579,7 @@ variable. If this variable is @code{nil}, gnus will ask for group info in total lock-step, which isn't very fast. If it is @code{some} and you use an -@sc{nntp} server, gnus will pump out commands as fast as it can, and +@acronym{NNTP} server, gnus will pump out commands as fast as it can, and read all the replies in one swoop. This will normally result in better performance, but if the server does not support the aforementioned @code{LIST ACTIVE group} command, this isn't very nice to the server. @@ -1797,7 +1800,7 @@ Number of unseen articles. Estimated total number of articles. (This is really @var{max-number} minus @var{min-number} plus 1.) -Gnus uses this estimation because the @sc{nntp} protocol provides +Gnus uses this estimation because the @acronym{NNTP} protocol provides efficient access to @var{max-number} and @var{min-number} but getting the true unread message count is not possible efficiently. For hysterical raisins, even the mail back ends, where the true number of @@ -2278,7 +2281,7 @@ read articles (@code{gnus-group-clear-data}). @item M-x gnus-group-clear-data-on-native-groups @kindex M-x gnus-group-clear-data-on-native-groups @findex gnus-group-clear-data-on-native-groups -If you have switched from one @sc{nntp} server to another, all your marks +If you have switched from one @acronym{NNTP} server to another, all your marks and read ranges have become worthless. You can use this command to clear out all data that you have on your native groups. Use with caution. @@ -2505,7 +2508,7 @@ consulted. @cindex making groups Make a new group (@code{gnus-group-make-group}). Gnus will prompt you for a name, a method and possibly an @dfn{address}. For an easier way -to subscribe to @sc{nntp} groups, @pxref{Browse Foreign Server}. +to subscribe to @acronym{NNTP} groups, @pxref{Browse Foreign Server}. @item G r @kindex G r (Group) @@ -2653,7 +2656,7 @@ methods. If @code{gnus-activate-foreign-newsgroups} is a positive number, gnus will check all foreign groups with this level or lower at startup. This might take quite a while, especially if you subscribe to lots of -groups from different @sc{nntp} servers. Also @pxref{Group Levels}; +groups from different @acronym{NNTP} servers. Also @pxref{Group Levels}; @code{gnus-activate-level} also affects activation of foreign newsgroups. @@ -2844,7 +2847,7 @@ Display all articles, both read and unread. @item an integer Display the last @var{integer} articles in the group. This is the same as -entering the group with C-u @var{integer}. +entering the group with @kbd{C-u @var{integer}}. @item default Display the default visible articles, which normally includes unread and @@ -2927,9 +2930,9 @@ instead of @code{gnus-post-method}. @item banner @cindex banner -An item like @code{(banner . "regex")} causes any part of an article -that matches the regular expression "regex" to be stripped. Instead of -"regex", you can also use the symbol @code{signature} which strips the +An item like @code{(banner . @var{regexp})} causes any part of an article +that matches the regular expression @var{regexp} to be stripped. Instead of +@var{regexp}, you can also use the symbol @code{signature} which strips the last signature or any of the elements of the alist @code{gnus-article-banner-alist}. @@ -2975,7 +2978,7 @@ parameters, then you may need the following statement elsewhere in your @end lisp @vindex gnus-list-identifiers -A use for this feature, is to remove a mailing list identifier tag in +A use for this feature is to remove a mailing list identifier tag in the subject fields of articles. E.g. if the news group @samp{nntp+news.gnus.org:gmane.text.docbook.apps} has the tag @samp{DOC-BOOK-APPS:} in the subject of all articles, this tag can be @@ -3043,7 +3046,7 @@ These commands all list various slices of the groups available. List all groups that have unread articles (@code{gnus-group-list-groups}). If the numeric prefix is used, this command will list only groups of level ARG and lower. By default, it -only lists groups of level five (i. e., +only lists groups of level five (i.e., @code{gnus-group-default-list-level}) or lower (i.e., just subscribed groups). @@ -4051,7 +4054,7 @@ whether they are empty or not. @item gnus-group-name-charset-method-alist @vindex gnus-group-name-charset-method-alist An alist of method and the charset for group names. It is used to show -non-ASCII group names. +non-@acronym{ASCII} group names. For example: @lisp @@ -4063,9 +4066,9 @@ For example: @cindex UTF-8 group names @vindex gnus-group-name-charset-group-alist An alist of regexp of group name and the charset for group names. It -is used to show non-ASCII group names. @code{((".*" utf-8))} is the -default value if UTF-8 is supported, otherwise the default is -@code{nil}. +is used to show non-@acronym{ASCII} group names. @code{((".*" +utf-8))} is the default value if UTF-8 is supported, otherwise the +default is @code{nil}. For example: @lisp @@ -4140,13 +4143,13 @@ news. @vindex gnus-group-faq-directory @cindex FAQ @cindex ange-ftp -Try to fetch the FAQ for the current group -(@code{gnus-group-fetch-faq}). Gnus will try to get the FAQ from -@code{gnus-group-faq-directory}, which is usually a directory on a -remote machine. This variable can also be a list of directories. In -that case, giving a prefix to this command will allow you to choose -between the various sites. @code{ange-ftp} (or @code{efs}) will be used -for fetching the file. +Try to fetch the @acronym{FAQ} for the current group +(@code{gnus-group-fetch-faq}). Gnus will try to get the @acronym{FAQ} +from @code{gnus-group-faq-directory}, which is usually a directory on +a remote machine. This variable can also be a list of directories. +In that case, giving a prefix to this command will allow you to choose +between the various sites. @code{ange-ftp} (or @code{efs}) will be +used for fetching the file. If fetching from the first site is unsuccessful, gnus will attempt to go through @code{gnus-group-faq-directory} and try to open them one by one. @@ -4533,8 +4536,8 @@ lines. A thread could be drawn like this: You can customize the appearance with the following options. Note that it is possible to make the thread display look really neat by -replacing the default ASCII characters with graphic line-drawing -glyphs. +replacing the default @acronym{ASCII} characters with graphic +line-drawing glyphs. @table @code @item gnus-sum-thread-tree-root @vindex gnus-sum-thread-tree-root @@ -4699,7 +4702,7 @@ headers are used instead. @vindex nnmail-extra-headers A related variable is @code{nnmail-extra-headers}, which controls when -to include extra headers when generating overview (@sc{nov}) files. +to include extra headers when generating overview (@acronym{NOV}) files. If you have old overview files, you should regenerate them after changing this variable, by entering the server buffer using @kbd{^}, and then @kbd{g} on the appropriate mail server (e.g. nnml) to cause @@ -4731,7 +4734,7 @@ convince their news server administrator to provide some additional support: The above is mostly useful for mail groups, where you have control over -the @sc{nov} files that are created. However, if you can persuade your +the @acronym{NOV} files that are created. However, if you can persuade your nntp admin to add (in the usual implementation, notably INN): @example @@ -6981,7 +6984,7 @@ say something like: @cindex article pre-fetch @cindex pre-fetch -If you read your news from an @sc{nntp} server that's far away, the +If you read your news from an @acronym{NNTP} server that's far away, the network latencies may make reading articles a chore. You have to wait for a while after pressing @kbd{n} to go to the next article before the article appears. Why can't gnus just go ahead and fetch the article @@ -7002,7 +7005,7 @@ thing to do, but I don't see any real alternatives. Setting up that extra connection takes some time, so gnus startup will be slower. Gnus will fetch more articles than you will read. This will mean that -the link between your machine and the @sc{nntp} server will become more +the link between your machine and the @acronym{NNTP} server will become more loaded than if you didn't use article pre-fetch. The server itself will also become more loaded---both with the extra article requests, and the extra connection. @@ -7074,7 +7077,7 @@ The default value is @code{(read exit)}. @cindex article caching @cindex caching -If you have an @emph{extremely} slow @sc{nntp} connection, you may +If you have an @emph{extremely} slow @acronym{NNTP} connection, you may consider turning article caching on. Each article will then be stored locally under your home directory. As you may surmise, this could potentially use @emph{huge} amounts of disk space, as well as eat up all @@ -7115,7 +7118,7 @@ So where does the massive article-fetching and storing come into the picture? The @code{gnus-jog-cache} command will go through all subscribed newsgroups, request all unread articles, score them, and store them in the cache. You should only ever, ever ever ever, use this -command if 1) your connection to the @sc{nntp} server is really, really, +command if 1) your connection to the @acronym{NNTP} server is really, really, really slow and 2) you have a really, really, really huge disk. Seriously. One way to cut down on the number of articles downloaded is to score unwanted articles down and have them marked as read. They will @@ -7141,7 +7144,7 @@ The cache stores information on what articles it contains in its active file (@code{gnus-cache-active-file}). If this file (or any other parts of the cache) becomes all messed up for some reason or other, gnus offers two functions that will try to set things right. @kbd{M-x -gnus-cache-generate-nov-databases} will (re)build all the @sc{nov} +gnus-cache-generate-nov-databases} will (re)build all the @acronym{NOV} files, and @kbd{gnus-cache-generate-active} will (re)generate the active file. @@ -7312,10 +7315,10 @@ complete headers in the piped output. @findex gnus-summary-muttprint @vindex gnus-summary-muttprint-program Save the current article into muttprint. That is, print it using the -external program Muttprint (see -@uref{http://muttprint.sourceforge.net/}). The program name and -options to use is controlled by the variable -@code{gnus-summary-muttprint-program}. (@code{gnus-summary-muttprint}). +external program @uref{http://muttprint.sourceforge.net/, +Muttprint}. The program name and options to use is controlled by the +variable @code{gnus-summary-muttprint-program}. +(@code{gnus-summary-muttprint}). @end table @@ -7399,7 +7402,7 @@ reader to use this setting. @vindex gnus-article-save-directory All of these functions, except for the last one, will save the article in the @code{gnus-article-save-directory}, which is initialized from the -@code{SAVEDIR} environment variable. This is @file{~/News/} by +@env{SAVEDIR} environment variable. This is @file{~/News/} by default. As you can see above, the functions use different functions to find a @@ -7502,9 +7505,9 @@ If you'd like to save articles in a hierarchy that looks something like a spool, you could @lisp -(setq gnus-use-long-file-name '(not-save)) ; to get a hierarchy +(setq gnus-use-long-file-name '(not-save)) ; @r{to get a hierarchy} (setq gnus-default-article-saver - 'gnus-summary-save-in-file) ; no encoding + 'gnus-summary-save-in-file) ; @r{no encoding} @end lisp Then just save with @kbd{o}. You'd then read this hierarchy with @@ -7773,9 +7776,9 @@ Files with name matching this regular expression won't be viewed. @item gnus-uu-ignore-files-by-type @vindex gnus-uu-ignore-files-by-type -Files with a @sc{mime} type matching this variable won't be viewed. +Files with a @acronym{MIME} type matching this variable won't be viewed. Note that Gnus tries to guess what type the file is based on the name. -@code{gnus-uu} is not a @sc{mime} package (yet), so this is slightly +@code{gnus-uu} is not a @acronym{MIME} package (yet), so this is slightly kludgey. @item gnus-uu-tmp-dir @@ -7825,7 +7828,7 @@ Hook run before sending a message to @code{uudecode}. @vindex gnus-uu-view-with-metamail @cindex metamail Non-@code{nil} means that @code{gnus-uu} will ignore the viewing -commands defined by the rule variables and just fudge a @sc{mime} +commands defined by the rule variables and just fudge a @acronym{MIME} content type based on the file name. The result will be fed to @code{metamail} for viewing. @@ -8126,7 +8129,7 @@ too much cruft in most articles. @findex gnus-article-hide Do quite a lot of hiding on the article buffer (@kbd{gnus-article-hide}). In particular, this function will hide -headers, PGP, cited text and the signature. +headers, @acronym{PGP}, cited text and the signature. @item W W h @kindex W W h (Summary) @@ -8168,7 +8171,7 @@ subject. This can also be a list of regular expressions. @item W W P @kindex W W P (Summary) @findex gnus-article-hide-pem -Hide @sc{pem} (privacy enhanced messages) cruft +Hide @acronym{PEM} (privacy enhanced messages) cruft (@code{gnus-article-hide-pem}). @item W W B @@ -8364,8 +8367,8 @@ Toggle whether to display all headers in the article buffer permanently @item W m @kindex W m (Summary) @findex gnus-summary-toggle-mime -Toggle whether to run the article through @sc{mime} before displaying -(@code{gnus-summary-toggle-mime}). +Toggle whether to run the article through @acronym{MIME} before +displaying (@code{gnus-summary-toggle-mime}). @item W o @kindex W o (Summary) @@ -8449,16 +8452,26 @@ Translate CRLF pairs (i. e., @samp{^M}s on the end of the lines) into LF CRs into LF (this takes care of Mac line endings) (@code{gnus-article-remove-cr}). +@kindex W q (Summary) +@findex gnus-article-de-quoted-unreadable +Treat quoted-printable (@code{gnus-article-de-quoted-unreadable}). +Quoted-Printable is one common @acronym{MIME} encoding employed when +sending non-@acronym{ASCII} (i.e., 8-bit) articles. It typically +makes strings like @samp{déjà vu} look like @samp{d=E9j=E0 vu}, which +doesn't look very readable to me. Note that this is usually done +automatically by Gnus if the message in question has a +@code{Content-Transfer-Encoding} header that says that this encoding +has been done. If a prefix is given, a charset will be asked for. + @item W 6 @kindex W 6 (Summary) @findex gnus-article-de-base64-unreadable -Treat base64 (@code{gnus-article-de-base64-unreadable}). -Base64 is one common @sc{mime} encoding employed when sending non-ASCII -(i. e., 8-bit) articles. Note that this is usually done -automatically by Gnus if the message in question has a -@code{Content-Transfer-Encoding} header that says that this encoding has -been done. -If a prefix is given, a charset will be asked for. +Treat base64 (@code{gnus-article-de-base64-unreadable}). Base64 is +one common @acronym{MIME} encoding employed when sending +non-@acronym{ASCII} (i.e., 8-bit) articles. Note that this is +usually done automatically by Gnus if the message in question has a +@code{Content-Transfer-Encoding} header that says that this encoding +has been done. If a prefix is given, a charset will be asked for. @item W Z @kindex W Z (Summary) @@ -8478,9 +8491,9 @@ the newlines (@code{gnus-article-unsplit-urls}). @item W h @kindex W h (Summary) @findex gnus-article-wash-html -Treat @sc{html} (@code{gnus-article-wash-html}). Note that this is +Treat @acronym{HTML} (@code{gnus-article-wash-html}). Note that this is usually done automatically by Gnus if the message in question has a -@code{Content-Type} header that says that the message is @sc{html}. +@code{Content-Type} header that says that the message is @acronym{HTML}. If a prefix is given, a charset will be asked for. @@ -8488,7 +8501,7 @@ If a prefix is given, a charset will be asked for. The default is to use the function specified by @code{mm-text-html-renderer} (@pxref{Display Customization, ,Display Customization, emacs-mime, The Emacs MIME Manual}) to convert the -@sc{html}, but this is controlled by the +@acronym{HTML}, but this is controlled by the @code{gnus-article-wash-function} variable. Pre-defined functions you can use include: @@ -8497,17 +8510,16 @@ can use include: Use Emacs/w3. @item w3m -Use emacs-w3m (see @uref{http://emacs-w3m.namazu.org/} for more -information). +Use @uref{http://emacs-w3m.namazu.org/, emacs-w3m}. @item links -Use Links (see @uref{http://artax.karlin.mff.cuni.cz/~mikulas/links/}). +Use @uref{http://links.sf.net/, Links}. @item lynx -Use Lynx (see @uref{http://lynx.browser.org/}). +Use @uref{http://lynx.isc.org/, Lynx}. @item html2text -Use html2text -- a simple @sc{html} converter included with Gnus. +Use html2text---a simple @acronym{HTML} converter included with Gnus. @end table @@ -8526,17 +8538,19 @@ Add clickable buttons to the article headers @item W p @kindex W p (Summary) @findex gnus-article-verify-x-pgp-sig -Verify a signed control message (@code{gnus-article-verify-x-pgp-sig}). -Control messages such as @code{newgroup} and @code{checkgroups} are -usually signed by the hierarchy maintainer. You need to add the PGP -public key of the maintainer to your keyring to verify the -message.@footnote{PGP keys for many hierarchies are available at -@uref{ftp://ftp.isc.org/pub/pgpcontrol/README.html}} +Verify a signed control message +(@code{gnus-article-verify-x-pgp-sig}). Control messages such as +@code{newgroup} and @code{checkgroups} are usually signed by the +hierarchy maintainer. You need to add the @acronym{PGP} public key of +the maintainer to your keyring to verify the +message.@footnote{@acronym{PGP} keys for many hierarchies are +available at @uref{ftp://ftp.isc.org/pub/pgpcontrol/README.html}} @item W s @kindex W s (Summary) @findex gnus-summary-force-verify-and-decrypt -Verify a signed (PGP, @sc{pgp/mime} or @sc{s/mime}) message +Verify a signed (@acronym{PGP}, @acronym{PGP/MIME} or +@acronym{S/MIME}) message (@code{gnus-summary-force-verify-and-decrypt}). @xref{Security}. @item W a @@ -8648,7 +8662,7 @@ one that handles article bodies and one that handles article heads: This is an alist where each entry has this form: @lisp -(REGEXP BUTTON-PAR USE-P FUNCTION DATA-PAR) +(@var{regexp} @var{button-par} @var{use-p} @var{function} @var{data-par}) @end lisp @table @var @@ -8696,12 +8710,12 @@ article head only, and that each entry has an additional element that is used to say what headers to apply the buttonize coding to: @lisp -(HEADER REGEXP BUTTON-PAR USE-P FUNCTION DATA-PAR) +(@var{header} @var{regexp} @var{nutton-par} @var{use-p} @var{function} @var{data-par}) @end lisp @var{header} is a regular expression. -@subsubheading Related variables and functions +@subsubsection Related variables and functions @item gnus-button-@var{*}-level @xref{Article Button Levels}. @@ -8791,7 +8805,7 @@ specific groups (@pxref{Group Parameters}). Here's an example for the variable @code{gnus-parameters}: @lisp -;; increase `gnus-button-*-level' in some groups: +;; @r{increase @code{gnus-button-*-level} in some groups:} (setq gnus-parameters '(("\\<\\(emacs\\|gnus\\)\\>" (gnus-button-emacs-level 10)) ("\\" (gnus-button-man-level 10)) @@ -8837,7 +8851,7 @@ Related variables and functions include @item gnus-button-tex-level @vindex gnus-button-tex-level -Controls the display of references to TeX or LaTeX stuff, e.g. for CTAN +Controls the display of references to @TeX{} or LaTeX stuff, e.g. for CTAN URLs. See the variables @code{gnus-ctan-url}, @code{gnus-button-ctan-handler}, @code{gnus-button-ctan-directory-regexp}, and @@ -8953,7 +8967,7 @@ try to match the headers to what you have (@pxref{Picons}). Smileys are those little @samp{:-)} symbols that people like to litter their messages with (@pxref{Smileys}). -All these functions are toggles--if the elements already exist, +All these functions are toggles---if the elements already exist, they'll be removed. @table @kbd @@ -9018,13 +9032,13 @@ from the end of the body towards the beginning.) One likely value is: @lisp (setq gnus-signature-separator - '("^-- $" ; The standard - "^-- *$" ; A common mangling - "^-------*$" ; Many people just use a looong - ; line of dashes. Shame! - "^ *--------*$" ; Double-shame! - "^________*$" ; Underscores are also popular - "^========*$")) ; Pervert! + '("^-- $" ; @r{The standard} + "^-- *$" ; @r{A common mangling} + "^-------*$" ; @r{Many people just use a looong} + ; @r{line of dashes. Shame!} + "^ *--------*$" ; @r{Double-shame!} + "^________*$" ; @r{Underscores are also popular} + "^========*$")) ; @r{Pervert!} @end lisp The more permissive you are, the more likely it is that you'll get false @@ -9083,43 +9097,43 @@ Translate the article from one language to another @cindex viewing attachments The following commands all understand the numerical prefix. For -instance, @kbd{3 b} means ``view the third @sc{mime} part''. +instance, @kbd{3 b} means ``view the third @acronym{MIME} part''. @table @kbd @item b @itemx K v @kindex b (Summary) @kindex K v (Summary) -View the @sc{mime} part. +View the @acronym{MIME} part. @item K o @kindex K o (Summary) -Save the @sc{mime} part. +Save the @acronym{MIME} part. @item K c @kindex K c (Summary) -Copy the @sc{mime} part. +Copy the @acronym{MIME} part. @item K e @kindex K e (Summary) -View the @sc{mime} part externally. +View the @acronym{MIME} part externally. @item K i @kindex K i (Summary) -View the @sc{mime} part internally. +View the @acronym{MIME} part internally. @item K | @kindex K | (Summary) -Pipe the @sc{mime} part to an external command. +Pipe the @acronym{MIME} part to an external command. @end table -The rest of these @sc{mime} commands do not use the numerical prefix in +The rest of these @acronym{MIME} commands do not use the numerical prefix in the same manner: @table @kbd @item K b @kindex K b (Summary) -Make all the @sc{mime} parts have buttons in front of them. This is +Make all the @acronym{MIME} parts have buttons in front of them. This is mostly useful if you wish to save (or perform other actions) on inlined parts. @@ -9134,7 +9148,7 @@ be viewed in a more pleasant manner @item X m @kindex X m (Summary) @findex gnus-summary-save-parts -Save all parts matching a @sc{mime} type to a directory +Save all parts matching a @acronym{MIME} type to a directory (@code{gnus-summary-save-parts}). Understands the process/prefix convention (@pxref{Process/Prefix}). @@ -9160,13 +9174,13 @@ This command looks in the @code{Content-Type} header to determine the charset. If there is no such header in the article, you can give it a prefix, which will prompt for the charset to decode as. In regional groups where people post using some common encoding (but do not -include @sc{mime} headers), you can set the @code{charset} group/topic +include @acronym{MIME} headers), you can set the @code{charset} group/topic parameter to the required charset (@pxref{Group Parameters}). @item W M v @kindex W M v (Summary) @findex gnus-mime-view-all-parts -View all the @sc{mime} parts in the current article +View all the @acronym{MIME} parts in the current article (@code{gnus-mime-view-all-parts}). @end table @@ -9176,7 +9190,7 @@ Relevant variables: @table @code @item gnus-ignored-mime-types @vindex gnus-ignored-mime-types -This is a list of regexps. @sc{mime} types that match a regexp from +This is a list of regexps. @acronym{MIME} types that match a regexp from this list will be completely ignored by Gnus. The default value is @code{nil}. @@ -9190,22 +9204,22 @@ To have all Vcards be ignored, you'd say something like this: @item gnus-article-loose-mime @vindex gnus-article-loose-mime If non-@code{nil}, Gnus won't required the @samp{MIME-Version} header -before interpreting the message as a @sc{mime} message. This helps +before interpreting the message as a @acronym{MIME} message. This helps when reading messages from certain broken mail user agents. The default is @code{nil}. @item gnus-article-emulate-mime @vindex gnus-article-emulate-mime -There are other, non-@sc{mime} encoding methods used. The most common +There are other, non-@acronym{MIME} encoding methods used. The most common is @samp{uuencode}, but yEncode is also getting to be popular. If -This variable is non-@code{nil}, Gnus will look in message bodies to +this variable is non-@code{nil}, Gnus will look in message bodies to see if it finds these encodings, and if so, it'll run them through the -Gnus @sc{mime} machinery. The default is @code{t}. +Gnus @acronym{MIME} machinery. The default is @code{t}. @item gnus-unbuttonized-mime-types @vindex gnus-unbuttonized-mime-types -This is a list of regexps. @sc{mime} types that match a regexp from -this list won't have @sc{mime} buttons inserted unless they aren't +This is a list of regexps. @acronym{MIME} types that match a regexp from +this list won't have @acronym{MIME} buttons inserted unless they aren't displayed or this variable is overridden by @code{gnus-buttonized-mime-types}. The default value is @code{(".*/.*")}. This variable is only used when @@ -9213,8 +9227,8 @@ displayed or this variable is overridden by @item gnus-buttonized-mime-types @vindex gnus-buttonized-mime-types -This is a list of regexps. @sc{mime} types that match a regexp from -this list will have @sc{mime} buttons inserted unless they aren't +This is a list of regexps. @acronym{MIME} types that match a regexp from +this list will have @acronym{MIME} buttons inserted unless they aren't displayed. This variable overrides @code{gnus-unbuttonized-mime-types}. The default value is @code{nil}. This variable is only used when @code{gnus-inhibit-mime-unbuttonizing} @@ -9226,12 +9240,12 @@ variable to @code{("multipart/signed")} and leave @item gnus-inhibit-mime-unbuttonizing @vindex gnus-inhibit-mime-unbuttonizing -If this is non-@code{nil}, then all @sc{mime} parts get buttons. The +If this is non-@code{nil}, then all @acronym{MIME} parts get buttons. The default value is @code{nil}. @item gnus-article-mime-part-function @vindex gnus-article-mime-part-function -For each @sc{mime} part, this function will be called with the @sc{mime} +For each @acronym{MIME} part, this function will be called with the @acronym{MIME} handle as the parameter. The function is meant to be used to allow users to gather information from the article (e. g., add Vcard info to the bbdb database) or to do actions based on parts (e. g., automatically @@ -9252,11 +9266,11 @@ Here's an example function the does the latter: @vindex gnus-mime-multipart-functions @item gnus-mime-multipart-functions -Alist of @sc{mime} multipart types and functions to handle them. +Alist of @acronym{MIME} multipart types and functions to handle them. @vindex mm-file-name-rewrite-functions @item mm-file-name-rewrite-functions -List of functions used for rewriting file names of @sc{mime} parts. +List of functions used for rewriting file names of @acronym{MIME} parts. Each function takes a file name as input and returns a file name. Ready-made functions include@* @@ -9297,9 +9311,9 @@ to your @file{~/.gnus.el} file. @section Charsets @cindex charsets -People use different charsets, and we have @sc{mime} to let us know what +People use different charsets, and we have @acronym{MIME} to let us know what charsets they use. Or rather, we wish we had. Many people use -newsreaders and mailers that do not understand or use @sc{mime}, and +newsreaders and mailers that do not understand or use @acronym{MIME}, and just send out messages without saying what character sets they use. To help a bit with this, some local news hierarchies have policies that say what character set is the default. For instance, the @samp{fj} @@ -9311,7 +9325,7 @@ variable, which is an alist of regexps (use the first item to match full group names) and default charsets to be used when reading these groups. @vindex gnus-newsgroup-ignored-charsets -In addition, some people do use soi-disant @sc{mime}-aware agents that +In addition, some people do use soi-disant @acronym{MIME}-aware agents that aren't. These blithely mark messages as being in @code{iso-8859-1} even if they really are in @code{koi-8}. To help here, the @code{gnus-newsgroup-ignored-charsets} variable can be used. The @@ -9322,7 +9336,7 @@ which includes values some agents insist on having in there. @vindex gnus-group-posting-charset-alist When posting, @code{gnus-group-posting-charset-alist} is used to -determine which charsets should not be encoded using the @sc{mime} +determine which charsets should not be encoded using the @acronym{MIME} encodings. For instance, some hierarchies discourage using quoted-printable header encoding. @@ -9352,7 +9366,7 @@ encode using quoted-printable) or @code{t} (always use 8bit). Other charset tricks that may be useful, although not Gnus-specific: -If there are several @sc{mime} charsets that encode the same Emacs +If there are several @acronym{MIME} charsets that encode the same Emacs charset, you can choose what charset to use by saying the following: @lisp @@ -9361,7 +9375,7 @@ charset, you can choose what charset to use by saying the following: @end lisp This means that Russian will be encoded using @code{koi8-r} instead of -the default @code{iso-8859-5} @sc{mime} charset. +the default @code{iso-8859-5} @acronym{MIME} charset. If you want to read messages in @code{koi8-u}, you can cheat and say @@ -9474,7 +9488,7 @@ Commands}). @findex gnus-summary-refer-parent-article If you'd like to read the parent of the current article, and it is not displayed in the summary buffer, you might still be able to. That is, -if the current group is fetched by @sc{nntp}, the parent hasn't expired +if the current group is fetched by @acronym{NNTP}, the parent hasn't expired and the @code{References} in the current article are not mangled, you can just press @kbd{^} or @kbd{A r} (@code{gnus-summary-refer-parent-article}). If everything goes well, @@ -9517,7 +9531,7 @@ by giving the @kbd{A T} command a numerical prefix. @kindex M-^ (Summary) @cindex Message-ID @cindex fetching by Message-ID -You can also ask the @sc{nntp} server for an arbitrary article, no +You can also ask the @acronym{NNTP} server for an arbitrary article, no matter what group it belongs to. @kbd{M-^} (@code{gnus-summary-refer-article}) will ask you for a @code{Message-ID}, which is one of those long, hard-to-read thingies @@ -9532,8 +9546,8 @@ by giving this command a prefix. @vindex gnus-refer-article-method If the group you are reading is located on a back end that does not support fetching by @code{Message-ID} very well (like @code{nnspool}), -you can set @code{gnus-refer-article-method} to an @sc{nntp} method. It -would, perhaps, be best if the @sc{nntp} server you consult is the one +you can set @code{gnus-refer-article-method} to an @acronym{NNTP} method. It +would, perhaps, be best if the @acronym{NNTP} server you consult is the one updating the spool you are reading from, but that's not really necessary. @@ -10076,13 +10090,13 @@ other buffers. For example: @kindex H f (Summary) @findex gnus-summary-fetch-faq @vindex gnus-group-faq-directory -Try to fetch the FAQ (list of frequently asked questions) for the -current group (@code{gnus-summary-fetch-faq}). Gnus will try to get the -FAQ from @code{gnus-group-faq-directory}, which is usually a directory -on a remote machine. This variable can also be a list of directories. -In that case, giving a prefix to this command will allow you to choose -between the various sites. @code{ange-ftp} or @code{efs} will probably -be used for fetching the file. +Try to fetch the @acronym{FAQ} (list of frequently asked questions) +for the current group (@code{gnus-summary-fetch-faq}). Gnus will try +to get the @acronym{FAQ} from @code{gnus-group-faq-directory}, which +is usually a directory on a remote machine. This variable can also be +a list of directories. In that case, giving a prefix to this command +will allow you to choose between the various sites. @code{ange-ftp} +or @code{efs} will probably be used for fetching the file. @item H d @kindex H d (Summary) @@ -10370,11 +10384,11 @@ excessive crossposting (@pxref{Summary Mail Commands}). @cindex cross-posting @cindex Xref -@cindex @sc{nov} +@cindex @acronym{NOV} One thing that may cause Gnus to not do the cross-posting thing -correctly is if you use an @sc{nntp} server that supports @sc{xover} +correctly is if you use an @acronym{NNTP} server that supports @sc{xover} (which is very nice, because it speeds things up considerably) which -does not include the @code{Xref} header in its @sc{nov} lines. This is +does not include the @code{Xref} header in its @acronym{NOV} lines. This is Evil, but all too common, alas, alack. Gnus tries to Do The Right Thing even with @sc{xover} by registering the @code{Xref} lines of all articles you actually read, but if you kill the articles, or just mark @@ -10384,7 +10398,7 @@ the cross reference mechanism. @cindex LIST overview.fmt @cindex overview.fmt -To check whether your @sc{nntp} server includes the @code{Xref} header +To check whether your @acronym{NNTP} server includes the @code{Xref} header in its overview files, try @samp{telnet your.nntp.server nntp}, @samp{MODE READER} on @code{inn} servers, and then say @samp{LIST overview.fmt}. This may not work, but if it does, and the last line you @@ -10413,16 +10427,16 @@ reasons. @enumerate @item -The @sc{nntp} server may fail to generate the @code{Xref} header. This +The @acronym{NNTP} server may fail to generate the @code{Xref} header. This is evil and not very common. @item -The @sc{nntp} server may fail to include the @code{Xref} header in the +The @acronym{NNTP} server may fail to include the @code{Xref} header in the @file{.overview} data bases. This is evil and all too common, alas. @item You may be reading the same group (or several related groups) from -different @sc{nntp} servers. +different @acronym{NNTP} servers. @item You may be getting mail that duplicates articles posted to groups. @@ -10482,18 +10496,19 @@ to you to figure out, I think. @section Security Gnus is able to verify signed messages or decrypt encrypted messages. -The formats that are supported are PGP, @sc{pgp/mime} and @sc{s/mime}, -however you need some external programs to get things to work: +The formats that are supported are @acronym{PGP}, @acronym{PGP/MIME} +and @acronym{S/MIME}, however you need some external programs to get +things to work: @enumerate @item -To handle PGP and PGP/MIME messages, you have to install an OpenPGP -implementation such as GnuPG. The lisp interface to GnuPG included -with Gnus is called PGG (@pxref{Top, ,PGG, pgg, PGG Manual}), but -Mailcrypt and gpg.el are also supported. +To handle @acronym{PGP} and @acronym{PGP/MIME} messages, you have to +install an OpenPGP implementation such as GnuPG. The lisp interface +to GnuPG included with Gnus is called PGG (@pxref{Top, ,PGG, pgg, PGG +Manual}), but Mailcrypt and gpg.el are also supported. @item -To handle @sc{s/mime} message, you need to install OpenSSL. OpenSSL 0.9.6 +To handle @acronym{S/MIME} message, you need to install OpenSSL. OpenSSL 0.9.6 or newer is recommended. @end enumerate @@ -10516,15 +10531,17 @@ protocols. Otherwise, ask user. @item mml1991-use @vindex mml1991-use -Symbol indicating elisp interface to OpenPGP implementation for PGP -messages. The default is @code{pgg}, but @code{mailcrypt} and -@code{gpg} are also supported although deprecated. +Symbol indicating elisp interface to OpenPGP implementation for +@acronym{PGP} messages. The default is @code{pgg}, but +@code{mailcrypt} and @code{gpg} are also supported although +deprecated. @item mml2015-use @vindex mml2015-use Symbol indicating elisp interface to OpenPGP implementation for -PGP/MIME messages. The default is @code{pgg}, but @code{mailcrypt} -and @code{gpg} are also supported although deprecated. +@acronym{PGP/MIME} messages. The default is @code{pgg}, but +@code{mailcrypt} and @code{gpg} are also supported although +deprecated. @end table @@ -10535,17 +10552,18 @@ Snarfing OpenPGP keys (i.e., importing keys from articles into your key ring) is not supported explicitly through a menu item or command, rather Gnus do detect and label keys as @samp{application/pgp-keys}, allowing you to specify whatever action you think is appropriate -through the usual MIME infrastructure. You can use a +through the usual @acronym{MIME} infrastructure. You can use a @file{~/.mailcap} entry (@pxref{mailcap, , mailcap, emacs-mime, The Emacs MIME Manual}) such as the following to import keys using GNU -Privacy Guard when you click on the MIME button (@pxref{Using MIME}). +Privacy Guard when you click on the @acronym{MIME} button +(@pxref{Using MIME}). @example application/pgp-keys; gpg --import --interactive --verbose; needsterminal @end example This happens to also be the default action defined in -@var{mailcap-mime-data}. +@code{mailcap-mime-data}. @node Mailing List @section Mailing List @@ -10605,7 +10623,7 @@ tell gnus otherwise. @menu * Hiding Headers:: Deciding what headers should be displayed. -* Using MIME:: Pushing articles through @sc{mime} before reading them. +* Using MIME:: Pushing articles through @acronym{MIME} before reading them. * Customizing Articles:: Tailoring the look of the articles. * Article Keymap:: Keystrokes available in the article buffer. * Misc Article:: Other stuff. @@ -10741,43 +10759,43 @@ This is also the default value for this variable. @node Using MIME @section Using MIME -@cindex @sc{mime} +@cindex @acronym{MIME} Mime is a standard for waving your hands through the air, aimlessly, while people stand around yawning. -@sc{mime}, however, is a standard for encoding your articles, aimlessly, +@acronym{MIME}, however, is a standard for encoding your articles, aimlessly, while all newsreaders die of fear. -@sc{mime} may specify what character set the article uses, the encoding +@acronym{MIME} may specify what character set the article uses, the encoding of the characters, and it also makes it possible to embed pictures and other naughty stuff in innocent-looking articles. @vindex gnus-show-mime @vindex gnus-article-display-method-for-mime @findex gnus-article-display-mime-message -Gnus handles @sc{mime} by pushing the articles through +gnus handles @acronym{MIME} by pushing the articles through @code{gnus-article-display-method-for-mime}, which is @code{gnus-article-display-mime-message} by default. This function -calls the @sc{semi} MIME-View program to actually do the work. For more -information on @sc{semi} MIME-View, see its manual page (however it is -not existed yet, sorry). +calls the @acronym{SEMI} MIME-View program to actually do the work. For +more information on @acronym{SEMI} MIME-View, see its manual page +(however it is not existed yet, sorry). Set @code{gnus-show-mime} to @code{t} if you want to use -@sc{mime} all the time. If you have @code{gnus-show-mime} set, then -you'll see some unfortunate display glitches in the article buffer. +@acronym{MIME} all the time. If you have @code{gnus-show-mime} set, +then you'll see some unfortunate display glitches in the article buffer. These can't be avoided. In GNUS or Gnus, it might be best to just use the toggling functions from the summary buffer to avoid getting nasty surprises. (For instance, you enter the group @samp{alt.sing-a-long} and, before you know it, -@sc{mime} has decoded the sound file in the article and some horrible -sing-a-long song comes screaming out your speakers, and you can't find -the volume button, because there isn't one, and people are starting to -look at you, and you try to stop the program, but you can't, and you -can't find the program to control the volume, and everybody else in the -room suddenly decides to look at you disdainfully, and you'll feel -rather stupid.) +@acronym{MIME} has decoded the sound file in the article and some +horrible sing-a-long song comes screaming out your speakers, and you +can't find the volume button, because there isn't one, and people are +starting to look at you, and you try to stop the program, but you can't, +and you can't find the program to control the volume, and everybody else +in the room suddenly decides to look at you disdainfully, and you'll +feel rather stupid.) Any similarity to real events and people is purely coincidental. Ahem. @@ -10847,7 +10865,7 @@ non-nil. @end enumerate You may have noticed that the word @dfn{part} is used here. This refers -to the fact that some messages are @sc{mime} multipart articles that may +to the fact that some messages are @acronym{MIME} multipart articles that may be divided into several parts. Articles that are not multiparts are considered to contain just a single part. @@ -11050,7 +11068,7 @@ article buffer. @vindex gnus-article-decode-hook @item gnus-article-decode-hook @cindex MIME -Hook used to decode @sc{mime} articles. The default value is +Hook used to decode @acronym{MIME} articles. The default value is @code{(article-decode-charset article-decode-encoded-words)} @vindex gnus-article-prepare-hook @@ -11113,7 +11131,7 @@ Displayed when Gnus has treated emphasised strings in the article buffer. @end table @item m -The number of @sc{mime} parts in the article. +The number of @acronym{MIME} parts in the article. @end table @@ -11135,10 +11153,10 @@ This is the delimiter mentioned above. By default, it is @samp{^L} @vindex gnus-use-idna @item gnus-use-idna This variable controls whether Gnus performs IDNA decoding of -internationalized domain names inside @sc{From:}, @sc{To:} and -@sc{Cc:} headers. This requires GNU Libidn -(@url{http://www.gnu.org/software/libidn/}, and this variable is only -enabled if you have installed it. +internationalized domain names inside @samp{From}, @samp{To} and +@samp{Cc} headers. This requires +@uref{http://www.gnu.org/software/libidn/, GNU Libidn}, and this +variable is only enabled if you have installed it. @end table @@ -11258,7 +11276,7 @@ When sending mail, Message invokes @code{message-send-mail-function}. The default function, @code{message-send-mail-with-sendmail}, pipes your article to the @code{sendmail} binary for further queuing and sending. When your local system is not configured for sending mail -using @code{sendmail}, and you have access to a remote @sc{smtp} +using @code{sendmail}, and you have access to a remote @acronym{SMTP} server, you can set @code{message-send-mail-function} to @code{smtpmail-send-it} and make sure to setup the @code{smtpmail} package correctly. An example: @@ -11271,9 +11289,10 @@ package correctly. An example: (setq smtp-default-smtp-server "YOUR SMTP HOST") @end lisp -To the thing similar to this, there is @code{message-smtpmail-send-it}. -It is useful if your ISP requires the POP-before-SMTP authentication. -See the documentation for the function @code{mail-source-touch-pop}. +To the thing similar to this, there is +@code{message-smtpmail-send-it}. It is useful if your ISP requires +the @acronym{POP}-before-@acronym{SMTP} authentication. See the +documentation for the function @code{mail-source-touch-pop}. Other possible choices for @code{message-send-mail-function} includes @code{message-send-mail-with-mh}, @code{message-send-mail-with-qmail}, @@ -11291,7 +11310,7 @@ posting: @cindex mailing lists If your news server offers groups that are really mailing lists -gatewayed to the @sc{nntp} server, you can read those groups without +gatewayed to the @acronym{NNTP} server, you can read those groups without problems, but you can't post/followup to them without some difficulty. One solution is to add a @code{to-address} to the group parameters (@pxref{Group Parameters}). An easier thing to do is set the @@ -11310,7 +11329,7 @@ Gnus version), @code{emacs-gnus} (show only Emacs and Gnus versions), @code{emacs-gnus-config} (same as @code{emacs-gnus} plus system configuration), @code{emacs-gnus-type} (same as @code{emacs-gnus} plus system type) or a custom string. If you set it to a string, be sure to -use a valid format, see RFC 2616." +use a valid format, see RFC 2616. @end table @@ -11595,16 +11614,16 @@ So here's a new example: (organization "People's Front Against MWM")) ("^rec.humor" (signature my-funny-signature-randomizer)) - ((equal (system-name) "gnarly") ;; A form + ((equal (system-name) "gnarly") ;; @r{A form} (signature my-quote-randomizer)) - (message-news-p ;; A function symbol + (message-news-p ;; @r{A function symbol} (signature my-news-signature)) - (window-system ;; A value symbol + (window-system ;; @r{A value symbol} ("X-Window-System" (format "%s" window-system))) - ;; If I'm replying to Larsi, set the Organization header. + ;; @r{If I'm replying to Larsi, set the Organization header.} ((header "from" "larsi.*org") (Organization "Somewhere, Inc.")) - ((posting-from-work-p) ;; A user defined function + ((posting-from-work-p) ;; @r{A user defined function} (signature-file "~/.work-signature") (address "user@@bar.foo") (body "You are fired.\n\nSincerely, your boss.") @@ -11755,10 +11774,10 @@ typically enter that group and send all the articles off. @cindex using s/mime @cindex using smime -Gnus can digitally sign and encrypt your messages, using vanilla PGP -format or @sc{pgp/mime} or @sc{s/mime}. For decoding such messages, -see the @code{mm-verify-option} and @code{mm-decrypt-option} options -(@pxref{Security}). +Gnus can digitally sign and encrypt your messages, using vanilla +@acronym{PGP} format or @acronym{PGP/MIME} or @acronym{S/MIME}. For +decoding such messages, see the @code{mm-verify-option} and +@code{mm-decrypt-option} options (@pxref{Security}). @vindex gnus-message-replysign @vindex gnus-message-replyencrypt @@ -11771,7 +11790,7 @@ are in reply to encrypted messages. Gnus offers @code{gnus-message-replysignencrypted} (on by default) will sign automatically encrypted messages. -Instructing MML to perform security operations on a @sc{mime} part is +Instructing MML to perform security operations on a @acronym{MIME} part is done using the @kbd{C-c C-m s} key map for signing and the @kbd{C-c C-m c} key map for encryption, as follows. @@ -11781,37 +11800,37 @@ C-m c} key map for encryption, as follows. @kindex C-c C-m s s @findex mml-secure-message-sign-smime -Digitally sign current message using @sc{s/mime}. +Digitally sign current message using @acronym{S/MIME}. @item C-c C-m s o @kindex C-c C-m s o @findex mml-secure-message-sign-pgp -Digitally sign current message using PGP. +Digitally sign current message using @acronym{PGP}. @item C-c C-m s p @kindex C-c C-m s p @findex mml-secure-message-sign-pgp -Digitally sign current message using @sc{pgp/mime}. +Digitally sign current message using @acronym{PGP/MIME}. @item C-c C-m c s @kindex C-c C-m c s @findex mml-secure-message-encrypt-smime -Digitally encrypt current message using @sc{s/mime}. +Digitally encrypt current message using @acronym{S/MIME}. @item C-c C-m c o @kindex C-c C-m c o @findex mml-secure-message-encrypt-pgp -Digitally encrypt current message using PGP. +Digitally encrypt current message using @acronym{PGP}. @item C-c C-m c p @kindex C-c C-m c p @findex mml-secure-message-encrypt-pgpmime -Digitally encrypt current message using @sc{pgp/mime}. +Digitally encrypt current message using @acronym{PGP/MIME}. @item C-c C-m C-n @kindex C-c C-m C-n @@ -11829,7 +11848,7 @@ Remove security related MML tags from message. A @dfn{foreign group} is a group not read by the usual (or default) means. It could be, for instance, a group from a different -@sc{nntp} server, it could be a virtual group, or it could be your own +@acronym{NNTP} server, it could be a virtual group, or it could be your own personal mail group. A foreign group (or any group, really) is specified by a @dfn{name} and @@ -11845,7 +11864,7 @@ we do just that (@pxref{Server Buffer}). The @dfn{name} of the group is the name the back end will recognize the group as. -For instance, the group @samp{soc.motss} on the @sc{nntp} server +For instance, the group @samp{soc.motss} on the @acronym{NNTP} server @samp{some.where.edu} will have the name @samp{soc.motss} and select method @code{(nntp "some.where.edu")}. Gnus will call this group @samp{nntp+some.where.edu:soc.motss}, even though the @code{nntp} @@ -11858,7 +11877,7 @@ The different methods all have their peculiarities, of course. * Getting News:: Reading USENET news with Gnus. * Getting Mail:: Reading your personal mail with Gnus. * Browsing the Web:: Getting messages from a plethora of Web sources. -* IMAP:: Using Gnus as a @sc{imap} client. +* IMAP:: Using Gnus as a @acronym{IMAP} client. * Other Sources:: Reading directories, files, SOUP packets. * Combined Groups:: Combining groups into one group. * Gnus Unplugged:: Reading news and mail offline. @@ -11876,14 +11895,14 @@ the actual media and Gnus, so we might just as well say that each back end represents a virtual server. For instance, the @code{nntp} back end may be used to connect to several -different actual @sc{nntp} servers, or, perhaps, to many different ports -on the same actual @sc{nntp} server. You tell Gnus which back end to +different actual @acronym{NNTP} servers, or, perhaps, to many different ports +on the same actual @acronym{NNTP} server. You tell Gnus which back end to use, and what parameters to set by specifying a @dfn{select method}. These select method specifications can sometimes become quite complicated---say, for instance, that you want to read from the -@sc{nntp} server @samp{news.funet.fi} on port number 13, which -hangs if queried for @sc{nov} headers and has a buggy select. Ahem. +@acronym{NNTP} server @samp{news.funet.fi} on port number 13, which +hangs if queried for @acronym{NOV} headers and has a buggy select. Ahem. Anyway, if you had to specify that for each group that used this server, that would be too much work, so Gnus offers a way of naming select methods, which is what you do in the server buffer. @@ -12064,9 +12083,9 @@ Here's the method for a public spool: @cindex proxy @cindex firewall -If you are behind a firewall and only have access to the @sc{nntp} +If you are behind a firewall and only have access to the @acronym{NNTP} server from the firewall machine, you can instruct Gnus to @code{rlogin} -on the firewall machine and telnet from there to the @sc{nntp} server. +on the firewall machine and telnet from there to the @acronym{NNTP} server. Doing this can be rather fiddly, but your virtual server definition should probably look something like this: @@ -12257,11 +12276,11 @@ Set server status to offline (@code{gnus-server-offline-server}). @cindex news back ends A newsreader is normally used for reading news. Gnus currently provides -only two methods of getting news---it can read from an @sc{nntp} server, +only two methods of getting news---it can read from an @acronym{NNTP} server, or it can read from a local spool. @menu -* NNTP:: Reading news from an @sc{nntp} server. +* NNTP:: Reading news from an @acronym{NNTP} server. * News Spool:: Reading news from the local spool. @end menu @@ -12270,11 +12289,11 @@ or it can read from a local spool. @subsection NNTP @cindex nntp -Subscribing to a foreign group from an @sc{nntp} server is rather easy. -You just specify @code{nntp} as method and the address of the @sc{nntp} +Subscribing to a foreign group from an @acronym{NNTP} server is rather easy. +You just specify @code{nntp} as method and the address of the @acronym{NNTP} server as the, uhm, address. -If the @sc{nntp} server is located at a non-standard port, setting the +If the @acronym{NNTP} server is located at a non-standard port, setting the third element of the select method to this port number should allow you to connect to the right port. You'll have to edit the group info for that (@pxref{Foreign Groups}). @@ -12297,7 +12316,7 @@ server: @findex nntp-send-authinfo @findex nntp-send-mode-reader is run after a connection has been made. It can be used to send -commands to the @sc{nntp} server after it has been contacted. By +commands to the @acronym{NNTP} server after it has been contacted. By default it sends the command @code{MODE READER} to the server with the @code{nntp-send-mode-reader} function. This function should always be present in this hook. @@ -12306,7 +12325,7 @@ present in this hook. @vindex nntp-authinfo-function @findex nntp-send-authinfo @vindex nntp-authinfo-file -This function will be used to send @samp{AUTHINFO} to the @sc{nntp} +This function will be used to send @samp{AUTHINFO} to the @acronym{NNTP} server. The default function is @code{nntp-send-authinfo}, which looks through your @file{~/.authinfo} (or whatever you've set the @code{nntp-authinfo-file} variable to) for applicable entries. If none @@ -12388,7 +12407,7 @@ nntpd 1.5.11t, since that command chokes that server, I've been told. @item nntp-maximum-request @vindex nntp-maximum-request -If the @sc{nntp} server doesn't support @sc{nov} headers, this back end +If the @acronym{NNTP} server doesn't support @acronym{NOV} headers, this back end will collect headers by sending a series of @code{head} commands. To speed things up, the back end sends lots of these commands without waiting for reply, and then reads all the replies. This is controlled @@ -12398,7 +12417,7 @@ your network is buggy, you should set this to 1. @item nntp-connection-timeout @vindex nntp-connection-timeout If you have lots of foreign @code{nntp} groups that you connect to -regularly, you're sure to have problems with @sc{nntp} servers not +regularly, you're sure to have problems with @acronym{NNTP} servers not responding properly, or being too loaded to reply within reasonable time. This is can lead to awkward problems, which can be helped somewhat by setting @code{nntp-connection-timeout}. This is an integer @@ -12412,7 +12431,7 @@ no timeouts are done. @c @cindex dynamic IP addresses @c If you're running Gnus on a machine that has a dynamically assigned @c address, Gnus may become confused. If the address of your machine -@c changes after connecting to the @sc{nntp} server, Gnus will simply sit +@c changes after connecting to the @acronym{NNTP} server, Gnus will simply sit @c waiting forever for replies from the server. To help with this @c unfortunate problem, you can set this command to a number. Gnus will @c then, if it sits waiting for a reply from the server longer than that @@ -12428,7 +12447,7 @@ no timeouts are done. @item nntp-server-hook @vindex nntp-server-hook -This hook is run as the last step when connecting to an @sc{nntp} +This hook is run as the last step when connecting to an @acronym{NNTP} server. @item nntp-buggy-select @@ -12437,24 +12456,24 @@ Set this to non-@code{nil} if your select routine is buggy. @item nntp-nov-is-evil @vindex nntp-nov-is-evil -If the @sc{nntp} server does not support @sc{nov}, you could set this -variable to @code{t}, but @code{nntp} usually checks automatically whether @sc{nov} +If the @acronym{NNTP} server does not support @acronym{NOV}, you could set this +variable to @code{t}, but @code{nntp} usually checks automatically whether @acronym{NOV} can be used. @item nntp-xover-commands @vindex nntp-xover-commands @cindex nov @cindex XOVER -List of strings used as commands to fetch @sc{nov} lines from a +List of strings used as commands to fetch @acronym{NOV} lines from a server. The default value of this variable is @code{("XOVER" "XOVERVIEW")}. @item nntp-nov-gap @vindex nntp-nov-gap -@code{nntp} normally sends just one big request for @sc{nov} lines to +@code{nntp} normally sends just one big request for @acronym{NOV} lines to the server. The server responds with one huge list of lines. However, if you have read articles 2-5000 in the group, and only want to read -article 1 and 5001, that means that @code{nntp} will fetch 4999 @sc{nov} +article 1 and 5001, that means that @code{nntp} will fetch 4999 @acronym{NOV} lines that you will not need. This variable says how big a gap between two consecutive articles is allowed to be before the @code{XOVER} request is split into several request. Note that if your @@ -12464,7 +12483,7 @@ that fetching will probably be slower. If this variable is @code{nil}, @item nntp-prepare-server-hook @vindex nntp-prepare-server-hook -A hook run before attempting to connect to an @sc{nntp} server. +A hook run before attempting to connect to an @acronym{NNTP} server. @item nntp-warn-about-losing-connection @vindex nntp-warn-about-losing-connection @@ -12474,8 +12493,8 @@ server closes connection. @item nntp-record-commands @vindex nntp-record-commands If non-@code{nil}, @code{nntp} will log all commands it sends to the -@sc{nntp} server (along with a timestamp) in the @samp{*nntp-log*} -buffer. This is useful if you are debugging a Gnus/@sc{nntp} connection +@acronym{NNTP} server (along with a timestamp) in the @samp{*nntp-log*} +buffer. This is useful if you are debugging a Gnus/@acronym{NNTP} connection that doesn't seem to work. @item nntp-open-connection-function @@ -12566,7 +12585,7 @@ command. You may use it as a server variable as follows: @cindex direct connection functions These functions are called direct because they open a direct connection -between your machine and the @sc{nntp} server. The behavior of these +between your machine and the @acronym{NNTP} server. The behavior of these functions is also affected by commonly understood variables (@pxref{Common Variables}). @@ -12579,13 +12598,12 @@ remote system. @findex nntp-open-tls-stream @item nntp-open-tls-stream Opens a connection to a server over a @dfn{secure} channel. To use -this you must have GNUTLS installed (see -@uref{http://www.gnu.org/software/gnutls/}). You then define a server -as follows: +this you must have @uref{http://www.gnu.org/software/gnutls/, GNUTLS} +installed. You then define a server as follows: @lisp -;; "nntps" is port 563 and is predefined in our /etc/services -;; however, gnutls-cli -p doesn't like named ports. +;; @r{"nntps" is port 563 and is predefined in our @file{/etc/services}} +;; @r{however, @samp{gnutls-cli -p} doesn't like named ports.} ;; (nntp "snews.bar.com" (nntp-open-connection-function nntp-open-tls-stream) @@ -12595,14 +12613,14 @@ as follows: @findex nntp-open-ssl-stream @item nntp-open-ssl-stream -Opens a connection to a server over a @dfn{secure} channel. To use this -you must have OpenSSL (@uref{http://www.openssl.org}) or SSLeay -installed (@uref{ftp://ftp.psy.uq.oz.au/pub/Crypto/SSL}. You then -define a server as follows: +Opens a connection to a server over a @dfn{secure} channel. To use +this you must have @uref{http://www.openssl.org, OpenSSL} or +@uref{ftp://ftp.psy.uq.oz.au/pub/Crypto/SSL, SSLeay} installed. You +then define a server as follows: @lisp -;; "snews" is port 563 and is predefined in our /etc/services -;; however, openssl s_client -port doesn't like named ports. +;; @r{"snews" is port 563 and is predefined in our @file{/etc/services}} +;; @r{however, @samp{openssl s_client -port} doesn't like named ports.} ;; (nntp "snews.bar.com" (nntp-open-connection-function nntp-open-ssl-stream) @@ -12612,7 +12630,7 @@ define a server as follows: @findex nntp-open-telnet-stream @item nntp-open-telnet-stream -Opens a connection to an @sc{nntp} server by simply @samp{telnet}'ing +Opens a connection to an @acronym{NNTP} server by simply @samp{telnet}'ing it. You might wonder why this function exists, since we have the default @code{nntp-open-network-stream} which would do the job. (One of) the reason(s) is that if you are behind a firewall but have direct @@ -12636,7 +12654,7 @@ session, which is not a good idea. @cindex indirect connection functions These functions are called indirect because they connect to an -intermediate host before actually connecting to the @sc{nntp} server. +intermediate host before actually connecting to the @acronym{NNTP} server. All of these functions and related variables are also said to belong to the ``via'' family of connection: they're all prefixed with ``via'' to make things cleaner. The behavior of these functions is also affected by @@ -12646,7 +12664,7 @@ commonly understood variables (@pxref{Common Variables}). @item nntp-open-via-rlogin-and-telnet @findex nntp-open-via-rlogin-and-telnet Does an @samp{rlogin} on a remote system, and then does a @samp{telnet} -to the real @sc{nntp} server from there. This is useful for instance if +to the real @acronym{NNTP} server from there. This is useful for instance if you need to connect to a firewall machine first. @code{nntp-open-via-rlogin-and-telnet}-specific variables: @@ -12740,27 +12758,29 @@ where you would put a @samp{SOCKS} wrapper for instance. @item nntp-address @vindex nntp-address -The address of the @sc{nntp} server. +The address of the @acronym{NNTP} server. @item nntp-port-number @vindex nntp-port-number -Port number to connect to the @sc{nntp} server. The default is -@samp{nntp}. If you use @sc{nntp} over @sc{tls}/@sc{ssl}, you may -want to use integer ports rather than named ports (i.e, use @samp{563} -instead of @samp{snews} or @samp{nntps}), because external TLS/SSL -tools may not work with named ports. +Port number to connect to the @acronym{NNTP} server. The default is +@samp{nntp}. If you use @acronym{NNTP} over +@acronym{TLS}/@acronym{SSL}, you may want to use integer ports rather +than named ports (i.e, use @samp{563} instead of @samp{snews} or +@samp{nntps}), because external @acronym{TLS}/@acronym{SSL} tools may +not work with named ports. @item nntp-end-of-line @vindex nntp-end-of-line -String to use as end-of-line marker when talking to the @sc{nntp} +String to use as end-of-line marker when talking to the @acronym{NNTP} server. This is @samp{\r\n} by default, but should be @samp{\n} when using a non native connection function. @item nntp-telnet-command @vindex nntp-telnet-command -Command to use when connecting to the @sc{nntp} server through -@samp{telnet}. This is NOT for an intermediate host. This is just for -the real @sc{nntp} server. The default is @samp{telnet}. +Command to use when connecting to the @acronym{NNTP} server through +@samp{telnet}. This is @emph{not} for an intermediate host. This is +just for the real @acronym{NNTP} server. The default is +@samp{telnet}. @item nntp-telnet-switches @vindex nntp-telnet-switches @@ -12805,7 +12825,7 @@ Where @code{nnspool} looks for the articles. This is normally @item nnspool-nov-directory @vindex nnspool-nov-directory -Where @code{nnspool} will look for @sc{nov} files. This is normally +Where @code{nnspool} will look for @acronym{NOV} files. This is normally @file{/usr/spool/news/over.view/}. @item nnspool-lib-dir @@ -12830,7 +12850,7 @@ The name of the active date file. @item nnspool-nov-is-evil @vindex nnspool-nov-is-evil -If non-@code{nil}, @code{nnspool} won't try to use any @sc{nov} files +If non-@code{nil}, @code{nnspool} won't try to use any @acronym{NOV} files that it finds. @item nnspool-sift-nov-with-sed @@ -12900,13 +12920,13 @@ mail, is that the transport mechanism has very little to do with how they want to treat a message. Many people subscribe to several mailing lists. These are transported -via @sc{smtp}, and are therefore mail. But we might go for weeks without +via @acronym{SMTP}, and are therefore mail. But we might go for weeks without answering, or even reading these messages very carefully. We may not need to save them because if we should need to read one again, they are archived somewhere else. Some people have local news groups which have only a handful of readers. -These are transported via @sc{nntp}, and are therefore news. But we may need +These are transported via @acronym{NNTP}, and are therefore news. But we may need to read and answer a large fraction of the messages very carefully in order to do our work. And there may not be an archive, so we may need to save the interesting messages the same way we would personal mail. @@ -13054,12 +13074,12 @@ function. @vindex nnmail-mail-splitting-charset @vindex nnmail-mail-splitting-decodes -By default the splitting codes @sc{mime} decodes headers so you can -match on non-ASCII strings. The @code{nnmail-mail-splitting-charset} -variable specifies the default charset for decoding. The behaviour -can be turned off completely by binding -@code{nnmail-mail-splitting-decodes} to @code{nil}, which is useful if -you want to match articles based on the raw header data. +By default the splitting codes @acronym{MIME} decodes headers so you +can match on non-@acronym{ASCII} strings. The +@code{nnmail-mail-splitting-charset} variable specifies the default +charset for decoding. The behaviour can be turned off completely by +binding @code{nnmail-mail-splitting-decodes} to @code{nil}, which is +useful if you want to match articles based on the raw header data. @vindex nnmail-resplit-incoming By default, splitting is performed on all incoming messages. If you @@ -13084,9 +13104,9 @@ month's rent money. @node Mail Sources @subsection Mail Sources -Mail can be gotten from many different sources---the mail spool, from a -POP mail server, from a procmail directory, or from a maildir, for -instance. +Mail can be gotten from many different sources---the mail spool, from +a @acronym{POP} mail server, from a procmail directory, or from a +maildir, for instance. @menu * Mail Source Specifiers:: How to specify what a mail source is. @@ -13127,7 +13147,7 @@ Keywords: @table @code @item :path -The file name. Defaults to the value of the @code{MAIL} +The file name. Defaults to the value of the @env{MAIL} environment variable or the value of @code{rmail-spool-directory} (usually something like @file{/usr/mail/spool/user-name}). @@ -13148,10 +13168,10 @@ Or using the default file name: (file) @end lisp -If the mail spool file is not located on the local machine, it's best to -use POP or @sc{imap} or the like to fetch the mail. You can not use ange-ftp -file names here---it has no way to lock the mail spool while moving the -mail. +If the mail spool file is not located on the local machine, it's best +to use @acronym{POP} or @acronym{IMAP} or the like to fetch the mail. +You can not use ange-ftp file names here---it has no way to lock the +mail spool while moving the mail. If it's impossible to set up a proper server, you can use ssh instead. @@ -13223,33 +13243,33 @@ An example directory mail source: @end lisp @item pop -Get mail from a POP server. +Get mail from a @acronym{POP} server. Keywords: @table @code @item :server -The name of the POP server. The default is taken from the -@code{MAILHOST} environment variable. +The name of the @acronym{POP} server. The default is taken from the +@env{MAILHOST} environment variable. @item :port -The port number of the POP server. This can be a number (eg, +The port number of the @acronym{POP} server. This can be a number (eg, @samp{:port 1234}) or a string (eg, @samp{:port "pop3"}). If it is a string, it should be a service name as listed in @file{/etc/services} on Unix systems. The default is @samp{"pop3"}. On some systems you might need to specify it as @samp{"pop-3"} instead. @item :user -The user name to give to the POP server. The default is the login +The user name to give to the @acronym{POP} server. The default is the login name. @item :password -The password to give to the POP server. If not specified, the user is -prompted. +The password to give to the @acronym{POP} server. If not specified, +the user is prompted. @item :program -The program to use to fetch mail from the POP server. This should be -a @code{format}-like string. Here's an example: +The program to use to fetch mail from the @acronym{POP} server. This +should be a @code{format}-like string. Here's an example: @example fetchmail %u@@%s -P %p %t @@ -13287,9 +13307,9 @@ A script to be run after fetching the mail. The syntax is the same as the @code{:program} keyword. This can also be a function to be run. @item :function -The function to use to fetch mail from the POP server. The function is -called with one parameter---the name of the file where the mail should -be moved to. +The function to use to fetch mail from the @acronym{POP} server. The +function is called with one parameter---the name of the file where the +mail should be moved to. @item :authentication This can be either the symbol @code{password} or the symbol @code{apop} @@ -13322,8 +13342,8 @@ message retrieval. The default is @code{nil}. If the @code{:program} and @code{:function} keywords aren't specified, @code{pop3-movemail} will be used. -Here are some examples. Fetch from the default POP server, using the -default user name, and default fetcher: +Here are some examples. Fetch from the default @acronym{POP} server, +using the default user name, and default fetcher: @lisp (pop) @@ -13352,7 +13372,7 @@ Keywords: @table @code @item :path The name of the directory where the mails are stored. The default is -taken from the @code{MAILDIR} environment variable or +taken from the @env{MAILDIR} environment variable or @file{~/Maildir/}. @item :subdirs The subdirectories of the Maildir. The default is @@ -13381,32 +13401,32 @@ Two example maildir mail sources: @end lisp @item imap -Get mail from a @sc{imap} server. If you don't want to use @sc{imap} -as intended, as a network mail reading protocol (ie with nnimap), for -some reason or other, Gnus let you treat it similar to a POP server -and fetches articles from a given @sc{imap} mailbox. @xref{IMAP}, for -more information. +Get mail from a @acronym{IMAP} server. If you don't want to use +@acronym{IMAP} as intended, as a network mail reading protocol (ie +with nnimap), for some reason or other, Gnus let you treat it similar +to a @acronym{POP} server and fetches articles from a given +@acronym{IMAP} mailbox. @xref{IMAP}, for more information. -Note that for the Kerberos, GSSAPI, TLS/SSL and STARTTLS support you +Note that for the Kerberos, GSSAPI, @acronym{TLS}/@acronym{SSL} and STARTTLS support you may need external programs and libraries, @xref{IMAP}. Keywords: @table @code @item :server -The name of the @sc{imap} server. The default is taken from the -@code{MAILHOST} environment variable. +The name of the @acronym{IMAP} server. The default is taken from the +@env{MAILHOST} environment variable. @item :port -The port number of the @sc{imap} server. The default is @samp{143}, or -@samp{993} for TLS/SSL connections. +The port number of the @acronym{IMAP} server. The default is @samp{143}, or +@samp{993} for @acronym{TLS}/@acronym{SSL} connections. @item :user -The user name to give to the @sc{imap} server. The default is the login +The user name to give to the @acronym{IMAP} server. The default is the login name. @item :password -The password to give to the @sc{imap} server. If not specified, the user is +The password to give to the @acronym{IMAP} server. If not specified, the user is prompted. @item :stream @@ -13453,7 +13473,7 @@ which normally is the mailbox which receive incoming mail. @item :predicate The predicate used to find articles to fetch. The default, @samp{UNSEEN UNDELETED}, is probably the best choice for most people, but if you -sometimes peek in your mailbox with a @sc{imap} client and mark some +sometimes peek in your mailbox with a @acronym{IMAP} client and mark some articles as read (or; SEEN) you might want to set this to @samp{1:*}. Then all articles in the mailbox is fetched, no matter what. For a complete list of predicates, see RFC 2060 section 6.4.4. @@ -13470,7 +13490,7 @@ mailbox after finishing the fetch. @end table -An example @sc{imap} mail source: +An example @acronym{IMAP} mail source: @lisp (imap :server "mail.mycorp.com" @@ -13481,7 +13501,7 @@ An example @sc{imap} mail source: @item webmail Get mail from a webmail server, such as @uref{www.hotmail.com}, @uref{webmail.netscape.com}, @uref{www.netaddress.com}, -@uref{mail.yahoo..com}. +@uref{mail.yahoo.com}. NOTE: Webmail largely depends cookies. A "one-line-cookie" patch is required for url "4.0pre.46". @@ -13635,8 +13655,8 @@ If this variable (and the obsolescent @code{nnmail-spool-file}) is @code{nil}, the mail back ends will never attempt to fetch mail by themselves. -If you want to fetch mail both from your local spool as well as a POP -mail server, you'd say something like: +If you want to fetch mail both from your local spool as well as a +@acronym{POP} mail server, you'd say something like: @lisp (setq mail-sources @@ -13757,28 +13777,28 @@ play with the @code{nnmail-split-fancy} variable. Let's look at an example value of this variable first: @lisp -;; Messages from the mailer daemon are not crossposted to any of -;; the ordinary groups. Warnings are put in a separate group -;; from real errors. +;; @r{Messages from the mailer daemon are not crossposted to any of} +;; @r{the ordinary groups. Warnings are put in a separate group} +;; @r{from real errors.} (| ("from" mail (| ("subject" "warn.*" "mail.warning") "mail.misc")) - ;; Non-error messages are crossposted to all relevant - ;; groups, but we don't crosspost between the group for the - ;; (ding) list and the group for other (ding) related mail. + ;; @r{Non-error messages are crossposted to all relevant} + ;; @r{groups, but we don't crosspost between the group for the} + ;; @r{(ding) list and the group for other (ding) related mail.} (& (| (any "ding@@ifi\\.uio\\.no" "ding.list") ("subject" "ding" "ding.misc")) - ;; Other mailing lists... + ;; @r{Other mailing lists@dots{}} (any "procmail@@informatik\\.rwth-aachen\\.de" "procmail.list") (any "SmartList@@informatik\\.rwth-aachen\\.de" "SmartList.list") - ;; Both lists below have the same suffix, so prevent - ;; cross-posting to mkpkg.list of messages posted only to - ;; the bugs- list, but allow cross-posting when the - ;; message was really cross-posted. + ;; @r{Both lists below have the same suffix, so prevent} + ;; @r{cross-posting to mkpkg.list of messages posted only to} + ;; @r{the bugs- list, but allow cross-posting when the} + ;; @r{message was really cross-posted.} (any "bugs-mypackage@@somewhere" "mypkg.bugs") (any "mypackage@@somewhere\" - "bugs-mypackage" "mypkg.list") - ;; People... + ;; @r{People@dots{}} (any "larsi@@ifi\\.uio\\.no" "people.Lars_Magne_Ingebrigtsen")) - ;; Unmatched mail goes to the catch all group. + ;; @r{Unmatched mail goes to the catch all group.} "misc.misc") @end lisp @@ -13898,11 +13918,11 @@ and @code{nnmail-cache-accepted-message-ids} to a non-@code{nil} value. And then you can include @code{nnmail-split-fancy-with-parent} using the colon feature, like so: @lisp -(setq nnmail-treat-duplicates 'warn ; or 'delete +(setq nnmail-treat-duplicates 'warn ; @r{or @code{delete}} nnmail-cache-accepted-message-ids t nnmail-split-fancy '(| (: nnmail-split-fancy-with-parent) - ;; other splits go here + ;; @r{other splits go here} )) @end lisp @@ -14017,7 +14037,7 @@ may use it for only some of them, by using @code{nnmail-split-fancy} splits like this: @lisp -(: gnus-group-split-fancy GROUPS NO-CROSSPOST CATCH-ALL) +(: gnus-group-split-fancy @var{groups} @var{no-crosspost} @var{catch-all}) @end lisp @var{groups} may be a regular expression or a list of group names whose @@ -14048,7 +14068,7 @@ automatically, just tell @code{gnus-group-split-setup} to do it for you. For example, add to your @file{~/.gnus.el}: @lisp -(gnus-group-split-setup AUTO-UPDATE CATCH-ALL) +(gnus-group-split-setup @var{auto-update} @var{catch-all}) @end lisp If @var{auto-update} is non-@code{nil}, @code{gnus-group-split-update} @@ -14253,7 +14273,7 @@ parameter. default value is @code{delete}, but this can also be a string (which should be the name of the group the message should be moved to), or a function (which will be called in a buffer narrowed to the message in question, and with the name of the group being moved -from as its parameter) which should return a target -- either a group +from as its parameter) which should return a target---either a group name or @code{delete}. Here's an example for specifying a group name: @@ -14447,11 +14467,11 @@ methods: @lisp (setq nnmail-split-fancy - '(| ;; Messages duplicates go to a separate group. + '(| ;; @r{Messages duplicates go to a separate group.} ("gnus-warning" "duplicat\\(e\\|ion\\) of message" "duplicate") - ;; Message from daemons, postmaster, and the like to another. + ;; @r{Message from daemons, postmaster, and the like to another.} (any mail "mail.misc") - ;; Other rules. + ;; @r{Other rules.} [ ... ] )) @end lisp @@ -14459,7 +14479,7 @@ Or something like: @lisp (setq nnmail-split-methods '(("duplicates" "^Gnus-Warning:.*duplicate") - ;; Other rules. + ;; @r{Other rules.} [...])) @end lisp @@ -14585,7 +14605,7 @@ If non-@code{nil}, @code{nnbabyl} will read incoming mail. Default is @node Mail Spool @subsubsection Mail Spool @cindex nnml -@cindex mail @sc{nov} spool +@cindex mail @acronym{NOV} spool The @dfn{nnml} spool mail format isn't compatible with any other known format. It should be used with some caution. @@ -14610,7 +14630,7 @@ to trudge through a big mbox file just to read your new mail. @code{nnml} is probably the slowest back end when it comes to article splitting. It has to create lots of files, and it also generates -@sc{nov} databases for the incoming mails. This makes it possibly the +@acronym{NOV} databases for the incoming mails. This makes it possibly the fastest back end when it comes to reading mail. @cindex self contained nnml servers @@ -14655,12 +14675,12 @@ If non-@code{nil}, @code{nnml} will read incoming mail. The default is @item nnml-nov-is-evil @vindex nnml-nov-is-evil -If non-@code{nil}, this back end will ignore any @sc{nov} files. The +If non-@code{nil}, this back end will ignore any @acronym{NOV} files. The default is @code{nil}. @item nnml-nov-file-name @vindex nnml-nov-file-name -The name of the @sc{nov} files. The default is @file{.overview}. +The name of the @acronym{NOV} files. The default is @file{.overview}. @item nnml-prepare-save-mail-hook @vindex nnml-prepare-save-mail-hook @@ -14683,7 +14703,7 @@ files. @end table @findex nnml-generate-nov-databases -If your @code{nnml} groups and @sc{nov} files get totally out of whack, +If your @code{nnml} groups and @acronym{NOV} files get totally out of whack, you can do a complete update by typing @kbd{M-x nnml-generate-nov-databases}. This command will trawl through the entire @code{nnml} hierarchy, looking at each and every article, so it @@ -14698,7 +14718,7 @@ Commands}). @cindex mh-e mail spool @code{nnmh} is just like @code{nnml}, except that is doesn't generate -@sc{nov} databases and it doesn't keep an active file or marks file. +@acronym{NOV} databases and it doesn't keep an active file or marks file. This makes @code{nnmh} a @emph{much} slower back end than @code{nnml}, but it also makes it easier to write procmail scripts for. @@ -14751,7 +14771,7 @@ nnmaildir is designed to be perfectly reliable: @kbd{C-g} will never corrupt its data in memory, and @code{SIGKILL} will never corrupt its data in the filesystem. -nnmaildir stores article marks and NOV data in each maildir. So you +nnmaildir stores article marks and @acronym{NOV} data in each maildir. So you can copy a whole maildir from one Gnus setup to another, and you will keep your marks. @@ -14775,7 +14795,7 @@ which is processed by @code{eval} and @code{expand-file-name} to get the path of the directory for this server. The form is @code{eval}ed only when the server is opened; the resulting string is used until the server is closed. (If you don't know about forms and @code{eval}, -don't worry - a simple string will work.) This parameter is not +don't worry---a simple string will work.) This parameter is not optional; you must specify it. I don't recommend using @code{"~/Mail"} or a subdirectory of it; several other parts of Gnus use that directory by default for various things, and may get confused @@ -14892,7 +14912,7 @@ maildir as read-only. This means: articles are not renamed from @file{new/} into @file{cur/}; articles are only found in @file{new/}, not @file{cur/}; articles are never deleted; articles cannot be edited. @file{new/} is expected to be a symlink to the @file{new/} -directory of another maildir - e.g., a system-wide mailbox containing +directory of another maildir---e.g., a system-wide mailbox containing a mailing list of common interest. Everything in the maildir outside @file{new/} is @emph{not} treated as read-only, so for a shared mailbox, you do still need to set up your own maildir (or have write @@ -14929,12 +14949,12 @@ probably be removed eventually; it ought to be done in Gnus proper, or abandoned if it's not worthwhile. @item nov-cache-size -An integer specifying the size of the NOV memory cache. To speed -things up, nnmaildir keeps NOV data in memory for a limited number of +An integer specifying the size of the @acronym{NOV} memory cache. To speed +things up, nnmaildir keeps @acronym{NOV} data in memory for a limited number of articles in each group. (This is probably not worthwhile, and will probably be removed in the future.) This parameter's value is noticed -only the first time a group is seen after the server is opened - i.e., -when you first start Gnus, typically. The NOV cache is never resized +only the first time a group is seen after the server is opened---i.e., +when you first start Gnus, typically. The @acronym{NOV} cache is never resized until the server is closed and reopened. The default is an estimate of the number of articles that would be displayed in the summary buffer: a count of articles that are either marked with @code{tick} or @@ -14954,14 +14974,14 @@ available in the variable @code{nnmaildir-article-file-name} after you request the article in the summary buffer. @subsubsection NOV data -An article identified by @code{uniq} has its NOV data (used to +An article identified by @code{uniq} has its @acronym{NOV} data (used to generate lines in the summary buffer) stored in @code{.nnmaildir/nov/uniq}. There is no @code{nnmaildir-generate-nov-databases} function. (There isn't much -need for it - an article's NOV data is updated automatically when the +need for it---an article's @acronym{NOV} data is updated automatically when the article or @code{nnmail-extra-headers} has changed.) You can force -nnmaildir to regenerate the NOV data for a single article simply by -deleting the corresponding NOV file, but @emph{beware}: this will also +nnmaildir to regenerate the @acronym{NOV} data for a single article simply by +deleting the corresponding @acronym{NOV} file, but @emph{beware}: this will also cause nnmaildir to assign a new article number for this article, which may cause trouble with @code{seen} marks, the Agent, and the cache. @@ -15056,16 +15076,16 @@ extract some information from it before removing it. @item nnfolder-nov-is-evil @vindex nnfolder-nov-is-evil -If non-@code{nil}, this back end will ignore any @sc{nov} files. The +If non-@code{nil}, this back end will ignore any @acronym{NOV} files. The default is @code{nil}. @item nnfolder-nov-file-suffix @vindex nnfolder-nov-file-suffix -The extension for @sc{nov} files. The default is @file{.nov}. +The extension for @acronym{NOV} files. The default is @file{.nov}. @item nnfolder-nov-directory @vindex nnfolder-nov-directory -The directory where the @sc{nov} files should be stored. If +The directory where the @acronym{NOV} files should be stored. If @code{nil}, @code{nnfolder-directory} is used. @item nnfolder-marks-is-evil @@ -15103,9 +15123,9 @@ and so selection of a suitable back end is required in order to get that mail within spitting distance of Gnus. The same concept exists for Usenet itself: Though access to articles is -typically done by @sc{nntp} these days, once upon a midnight dreary, everyone +typically done by @acronym{NNTP} these days, once upon a midnight dreary, everyone in the world got at Usenet by running a reader on the machine where the -articles lay (the machine which today we call an @sc{nntp} server), and +articles lay (the machine which today we call an @acronym{NNTP} server), and access was by the reader stepping into the articles' directory spool area directly. One can still select between either the @code{nntp} or @code{nnspool} back ends, to select between these methods, if one happens @@ -15167,7 +15187,7 @@ Usenet-style active file (analogous to what one finds in an INN- or CNews-based news system in (for instance) @file{/var/lib/news/active}, or what is returned via the @samp{NNTP LIST} verb) and also creates @dfn{overview} files for efficient group entry, as has been defined for -@sc{nntp} servers for some years now. It is slower in mail-splitting, +@acronym{NNTP} servers for some years now. It is slower in mail-splitting, due to the creation of lots of files, updates to the @code{nnml} active file, and additions to overview files on a per-message basis, but it is extremely fast on access because of what amounts to the indexing support @@ -15188,7 +15208,7 @@ tiny files. The Rand MH mail-reading system has been around UNIX systems for a very long time; it operates by splitting one's spool file of messages into -individual files, but with little or no indexing support -- @code{nnmh} +individual files, but with little or no indexing support---@code{nnmh} is considered to be semantically equivalent to ``@code{nnml} without active file or overviews''. This is arguably the worst choice, because one gets the slowness of individual file creation married to the @@ -15223,8 +15243,8 @@ filename is unrelated to the article number in Gnus. @code{nnmaildir} also stores the equivalent of @code{nnml}'s overview files in one file per article, so it uses about twice as many inodes as @code{nnml}. (Use @code{df -i} to see how plentiful your inode supply is.) If this slows -you down or takes up very much space, consider switching to ReiserFS -(@uref{http://www.namesys.com/}) or another non-block-structured +you down or takes up very much space, consider switching to +@uref{http://www.namesys.com/, ReiserFS} or another non-block-structured file system. Since maildirs don't require locking for delivery, the maildirs you use @@ -15304,7 +15324,7 @@ interfaces to these sources. All the web sources require Emacs/w3 and the url library to work. The main caveat with all these web sources is that they probably won't -work for a very long time. Gleaning information from the @sc{html} data +work for a very long time. Gleaning information from the @acronym{HTML} data is guesswork at best, and when the layout is altered, the Gnus back end will fail. If you have reasonably new versions of these back ends, though, you should be ok. @@ -15442,7 +15462,7 @@ Format string URL to fetch an article by @code{Message-ID}. @cindex Slashdot @cindex nnslashdot -Slashdot (@uref{http://slashdot.org/}) is a popular news site, with +@uref{http://slashdot.org/, Slashdot} is a popular news site, with lively discussion following the news articles. @code{nnslashdot} will let you read this forum in a convenient manner. @@ -15465,12 +15485,12 @@ If you want to remove an old @code{nnslashdot} group, the @kbd{G DEL} command is the most handy tool (@pxref{Foreign Groups}). When following up to @code{nnslashdot} comments (or posting new -comments), some light @sc{html}izations will be performed. In +comments), some light @acronym{HTML}izations will be performed. In particular, text quoted with @samp{> } will be quoted with @code{blockquote} instead, and signatures will have @code{br} added to -the end of each line. Other than that, you can just write @sc{html} +the end of each line. Other than that, you can just write @acronym{HTML} directly into the message buffer. Note that Slashdot filters out some -@sc{html} forms. +@acronym{HTML} forms. The following variables can be altered to change its behavior: @@ -15532,7 +15552,7 @@ updated. The default is 0. @cindex nnultimate @cindex Ultimate Bulletin Board -The Ultimate Bulletin Board (@uref{http://www.ultimatebb.com/}) is +@uref{http://www.ultimatebb.com/, The Ultimate Bulletin Board} is probably the most popular Web bulletin board system used. It has a quite regular and nice interface, and it's possible to get the information Gnus needs to keep groups updated. @@ -15569,10 +15589,10 @@ groups updated. @findex gnus-group-make-warchive-group The easiest way to get started with @code{nnwarchive} is to say something like the following in the group buffer: @kbd{M-x -gnus-group-make-warchive-group RET an_egroup RET egroups RET -www.egroups.com RET your@@email.address RET}. (Substitute the -@sc{an_egroup} with the mailing list you subscribed, the -@sc{your@@email.address} with your email address.), or to browse the +gnus-group-make-warchive-group RET @var{an_egroup} RET egroups RET +www.egroups.com RET @var{your@@email.address RET}}. (Substitute the +@var{an_egroup} with the mailing list you subscribed, the +@var{your@@email.address} with your email address.), or to browse the back end by @kbd{B nnwarchive RET mail-archive RET}. The following @code{nnwarchive} variables can be altered: @@ -15680,58 +15700,59 @@ browser like Netscape). Here's one way: @end lisp Put that in your @file{.emacs} file, and hitting links in w3-rendered -@sc{html} in the Gnus article buffers will use @code{browse-url} to +@acronym{HTML} in the Gnus article buffers will use @code{browse-url} to follow the link. @node IMAP @section IMAP @cindex nnimap -@cindex @sc{imap} +@cindex @acronym{IMAP} -@sc{imap} is a network protocol for reading mail (or news, or @dots{}), -think of it as a modernized @sc{nntp}. Connecting to a @sc{imap} +@acronym{IMAP} is a network protocol for reading mail (or news, or @dots{}), +think of it as a modernized @acronym{NNTP}. Connecting to a @acronym{IMAP} server is much similar to connecting to a news server, you just specify the network address of the server. -@sc{imap} has two properties. First, @sc{imap} can do everything that -POP can, it can hence be viewed as a POP++. Secondly, @sc{imap} is a -mail storage protocol, similar to @sc{nntp} being a news storage -protocol -- however, @sc{imap} offers more features than @sc{nntp} -because news is more or less read-only whereas mail is read-write. +@acronym{IMAP} has two properties. First, @acronym{IMAP} can do +everything that @acronym{POP} can, it can hence be viewed as a +@acronym{POP++}. Secondly, @acronym{IMAP} is a mail storage protocol, +similar to @acronym{NNTP} being a news storage protocol---however, +@acronym{IMAP} offers more features than @acronym{NNTP} because news +is more or less read-only whereas mail is read-write. -If you want to use @sc{imap} as a POP++, use an imap entry in -@code{mail-sources}. With this, Gnus will fetch mails from the -@sc{imap} server and store them on the local disk. This is not the -usage described in this section--@xref{Mail Sources}. +If you want to use @acronym{IMAP} as a @acronym{POP++}, use an imap +entry in @code{mail-sources}. With this, Gnus will fetch mails from +the @acronym{IMAP} server and store them on the local disk. This is +not the usage described in this section---@xref{Mail Sources}. -If you want to use @sc{imap} as a mail storage protocol, use an nnimap +If you want to use @acronym{IMAP} as a mail storage protocol, use an nnimap entry in @code{gnus-secondary-select-methods}. With this, Gnus will -manipulate mails stored on the @sc{imap} server. This is the kind of +manipulate mails stored on the @acronym{IMAP} server. This is the kind of usage explained in this section. -A server configuration in @file{~/.gnus.el} with a few @sc{imap} servers -might look something like the following. (Note that for TLS/SSL, you +A server configuration in @file{~/.gnus.el} with a few @acronym{IMAP} servers +might look something like the following. (Note that for @acronym{TLS}/@acronym{SSL}, you need external programs and libraries, see below.) @lisp (setq gnus-secondary-select-methods - '((nnimap "simpleserver") ; no special configuration - ; perhaps a ssh port forwarded server: + '((nnimap "simpleserver") ; @r{no special configuration} + ; @r{perhaps a ssh port forwarded server:} (nnimap "dolk" (nnimap-address "localhost") (nnimap-server-port 1430)) - ; a UW server running on localhost + ; @r{a UW server running on localhost} (nnimap "barbar" (nnimap-server-port 143) (nnimap-address "localhost") (nnimap-list-pattern ("INBOX" "mail/*"))) - ; anonymous public cyrus server: + ; @r{anonymous public cyrus server:} (nnimap "cyrus.andrew.cmu.edu" (nnimap-authenticator anonymous) (nnimap-list-pattern "archive.*") (nnimap-stream network)) - ; a ssl server on a non-standard port: + ; @r{a ssl server on a non-standard port:} (nnimap "vic20" (nnimap-address "vic20.somewhere.com") (nnimap-server-port 9930) @@ -15751,12 +15772,12 @@ server: @item nnimap-address @vindex nnimap-address -The address of the remote @sc{imap} server. Defaults to the virtual +The address of the remote @acronym{IMAP} server. Defaults to the virtual server name if not specified. @item nnimap-server-port @vindex nnimap-server-port -Port on server to contact. Defaults to port 143, or 993 for TLS/SSL. +Port on server to contact. Defaults to port 143, or 993 for @acronym{TLS}/@acronym{SSL}. Note that this should be an integer, example server specification: @@ -15769,8 +15790,8 @@ Note that this should be an integer, example server specification: @vindex nnimap-list-pattern String or list of strings of mailboxes to limit available groups to. This is used when the server has very many mailboxes and you're only -interested in a few -- some servers export your home directory via -@sc{imap}, you'll probably want to limit the mailboxes to those in +interested in a few---some servers export your home directory via +@acronym{IMAP}, you'll probably want to limit the mailboxes to those in @file{~/Mail/*} then. The string can also be a cons of REFERENCE and the string as above, what @@ -15790,7 +15811,7 @@ Example server specification: @vindex nnimap-stream The type of stream used to connect to your server. By default, nnimap will detect and automatically use all of the below, with the exception -of TLS/SSL. (@sc{imap} over TLS/SSL is being replaced by STARTTLS, which +of @acronym{TLS}/@acronym{SSL}. (@acronym{IMAP} over @acronym{TLS}/@acronym{SSL} is being replaced by STARTTLS, which can be automatically detected, but it's not widely deployed yet.) Example server specification: @@ -15810,16 +15831,16 @@ Please note that the value of @code{nnimap-stream} is a symbol! @dfn{kerberos4:} Connect with Kerberos 4. Requires the @samp{imtest} program. @item @dfn{starttls:} Connect via the STARTTLS extension (similar to -TLS/SSL). Requires the external library @samp{starttls.el} and program +@acronym{TLS}/@acronym{SSL}). Requires the external library @samp{starttls.el} and program @samp{starttls}. @item -@dfn{tls:} Connect through TLS. Requires GNUTLS (the program +@dfn{tls:} Connect through @acronym{TLS}. Requires GNUTLS (the program @samp{gnutls-cli}). @item -@dfn{ssl:} Connect through SSL. Requires OpenSSL (the program +@dfn{ssl:} Connect through @acronym{SSL}. Requires OpenSSL (the program @samp{openssl}) or SSLeay (@samp{s_client}). @item -@dfn{shell:} Use a shell command to start @sc{imap} connection. +@dfn{shell:} Use a shell command to start @acronym{IMAP} connection. @item @dfn{network:} Plain, TCP/IP network connection. @end itemize @@ -15830,28 +15851,28 @@ using @samp{imtest} from Cyrus IMAPD < 2.0.14 (which includes version 1.5.x and 1.6.x) you need to frob @code{imap-process-connection-type} to make @code{imap.el} use a pty instead of a pipe when communicating with @samp{imtest}. You will then suffer from a line length -restrictions on @sc{imap} commands, which might make Gnus seem to hang +restrictions on @acronym{IMAP} commands, which might make Gnus seem to hang indefinitely if you have many articles in a mailbox. The variable @code{imap-kerberos4-program} contain parameters to pass to the imtest program. -For TLS connection, the @code{gnutls-cli} program from GNUTLS is +For @acronym{TLS} connection, the @code{gnutls-cli} program from GNUTLS is needed. It is available from @uref{http://www.gnu.org/software/gnutls/}. @vindex imap-gssapi-program This parameter specifies a list of command lines that invoke a GSSAPI -authenticated IMAP stream in a subshell. They are tried sequentially -until a connection is made, or the list has been exhausted. By -default, @samp{gsasl} from GNU SASL, available from +authenticated @acronym{IMAP} stream in a subshell. They are tried +sequentially until a connection is made, or the list has been +exhausted. By default, @samp{gsasl} from GNU SASL, available from @uref{http://www.gnu.org/software/gsasl/}, and the @samp{imtest} program from Cyrus IMAPD (see @code{imap-kerberos4-program}), are tried. @vindex imap-ssl-program -For SSL connections, the OpenSSL program is available from +For @acronym{SSL} connections, the OpenSSL program is available from @uref{http://www.openssl.org/}. OpenSSL was formerly known as SSLeay, -and nnimap support it too - although the most recent versions of +and nnimap support it too---although the most recent versions of SSLeay, 0.9.x, are known to have serious bugs making it useless. Earlier versions, especially 0.8.x, of SSLeay are known to work. The variable @code{imap-ssl-program} contain parameters to pass @@ -15859,7 +15880,7 @@ to OpenSSL/SSLeay. @vindex imap-shell-program @vindex imap-shell-host -For @sc{imap} connections using the @code{shell} stream, the variable +For @acronym{IMAP} connections using the @code{shell} stream, the variable @code{imap-shell-program} specify what program to call. @item nnimap-authenticator @@ -15898,8 +15919,8 @@ external library @code{digest-md5.el}. @item nnimap-expunge-on-close @cindex Expunging @vindex nnimap-expunge-on-close -Unlike Parmenides the @sc{imap} designers has decided that things that -doesn't exist actually does exist. More specifically, @sc{imap} has +Unlike Parmenides the @acronym{IMAP} designers has decided that things that +doesn't exist actually does exist. More specifically, @acronym{IMAP} has this concept of marking articles @code{Deleted} which doesn't actually delete them, and this (marking them @code{Deleted}, that is) is what nnimap does when you delete a article in Gnus (with @kbd{B DEL} or @@ -15922,7 +15943,7 @@ The default behavior, delete all articles marked as ``Deleted'' when closing a mailbox. @item never Never actually delete articles. Currently there is no way of showing -the articles marked for deletion in nnimap, but other @sc{imap} clients +the articles marked for deletion in nnimap, but other @acronym{IMAP} clients may allow you to do this. If you ever want to run the EXPUNGE command manually, @xref{Expunging mailboxes}. @item ask @@ -15935,10 +15956,10 @@ articles or not. @vindex nnimap-importantize-dormant If non-@code{nil} (the default), marks dormant articles as ticked (as -well), for other @sc{imap} clients. Within Gnus, dormant articles will +well), for other @acronym{IMAP} clients. Within Gnus, dormant articles will naturally still (only) be marked as dormant. This is to make dormant -articles stand out, just like ticked articles, in other @sc{imap} -clients. (In other words, Gnus has two ``Tick'' marks and @sc{imap} +articles stand out, just like ticked articles, in other @acronym{IMAP} +clients. (In other words, Gnus has two ``Tick'' marks and @acronym{IMAP} has only one.) Probably the only reason for frobing this would be if you're trying @@ -15958,7 +15979,7 @@ as ticked for other users. @cindex Expunging @vindex nnimap-expunge-search-string -This variable contain the @sc{imap} search command sent to server when +This variable contain the @acronym{IMAP} search command sent to server when searching for articles eligible for expiring. The default is @code{"UID %s NOT SINCE %s"}, where the first @code{%s} is replaced by UID set and the second @code{%s} is replaced by a date. @@ -15983,7 +16004,7 @@ variable @code{nntp-authinfo-file} for exact syntax; also see * Expiring in IMAP:: Expiring mail with nnimap. * Editing IMAP ACLs:: Limiting/enabling other users access to a mailbox. * Expunging mailboxes:: Equivalent of a ``compress mailbox'' button. -* A note on namespaces:: How to (not) use IMAP namespace in Gnus. +* A note on namespaces:: How to (not) use @acronym{IMAP} namespace in Gnus. @end menu @@ -15994,8 +16015,8 @@ variable @code{nntp-authinfo-file} for exact syntax; also see Splitting is something Gnus users has loved and used for years, and now the rest of the world is catching up. Yeah, dream on, not many -@sc{imap} server has server side splitting and those that have splitting -seem to use some non-standard protocol. This means that @sc{imap} +@acronym{IMAP} server has server side splitting and those that have splitting +seem to use some non-standard protocol. This means that @acronym{IMAP} support for Gnus has to do it's own splitting. And it does. @@ -16020,7 +16041,7 @@ Nnmail equivalent: @code{nnmail-crosspost}. @cindex inbox @vindex nnimap-split-inbox -A string or a list of strings that gives the name(s) of @sc{imap} +A string or a list of strings that gives the name(s) of @acronym{IMAP} mailboxes to split from. Defaults to @code{nil}, which means that splitting is disabled! @@ -16039,7 +16060,7 @@ New mail found in @code{nnimap-split-inbox} will be split according to this variable. This variable contains a list of lists, where the first element in the -sublist gives the name of the @sc{imap} mailbox to move articles +sublist gives the name of the @acronym{IMAP} mailbox to move articles matching the regexp in the second element in the sublist. Got that? Neither did I, we need examples. @@ -16117,7 +16138,7 @@ Nnmail equivalent: @code{nnmail-split-methods}. Mail matching this predicate in @code{nnimap-split-inbox} will be split, it is a string and the default is @samp{UNSEEN UNDELETED}. -This might be useful if you use another @sc{imap} client to read mail in +This might be useful if you use another @acronym{IMAP} client to read mail in your inbox but would like Gnus to split all articles in the inbox regardless of readedness. Then you might change this to @samp{UNDELETED}. @@ -16162,13 +16183,13 @@ splitting function that analyses the body to split the article. Even though @code{nnimap} is not a proper @code{nnmail} derived back end, it supports most features in regular expiring (@pxref{Expiring -Mail}). Unlike splitting in IMAP (@pxref{Splitting in IMAP}) it do -not clone the @code{nnmail} variables (i.e., creating +Mail}). Unlike splitting in @acronym{IMAP} (@pxref{Splitting in +IMAP}) it does not clone the @code{nnmail} variables (i.e., creating @var{nnimap-expiry-wait}) but reuse the @code{nnmail} variables. What follows below are the variables used by the @code{nnimap} expiry process. -A note on how the expire mark is stored on the @sc{imap} server is +A note on how the expire mark is stored on the @acronym{IMAP} server is appropriate here as well. The expire mark is translated into a @code{imap} client specific mark, @code{gnus-expire}, and stored on the message. This means that likely only Gnus will understand and treat @@ -16189,7 +16210,7 @@ number, the symbol @code{immediate} or @code{never}. This variable is supported, and internally implemented by calling the @code{nnmail} functions that handle this. It contains an optimization -that if the destination is a IMAP group on the same server, the +that if the destination is a @acronym{IMAP} group on the same server, the article is copied instead of appended (that is, uploaded again). @end table @@ -16198,13 +16219,13 @@ article is copied instead of appended (that is, uploaded again). @subsection Editing IMAP ACLs @cindex editing imap acls @cindex Access Control Lists -@cindex Editing @sc{imap} ACLs +@cindex Editing @acronym{IMAP} ACLs @kindex G l @findex gnus-group-nnimap-edit-acl -ACL stands for Access Control List. ACLs are used in @sc{imap} for +ACL stands for Access Control List. ACLs are used in @acronym{IMAP} for limiting (or enabling) other users access to your mail boxes. Not all -@sc{imap} servers support this, this function will give an error if it +@acronym{IMAP} servers support this, this function will give an error if it doesn't. To edit a ACL for a mailbox, type @kbd{G l} @@ -16221,7 +16242,7 @@ follow the list without subscribing to it. @item At least with the Cyrus server, you are required to give the user ``anyone'' posting ("p") capabilities to have ``plussing'' work (that is, -mail sent to user+mailbox@@domain ending up in the @sc{imap} mailbox +mail sent to user+mailbox@@domain ending up in the @acronym{IMAP} mailbox INBOX.mailbox). @end itemize @@ -16246,8 +16267,8 @@ delete them. @cindex IMAP namespace @cindex namespaces -The IMAP protocol has a concept called namespaces, described by the -following text in the RFC: +The @acronym{IMAP} protocol has a concept called namespaces, described +by the following text in the RFC: @example 5.1.2. Mailbox Namespace Naming Convention @@ -16265,20 +16286,21 @@ following text in the RFC: to a different object (e.g. a user's private mailbox). @end example -While there is nothing in this text that warrants concern for the IMAP -implementation in Gnus, some servers use namespace prefixes in a way -that does not work with how Gnus uses mailbox names. - -Specifically, University of Washington's IMAP server uses mailbox -names like @code{#driver.mbx/read-mail} which are valid only in the -@sc{create} and @sc{append} commands. After the mailbox is created -(or a messages is appended to a mailbox), it must be accessed without -the namespace prefix, i.e. @code{read-mail}. Since Gnus do not make it -possible for the user to guarantee that user entered mailbox names -will only be used with the CREATE and APPEND commands, you should -simply not use the namespace prefixed mailbox names in Gnus. - -See the UoW @sc{imapd} documentation for the @code{#driver.*/} prefix +While there is nothing in this text that warrants concern for the +@acronym{IMAP} implementation in Gnus, some servers use namespace +prefixes in a way that does not work with how Gnus uses mailbox names. + +Specifically, University of Washington's @acronym{IMAP} server uses +mailbox names like @code{#driver.mbx/read-mail} which are valid only +in the @sc{create} and @sc{append} commands. After the mailbox is +created (or a messages is appended to a mailbox), it must be accessed +without the namespace prefix, i.e. @code{read-mail}. Since Gnus do +not make it possible for the user to guarantee that user entered +mailbox names will only be used with the CREATE and APPEND commands, +you should simply not use the namespace prefixed mailbox names in +Gnus. + +See the UoW IMAPD documentation for the @code{#driver.*/} prefix for more information on how to use the prefixes. They are a power tool and should be used only if you are sure what the effects are. @@ -16318,7 +16340,7 @@ enter the @code{ange-ftp} file name @code{ange-ftp} or @code{efs} will actually allow you to read this directory over at @samp{sina} as a newsgroup. Distributed news ahoy! -@code{nndir} will use @sc{nov} files if they are present. +@code{nndir} will use @acronym{NOV} files if they are present. @code{nndir} is a ``read-only'' back end---you can't delete or expire articles with this method. You can use @code{nnmh} or @code{nnml} for @@ -16430,13 +16452,13 @@ Forwarded articles. Netscape mail boxes. @item mime-parts -@sc{mime} multipart messages. +@acronym{MIME} multipart messages. @item standard-digest The standard (RFC 1153) digest format. @item mime-digest -A @sc{mime} digest of messages. +A @acronym{MIME} digest of messages. @item lanl-gov-announce Announcement messages from LANL Gov Announce. @@ -16629,14 +16651,14 @@ To hook your own document definition into @code{nndoc}, use the @code{nndoc-add-type} function. It takes two parameters---the first is the definition itself and the second (optional) parameter says where in the document type definition alist to put this definition. -The alist is traversed sequentially, and @code{nndoc-TYPE-type-p} is -called for a given type @code{TYPE}. So @code{nndoc-mmdf-type-p} is -called to see whether a document is of @code{mmdf} type, and so on. -These type predicates should return @code{nil} if the document is not -of the correct type; @code{t} if it is of the correct type; and a -number if the document might be of the correct type. A high number -means high probability; a low number means low probability with -@samp{0} being the lowest valid number. +The alist is traversed sequentially, and +@code{nndoc-@var{type}-type-p} is called for a given type @var{type}. +So @code{nndoc-mmdf-type-p} is called to see whether a document is of +@code{mmdf} type, and so on. These type predicates should return +@code{nil} if the document is not of the correct type; @code{t} if it +is of the correct type; and a number if the document might be of the +correct type. A high number means high probability; a low number +means low probability with @samp{0} being the lowest valid number. @node SOUP @@ -17105,9 +17127,9 @@ inherited. @cindex nnkiboze @cindex kibozing -@dfn{Kibozing} is defined by @sc{oed} as ``grepping through (parts of) +@dfn{Kibozing} is defined by @acronym{oed} as ``grepping through (parts of) the news feed''. @code{nnkiboze} is a back end that will do this for -you. Oh joy! Now you can grind any @sc{nntp} server down to a halt +you. Oh joy! Now you can grind any @acronym{NNTP} server down to a halt with useless requests! Oh happiness! @kindex G k (Group) @@ -17116,25 +17138,25 @@ buffer. The address field of the @code{nnkiboze} method is, as with @code{nnvirtual}, a regexp to match groups to be ``included'' in the -@code{nnkiboze} group. That's where most similarities between @code{nnkiboze} -and @code{nnvirtual} end. +@code{nnkiboze} group. That's where most similarities between +@code{nnkiboze} and @code{nnvirtual} end. -In addition to this regexp detailing component groups, an @code{nnkiboze} group -must have a score file to say what articles are to be included in -the group (@pxref{Scoring}). +In addition to this regexp detailing component groups, an +@code{nnkiboze} group must have a score file to say what articles are +to be included in the group (@pxref{Scoring}). @kindex M-x nnkiboze-generate-groups @findex nnkiboze-generate-groups You must run @kbd{M-x nnkiboze-generate-groups} after creating the -@code{nnkiboze} groups you want to have. This command will take time. Lots of -time. Oodles and oodles of time. Gnus has to fetch the headers from -all the articles in all the component groups and run them through the -scoring process to determine if there are any articles in the groups -that are to be part of the @code{nnkiboze} groups. +@code{nnkiboze} groups you want to have. This command will take time. +Lots of time. Oodles and oodles of time. Gnus has to fetch the +headers from all the articles in all the component groups and run them +through the scoring process to determine if there are any articles in +the groups that are to be part of the @code{nnkiboze} groups. Please limit the number of component groups by using restrictive regexps. Otherwise your sysadmin may become annoyed with you, and the -@sc{nntp} site may throw you off and never let you back in again. +@acronym{NNTP} site may throw you off and never let you back in again. Stranger things have happened. @code{nnkiboze} component groups do not have to be alive---they can be dead, @@ -17143,12 +17165,12 @@ and they can be foreign. No restrictions. @vindex nnkiboze-directory The generation of an @code{nnkiboze} group means writing two files in @code{nnkiboze-directory}, which is @file{~/News/} by default. One -contains the @sc{nov} header lines for all the articles in the group, +contains the @acronym{NOV} header lines for all the articles in the group, and the other is an additional @file{.newsrc} file to store information on what groups have been searched through to find component articles. Articles marked as read in the @code{nnkiboze} group will have -their @sc{nov} lines removed from the @sc{nov} file. +their @acronym{NOV} lines removed from the @acronym{NOV} file. @node Gnus Unplugged @@ -17188,7 +17210,7 @@ Of course, to use it as such, you have to learn a few new commands. * Agent as Cache:: The Agent is a big cache too. * Agent Expiry:: How to make old articles go away. * Agent Regeneration:: How to recover from lost connections and other accidents. -* Agent and IMAP:: How to use the Agent with IMAP. +* Agent and IMAP:: How to use the Agent with @acronym{IMAP}. * Outgoing Messages:: What happens when you post/mail something? * Agent Variables:: Customizing is fun. * Example Setup:: An example @file{~/.gnus.el} file for offline people. @@ -17991,7 +18013,7 @@ recommended that you first close all summary buffers. @findex gnus-agent-regenerate-group @kindex M-x gnus-agent-regenerate-group The command @code{gnus-agent-regenerate-group} uses the local copies -of individual articles to repair the local NOV(header) database. It +of individual articles to repair the local @acronym{NOV}(header) database. It then updates the internal data structures that document which articles are stored locally. An optional argument will mark articles in the agent as unread. @@ -18000,12 +18022,12 @@ agent as unread. @subsection Agent and IMAP The Agent works with any Gnus back end, including nnimap. However, -since there are some conceptual differences between @sc{nntp} and -@sc{imap}, this section (should) provide you with some information to -make Gnus Agent work smoother as a @sc{imap} Disconnected Mode client. +since there are some conceptual differences between @acronym{NNTP} and +@acronym{IMAP}, this section (should) provide you with some information to +make Gnus Agent work smoother as a @acronym{IMAP} Disconnected Mode client. The first thing to keep in mind is that all flags (read, ticked, etc) -are kept on the @sc{imap} server, rather than in @file{.newsrc} as is the +are kept on the @acronym{IMAP} server, rather than in @file{.newsrc} as is the case for nntp. Thus Gnus need to remember flag changes when disconnected, and synchronize these flags when you plug back in. @@ -18027,7 +18049,7 @@ re-connect, you can do it manually with the in the group buffer. Some things are currently not implemented in the Agent that you'd might -expect from a disconnected @sc{imap} client, including: +expect from a disconnected @acronym{IMAP} client, including: @itemize @bullet @@ -18093,7 +18115,7 @@ Hook run when finished fetching articles. @item gnus-agent-cache @vindex gnus-agent-cache -Variable to control whether use the locally stored @sc{nov} and +Variable to control whether use the locally stored @acronym{NOV} and articles when plugged, e.g. essentially using the Agent as a cache. The default is non-@code{nil}, which means to use the Agent as a cache. @@ -18167,20 +18189,20 @@ setup, you may be able to use something like the following as your @file{~/.gnus.el} file to get started. @lisp -;;; Define how Gnus is to fetch news. We do this over @sc{nntp} -;;; from your ISP's server. +;;; @r{Define how Gnus is to fetch news. We do this over @acronym{NNTP}} +;;; @r{from your ISP's server.} (setq gnus-select-method '(nntp "news.your-isp.com")) -;;; Define how Gnus is to read your mail. We read mail from -;;; your ISP's POP server. +;;; @r{Define how Gnus is to read your mail. We read mail from} +;;; @r{your ISP's @acronym{POP} server.} (setq mail-sources '((pop :server "pop.your-isp.com"))) -;;; Say how Gnus is to store the mail. We use nnml groups. +;;; @r{Say how Gnus is to store the mail. We use nnml groups.} (setq gnus-secondary-select-methods '((nnml ""))) -;;; Make Gnus into an offline newsreader. -;;; (gnus-agentize) ; The obsolete setting. -;;; (setq gnus-agent t) ; Now the default. +;;; @r{Make Gnus into an offline newsreader.} +;;; (gnus-agentize) ; @r{The obsolete setting.} +;;; (setq gnus-agent t) ; @r{Now the default.} @end lisp That should be it, basically. Put that in your @file{~/.gnus.el} file, @@ -18190,7 +18212,7 @@ gnus}. If this is the first time you've run Gnus, you will be subscribed automatically to a few default newsgroups. You'll probably want to subscribe to more groups, and to do that, you have to query the -@sc{nntp} server for a complete list of groups with the @kbd{A A} +@acronym{NNTP} server for a complete list of groups with the @kbd{A A} command. This usually takes quite a while, but you only have to do it once. @@ -18438,7 +18460,7 @@ Score on the @code{Message-ID} header. @item e Score on an ``extra'' header, that is, one of those in gnus-extra-headers, -if your @sc{nntp} server tracks additional header data in overviews. +if your @acronym{NNTP} server tracks additional header data in overviews. @item f Score on followups---this matches the author name, and adds scores to @@ -18602,7 +18624,7 @@ variable to @code{t} to do that. (It is @code{t} by default.) @item gnus-kill-files-directory @vindex gnus-kill-files-directory All kill and score files will be stored in this directory, which is -initialized from the @code{SAVEDIR} environment variable by default. +initialized from the @env{SAVEDIR} environment variable by default. This is @file{~/News/} by default. @item gnus-score-file-suffix @@ -18735,10 +18757,10 @@ Function called with the name of the score file just written. @item gnus-score-thread-simplify @vindex gnus-score-thread-simplify -If this variable is non-@code{nil}, article subjects will be simplified -for subject scoring purposes in the same manner as with +If this variable is non-@code{nil}, article subjects will be +simplified for subject scoring purposes in the same manner as with threading---according to the current value of -gnus-simplify-subject-functions. If the scoring entry uses +@code{gnus-simplify-subject-functions}. If the scoring entry uses @code{substring} or @code{exact} matching, the match will also be simplified in this manner. @@ -18853,7 +18875,7 @@ gnus-extra-headers, you can score on these headers' values. In this case, there is a 5th element in the score entry, being the name of the header to be scored. The following entry is useful in your @file{all.SCORE} file in case of spam attacks from a single origin host, -if your @sc{nntp} server tracks NNTP-Posting-Host in overviews: +if your @acronym{NNTP} server tracks NNTP-Posting-Host in overviews: @lisp ("111.222.333.444" -1000 nil s "NNTP-Posting-Host") @@ -19309,9 +19331,9 @@ their own home score files: @lisp (setq gnus-home-score-file - ;; All groups that match the regexp "\\.emacs" + ;; @r{All groups that match the regexp @code{"\\.emacs"}} '(("\\.emacs" "emacs.SCORE") - ;; All the comp groups in one score file + ;; @r{All the comp groups in one score file} ("^comp" "comp.SCORE"))) @end lisp @@ -19592,7 +19614,7 @@ Other programs use a totally different kill file syntax. If Gnus encounters what looks like a @code{rn} kill file, it will take a stab at interpreting it. -Two summary functions for editing a GNUS kill file: +Two summary functions for editing a @sc{gnus} kill file: @table @kbd @@ -19680,7 +19702,7 @@ before. @section GroupLens @cindex GroupLens -GroupLens (@uref{http://www.cs.umn.edu/Research/GroupLens/}) is a +@uref{http://www.cs.umn.edu/Research/GroupLens/, GroupLens} is a collaborative filtering system that helps you work together with other people to find the quality news articles out of the huge volume of news articles generated every day. @@ -19709,10 +19731,9 @@ so this section is mostly of historical interest. @node Using GroupLens @subsection Using GroupLens -To use GroupLens you must register a pseudonym with your local Better -Bit Bureau (BBB). -@uref{http://www.cs.umn.edu/Research/GroupLens/bbb.html} is the only -better bit in town at the moment. +To use GroupLens you must register a pseudonym with your local +@uref{http://www.cs.umn.edu/Research/GroupLens/bbb.html, Better Bit +Bureau (BBB)} is the only better bit in town at the moment. Once you have registered you'll need to set a couple of variables. @@ -20483,19 +20504,19 @@ paragraph.) Here's an alternative recipe for the group buffer: @lisp -;; Create three face types. +;; @r{Create three face types.} (setq gnus-face-1 'bold) (setq gnus-face-3 'italic) -;; We want the article count to be in -;; a bold and green face. So we create -;; a new face called `my-green-bold'. +;; @r{We want the article count to be in} +;; @r{a bold and green face. So we create} +;; @r{a new face called @code{my-green-bold}.} (copy-face 'bold 'my-green-bold) -;; Set the color. +;; @r{Set the color.} (set-face-foreground 'my-green-bold "ForestGreen") (setq gnus-face-2 'my-green-bold) -;; Set the new & fancy format. +;; @r{Set the new & fancy format.} (setq gnus-group-line-format "%M%S%3@{%5y%@}%2[:%] %(%1@{%g%@}%)\n") @end lisp @@ -20533,7 +20554,7 @@ strings. However, when combining various strings of different size, it can often be more convenient to just output the strings, and then worry about lining up the following text afterwards. -To do that, Gnus supplies tabulator specs--@samp{%=}. There are two +To do that, Gnus supplies tabulator specs---@samp{%=}. There are two different types---@dfn{hard tabulators} and @dfn{soft tabulators}. @samp{%50=} will insert space characters to pad the line up to column @@ -21106,8 +21127,8 @@ been idle for thirty minutes: (gnus-demon-close-connections nil 30) @end lisp -Here's a handler that scans for PGP headers every hour when Emacs is -idle: +Here's a handler that scans for @acronym{PGP} headers every hour when +Emacs is idle: @lisp (gnus-demon-scan-pgp 60 t) @@ -21804,7 +21825,7 @@ processing, for instance DCC implements such a system. In essence, @code{N} systems around the world agree that a machine @samp{X} in China, Ghana, or California is sending out spam e-mail, and these @code{N} systems enter @samp{X} or the spam e-mail from @samp{X} into -a database. The criteria for spam detection vary - it may be the +a database. The criteria for spam detection vary---it may be the number of messages sent, the content of the messages, and so on. When a user of the distributed processing system wants to find out if a message is spam, he consults one of those @code{N} systems. @@ -21867,7 +21888,7 @@ This says that all mail to this address is suspect, but if it has a header, it's probably ok. All the rest goes to the @samp{spam} group. (This idea probably comes from Tim Pierce.) -In addition, many mail spammers talk directly to your @sc{smtp} server +In addition, many mail spammers talk directly to your @acronym{SMTP} server and do not include your email address explicitly in the @code{To} header. Why they do this is unknown---perhaps it's to thwart this thwarting scheme? In any case, this is trivial to deal with---you just @@ -22205,10 +22226,10 @@ but you can customize it. The boolean variable @code{nnimap-split-download-body} needs to be set, if you want to split based on the whole message instead of just the headers. By default, the nnimap backend will only retrieve the -message headers. If you use spam-check-bogofilter, spam-check-ifile, -or spam-check-stat (the splitters that can benefit from the full -message body), you should set this variable. It is not set by default -because it will slow IMAP down. +message headers. If you use @code{spam-check-bogofilter}, +@code{spam-check-ifile}, or @code{spam-check-stat} (the splitters that +can benefit from the full message body), you should set this variable. +It is not set by default because it will slow @acronym{IMAP} down. @xref{Splitting in IMAP}. @@ -22652,19 +22673,19 @@ functionality @lisp (defun spam-blackbox-register-spam-routine () (spam-generic-register-routine - ;; the spam function + ;; @r{the spam function} (lambda (article) (let ((from (spam-fetch-field-from-fast article))) (when (stringp from) (blackbox-do-something-with-this-spammer from)))) - ;; the ham function + ;; @r{the ham function} nil)) (defun spam-blackbox-register-ham-routine () (spam-generic-register-routine - ;; the spam function + ;; @r{the spam function} nil - ;; the ham function + ;; @r{the ham function} (lambda (article) (let ((from (spam-fetch-field-from-fast article))) (when (stringp from) @@ -22751,14 +22772,14 @@ the the group @samp{nnml:mail.spam}), and you would call @file{~/Mail/mail/misc} (this usually corresponds the the group @samp{nnml:mail.misc}). -When you are using IMAP, you won't have the mails available locally, -so that will not work. One solution is to use the Gnus Agent to cache -the articles. Then you can use directories such as +When you are using @acronym{IMAP}, you won't have the mails available +locally, so that will not work. One solution is to use the Gnus Agent +to cache the articles. Then you can use directories such as @file{"~/News/agent/nnimap/mail.yourisp.com/personal_spam"} for @code{spam-stat-process-spam-directory}. @xref{Agent as Cache}. @defvar spam-stat -This variable holds the hash-table with all the statistics -- the +This variable holds the hash-table with all the statistics---the dictionary we have been talking about. For every word in either collection, this hash-table stores a vector describing how often the word appeared in spam and often it appeared in non-spam mails. @@ -22969,7 +22990,7 @@ variable, which defaults to @file{~/}. @item gnus-directory @vindex gnus-directory Most Gnus storage file and directory variables will be initialized from -this variable, which defaults to the @samp{SAVEDIR} environment +this variable, which defaults to the @env{SAVEDIR} environment variable, or @file{~/News/} if that variable isn't set. Note that gnus is mostly loaded when the @file{.gnus.el} file is read. @@ -23057,7 +23078,7 @@ names who could possibly mess up Gnus internally (like allowing @samp{:} in a group name, which is normally used to delimit method and group). -@sc{imap} users might want to allow @samp{/} in group names though. +@acronym{IMAP} users might want to allow @samp{/} in group names though. @end table @@ -23203,13 +23224,13 @@ released version of Gnus and snuggle up to that instead. In addition to the versions of Gnus which have had their releases coordinated by Lars, one major development has been Semi-gnus from -Japan. It's based on a library called @sc{semi}, which provides -@sc{mime} capabilities. +Japan. It's based on a library called @acronym{SEMI}, which provides +@acronym{MIME} capabilities. These Gnusae are based mainly on Gnus 5.6 and Pterodactyl Gnus. Collectively, they are called ``Semi-gnus'', and different strains are called T-gnus, ET-gnus, Nana-gnus and Chaos. These provide powerful -@sc{mime} and multilingualization things, especially important for +@acronym{MIME} and multilingualization things, especially important for Japanese users. @@ -23355,7 +23376,7 @@ look into implementing the changes when the draft is accepted as an RFC. @item MIME - RFC 2045-2049 etc @cindex MIME -All the various @sc{mime} RFCs are supported. +All the various @acronym{MIME} RFCs are supported. @item Disposition Notifications - RFC 2298 Message Mode is able to request notifications from the receiver. @@ -23363,27 +23384,29 @@ Message Mode is able to request notifications from the receiver. @item PGP - RFC 1991 and RFC 2440 @cindex RFC 1991 @cindex RFC 2440 -RFC 1991 is the original PGP message specification, published as a -Information RFC. RFC 2440 was the follow-up, now called Open PGP, and -put on the Standards Track. Both document a non-@sc{mime} aware PGP -format. Gnus supports both encoding (signing and encryption) and -decoding (verification and decryption). +RFC 1991 is the original @acronym{PGP} message specification, +published as a Information RFC. RFC 2440 was the follow-up, now +called Open PGP, and put on the Standards Track. Both document a +non-@acronym{MIME} aware @acronym{PGP} format. Gnus supports both +encoding (signing and encryption) and decoding (verification and +decryption). @item PGP/MIME - RFC 2015/3156 RFC 2015 (superseded by 3156 which references RFC 2440 instead of RFC -1991) describes the @sc{mime}-wrapping around the RF 1991/2440 format. +1991) describes the @acronym{MIME}-wrapping around the RF 1991/2440 format. Gnus supports both encoding and decoding. @item S/MIME - RFC 2633 -RFC 2633 describes the @sc{s/mime} format. +RFC 2633 describes the @acronym{S/MIME} format. @item IMAP - RFC 1730/2060, RFC 2195, RFC 2086, RFC 2359, RFC 2595, RFC 1731 -RFC 1730 is @sc{imap} version 4, updated somewhat by RFC 2060 (@sc{imap} 4 -revision 1). RFC 2195 describes CRAM-MD5 authentication for @sc{imap}. RFC -2086 describes access control lists (ACLs) for @sc{imap}. RFC 2359 -describes a @sc{imap} protocol enhancement. RFC 2595 describes the proper -TLS integration (STARTTLS) with @sc{imap}. RFC 1731 describes the -GSSAPI/Kerberos4 mechanisms for @sc{imap}. +RFC 1730 is @acronym{IMAP} version 4, updated somewhat by RFC 2060 +(@acronym{IMAP} 4 revision 1). RFC 2195 describes CRAM-MD5 +authentication for @acronym{IMAP}. RFC 2086 describes access control +lists (ACLs) for @acronym{IMAP}. RFC 2359 describes a @acronym{IMAP} +protocol enhancement. RFC 2595 describes the proper @acronym{TLS} +integration (STARTTLS) with @acronym{IMAP}. RFC 1731 describes the +GSSAPI/Kerberos4 mechanisms for @acronym{IMAP}. @end table @@ -23486,7 +23509,7 @@ Masanobu @sc{Umeda}---the writer of the original @sc{gnus}. @item Shenghuo Zhu---uudecode.el, mm-uu.el, rfc1843.el, webmail.el, -nnwarchive and many, many other things connected with @sc{mime} and +nnwarchive and many, many other things connected with @acronym{MIME} and other types of en/decoding, as well as general bug fixing, new functionality and stuff. @@ -23501,7 +23524,7 @@ Luis Fernandes---design and graphics. Joe Reiss---creator of the smiley faces. @item -Justin Sheehy--the FAQ maintainer. +Justin Sheehy--the @acronym{FAQ} maintainer. @item Erik Naggum---help, ideas, support, code and stuff. @@ -23820,7 +23843,7 @@ The look of all buffers can be changed by setting format-like variables (@pxref{Group Buffer Format} and @pxref{Summary Buffer Format}). @item -Local spool and several @sc{nntp} servers can be used at once +Local spool and several @acronym{NNTP} servers can be used at once (@pxref{Select Methods}). @item @@ -23900,7 +23923,7 @@ Fetching parents (and other articles) now actually works without glitches (@pxref{Finding the Parent}). @item -Gnus can fetch FAQs and group descriptions (@pxref{Group Information}). +Gnus can fetch @acronym{FAQ}s and group descriptions (@pxref{Group Information}). @item Digests (and other files) can be used as the basis for groups @@ -24274,7 +24297,7 @@ Process mark sets can be pushed and popped (@pxref{Setting Process Marks}). @item -A new mail-to-news back end makes it possible to post even when the @sc{nntp} +A new mail-to-news back end makes it possible to post even when the @acronym{NNTP} server doesn't allow posting (@pxref{Mail-To-News Gateways}). @item @@ -24404,7 +24427,7 @@ text---@kbd{W d}. @item @code{nntp} now uses @file{~/.authinfo}, a @file{.netrc}-like file, for -controlling where and how to send @sc{authinfo} to @sc{nntp} servers. +controlling where and how to send @sc{authinfo} to @acronym{NNTP} servers. @item A command for editing group parameters from the summary buffer @@ -24479,7 +24502,7 @@ More information is available in the info doc at Select Methods -> Getting Mail -> Mail Sources @item -Gnus is now a @sc{mime}-capable reader. This affects many parts of +Gnus is now a @acronym{MIME}-capable reader. This affects many parts of Gnus, and adds a slew of new commands. See the manual for details. @item @@ -24492,7 +24515,7 @@ called to position point. @item The user can now decide which extra headers should be included in -summary buffers and @sc{nov} files. +summary buffers and @acronym{NOV} files. @item @code{gnus-article-display-hook} has been removed. Instead, a number @@ -24508,7 +24531,7 @@ New web-based back ends have been added: @code{nnslashdot}, again, to keep up with ever-changing layouts. @item -Gnus can now read @sc{imap} mail via @code{nnimap}. +Gnus can now read @acronym{IMAP} mail via @code{nnimap}. @end itemize @@ -24606,7 +24629,7 @@ reference manual as source material. It would look quite differently. @item news @cindex news This is what you are supposed to use this thing for---reading news. -News is generally fetched from a nearby @sc{nntp} server, and is +News is generally fetched from a nearby @acronym{NNTP} server, and is generally publicly available to everybody. If you post news, the entire world is likely to read just what you have written, and they'll all snigger mischievously. Behind your back. @@ -24631,20 +24654,21 @@ are reading. @cindex back end Gnus considers mail and news to be mostly the same, really. The only difference is how to access the actual articles. News articles are -commonly fetched via the protocol NNTP, whereas mail messages could be -read from a file on the local disk. The internal architecture of Gnus -thus comprises a `front end' and a number of `back ends'. Internally, -when you enter a group (by hitting @key{RET}, say), you thereby invoke -a function in the front end in Gnus. The front end then `talks' to a -back end and says things like ``Give me the list of articles in the foo -group'' or ``Show me article number 4711''. - -So a back end mainly defines either a protocol (the @code{nntp} back end -accesses news via NNTP, the @code{nnimap} back end accesses mail via -IMAP) or a file format and directory layout (the @code{nnspool} back end -accesses news via the common `spool directory' format, the @code{nnml} -back end access mail via a file format and directory layout that's -quite similar). +commonly fetched via the protocol @acronym{NNTP}, whereas mail +messages could be read from a file on the local disk. The internal +architecture of Gnus thus comprises a `front end' and a number of +`back ends'. Internally, when you enter a group (by hitting +@key{RET}, say), you thereby invoke a function in the front end in +Gnus. The front end then `talks' to a back end and says things like +``Give me the list of articles in the foo group'' or ``Show me article +number 4711''. + +So a back end mainly defines either a protocol (the @code{nntp} back +end accesses news via @acronym{NNTP}, the @code{nnimap} back end +accesses mail via @acronym{IMAP}) or a file format and directory +layout (the @code{nnspool} back end accesses news via the common +`spool directory' format, the @code{nnml} back end access mail via a +file format and directory layout that's quite similar). Gnus does not handle the underlying media, so to speak---this is all done by the back ends. A back end is a collection of functions to @@ -24700,9 +24724,9 @@ A line from the head of an article. @item headers @cindex headers A collection of such lines, or a collection of heads. Or even a -collection of @sc{nov} lines. +collection of @acronym{NOV} lines. -@item @sc{nov} +@item @acronym{NOV} @cindex nov When Gnus enters a group, it asks the back end for the headers of all unread articles in the group. Most servers support the News OverView @@ -24832,7 +24856,7 @@ for some quite common situations. If you run Emacs on a machine locally, and get your news from a machine over some very thin strings, you want to cut down on the amount of data -Gnus has to get from the @sc{nntp} server. +Gnus has to get from the @acronym{NNTP} server. @table @code @@ -24845,7 +24869,7 @@ doesn't suddenly decide to fetch the active file anyway. @item gnus-nov-is-evil This one has to be @code{nil}. If not, grabbing article headers from -the @sc{nntp} server will not be very fast. Not all @sc{nntp} servers +the @acronym{NNTP} server will not be very fast. Not all @acronym{NNTP} servers support @sc{xover}; Gnus will detect this by itself. @end table @@ -24968,8 +24992,8 @@ something like @samp{NNTP 3.x} or @samp{nntp flee}, you have some old @file{.el} files lying around. Delete these. @item -Read the help group (@kbd{G h} in the group buffer) for a FAQ and a -how-to. +Read the help group (@kbd{G h} in the group buffer) for a +@acronym{FAQ} and a how-to. @item @vindex max-lisp-eval-depth @@ -25213,7 +25237,7 @@ Prompts the user for a select method. @node Back End Interface @subsection Back End Interface -Gnus doesn't know anything about @sc{nntp}, spools, mail or virtual +Gnus doesn't know anything about @acronym{NNTP}, spools, mail or virtual groups. It only knows how to talk to @dfn{virtual servers}. A virtual server is a @dfn{back end} and some @dfn{back end variables}. As examples of the first, we have @code{nntp}, @code{nnspool} and @code{nnmbox}. As @@ -25258,7 +25282,7 @@ return value. Some back ends could be said to be @dfn{server-forming} back ends, and some might be said not to be. The latter are back ends that generally only operate on one group at a time, and have no concept of ``server'' --- they have a group, and they deliver info on that group and nothing +---they have a group, and they deliver info on that group and nothing more. Gnus identifies each message by way of group name and article number. A @@ -25311,10 +25335,10 @@ In the examples and definitions I will refer to the imaginary back end sequences (lists) of article numbers, and most back ends do not support retrieval of @code{Message-ID}s. But they should try for both. -The result data should either be HEADs or @sc{nov} lines, and the result +The result data should either be HEADs or @acronym{NOV} lines, and the result value should either be @code{headers} or @code{nov} to reflect this. This might later be expanded to @code{various}, which will be a mixture -of HEADs and @sc{nov} lines, but this is currently not supported by Gnus. +of HEADs and @acronym{NOV} lines, but this is currently not supported by Gnus. If @var{fetch-old} is non-@code{nil} it says to try fetching ``extra headers'', in some meaning of the word. This is generally done by @@ -25576,7 +25600,7 @@ There should be no result data from this function. Set/remove/add marks on articles. Normally Gnus handles the article marks (such as read, ticked, expired etc) internally, and store them in -@file{~/.newsrc.eld}. Some back ends (such as @sc{imap}) however carry +@file{~/.newsrc.eld}. Some back ends (such as @acronym{IMAP}) however carry all information about the articles on the server, so Gnus need to propagate the mark information to the server. @@ -25633,11 +25657,12 @@ There should be no result data from this function. This function may be called at any time (by Gnus or anything else) to request that the back end check for incoming articles, in one way or -another. A mail back end will typically read the spool file or query the -POP server when this function is invoked. The @var{group} doesn't have -to be heeded---if the back end decides that it is too much work just -scanning for a single group, it may do a total scan of all groups. It -would be nice, however, to keep things local if that's practical. +another. A mail back end will typically read the spool file or query +the @acronym{POP} server when this function is invoked. The +@var{group} doesn't have to be heeded---if the back end decides that +it is too much work just scanning for a single group, it may do a +total scan of all groups. It would be nice, however, to keep things +local if that's practical. There should be no result data from this function. @@ -25899,10 +25924,10 @@ defined now. Below is a slightly shortened version of the @code{nndir} back end. @lisp -;;; nndir.el --- single directory newsgroup access for Gnus -;; Copyright (C) 1995,96 Free Software Foundation, Inc. +;;; @r{nndir.el --- single directory newsgroup access for Gnus} +;; @r{Copyright (C) 1995,96 Free Software Foundation, Inc.} -;;; Code: +;;; @r{Code:} (require 'nnheader) (require 'nnmh) @@ -25930,7 +25955,7 @@ Below is a slightly shortened version of the @code{nndir} back end. (defvoo nndir-status-string "" nil nnmh-status-string) (defconst nndir-version "nndir 1.0") -;;; Interface functions. +;;; @r{Interface functions.} (nnoo-define-basics nndir) @@ -26143,8 +26168,8 @@ manual (@pxref{Score File Format}). @subsection Headers Internally Gnus uses a format for storing article headers that -corresponds to the @sc{nov} format in a mysterious fashion. One could -almost suspect that the author looked at the @sc{nov} specification and +corresponds to the @acronym{NOV} format in a mysterious fashion. One could +almost suspect that the author looked at the @acronym{NOV} specification and just shamelessly @emph{stole} the entire thing, and one would be right. @dfn{Header} is a severely overloaded term. ``Header'' is used in diff --git a/texi/message-ja.texi b/texi/message-ja.texi index ebd985d..20142f2 100644 --- a/texi/message-ja.texi +++ b/texi/message-ja.texi @@ -1,4 +1,4 @@ -\input texinfo +A\input texinfo @setfilename message-ja @settitle T-gnus 6.15 Message Manual @@ -336,11 +336,11 @@ constructed. The default value is @code{nil}. @item message-forward-as-mime @vindex message-forward-as-mime If this variable is @code{t} (the default), forwarded messages are -included as inline @sc{mime} RFC822 parts. If it's @code{nil}, forwarded +included as inline @acronym{MIME} RFC822 parts. If it's @code{nil}, forwarded messages will just be copied inline to the new message, like previous, -non @sc{mime}-savvy versions of gnus would do. -@end ignore +non @acronym{MIME}-savvy versions of gnus would do. +@end ignore @item message-forward-before-signature @vindex message-forward-before-signature $BHs(B-@code{nil} $B$@$C$?$i=pL>$NA0$K!"$=$l0J30$@$C$?$i8e$K!"E>Aw$9$k%a%C%;!<(B @@ -526,7 +526,8 @@ MFT $B$rB:=E$9$k$3$H$ONI$$%M%A%1%C%H(B (nettiquette) $B$G$"$k$H9M$($i$l$F$$$^ * Header Commands:: $B%X%C%@!<$K0\F0$^$?$O%X%C%@!<$rJQ99$9$k$?$a$NL?Na(B * Movement:: $B%a%C%;!<%8%P%C%U%!$rF0$-2s$k(B * Insertion:: $B%a%C%;!<%8%P%C%U%!$KJ*;v$rA^F~$9$k(B -@c * MIME:: @sc{mime} considerations. +@c * MIME:: @acronym{MIME} considerations. +* IDNA:: $BHs(B-@acronym{ASCII} $B%I%a%$%sL>$K4X$9$k9M;!(B @c * Security:: Signing and encrypting messages. * Various Commands:: $B$$$m$$$m$J;v(B * Sending:: $B(B +@cindex IDNA +@cindex internationalized domain names +@cindex non-ascii domain names + +Message $B$O(B @acronym{IDNA} $B$K=`5r$7$?Aw?.%(!<%8%'%s%H$G$9!#%f!<%6(B +$B$O(B @acronym{IDNA} $B$N$?$a$K0lHL$K$O2?$b$9$kI,MW$,$"$j$^$;$s!#(B +Message $B$O(B @code{From}$B!"(B@code{To} $B$*$h$S(B @code{Cc} $B%X%C%@!<$K$"$k(B +$BHs(B-@acronym{ASCII} $B%I%a%$%sL>$r<+F0E*$K%(%s%3!<%I$7$^$9!#(B + +$B$b$C$H(B @acronym{IDNA} $B$,M-L>$K$J$k$^$G$O!"(B +$B$r(B @acronym{IDNA} $B%(%s%3!<%I$9$Y$->l9g$G$b(B Message $B$O3NG'$r5a$a$^$9!#8=(B +$B:_$G$O%I%a%$%sL>$KHs(B-@acronym{ASCII} $BJ8;z$r4^$`$3$H$,$G$-$k$3$H$K%f!<%6(B +$B$N4v?M$+$O5$$E$$$F$$$J$$$+$b$7$l$J$$$N$G!"H`$i$,6vA3$K(B +$BHs(B-@acronym{ASCII} $B%I%a%$%sL>$r%?%$%W$7$F$7$^$C$?$H$-$N$?$a$K0BA4%M%C%H(B +$B$rD%$C$F$$$k$o$1$G$9!#(B + +@vindex message-use-idna +$BJQ?t(B @code{message-use-idna} $B$O(B @acronym{IDNA} $B$r;H$&$+$I$&$+$r@)8f$7$^(B +$B$9!#$3$NJQ?t$,(B @code{nil} $B$@$C$?$i(B @acronym{IDNA} $B%(%s%3!<%I$O9T$J$o$l$^(B +$B$;$s!#%7%s%\%k(B @code{ask} $B$K@_Dj$5$l$F$$$k(B ($B%G%#%U%)%k%H(B) $B$H%f!<%6$O3NG'(B +$B$r5a$a$i$l$^$9!#$=$7$F(B @code{t} $B$K@_Dj$5$l$F$$$k$H!"<+F0E*(B +$B$K(B @acronym{IDNA} $B%(%s%3!<%I$,9T$J$o$l$^$9!#(B + +@findex message-idna-to-ascii-rhs +$B$rF@$k$?$a$K(B) $B%a%C%;!<%8$NJT=8Cf(B +$B$K(B @kbd{M-x message-idna-to-ascii-rhs RET} $B$r%?%$%W$7$F2<$5$$!#(B + +$B$3$N5!G=$r;H$&$K$O(B @uref{http://www.gnu.org/software/libidn/, GNU +Libidn} $B$r%$%s%9%H!<%k$7$F$*$/I,MW$,$"$j$^$9!#(B + +@ignore @node Security @section Security @cindex Security @@ -860,8 +896,8 @@ Manual}). Using the MML language, Message is able to create digitally signed and digitally encrypted messages. Message (or rather MML) currently -support PGP (RFC 1991), @sc{pgp/mime} (RFC 2015/3156) and @sc{s/mime}. -Instructing MML to perform security operations on a @sc{mime} part is +support @acronym{PGP} (RFC 1991), @acronym{PGP/MIME} (RFC 2015/3156) and @acronym{S/MIME}. +Instructing MML to perform security operations on a @acronym{MIME} part is done using the @kbd{C-c C-m s} key map for signing and the @kbd{C-c C-m c} key map for encryption, as follows. @@ -871,37 +907,37 @@ C-m c} key map for encryption, as follows. @kindex C-c C-m s s @findex mml-secure-message-sign-smime -Digitally sign current message using @sc{s/mime}. +Digitally sign current message using @acronym{S/MIME}. @item C-c C-m s o @kindex C-c C-m s o @findex mml-secure-message-sign-pgp -Digitally sign current message using PGP. +Digitally sign current message using @acronym{PGP}. @item C-c C-m s p @kindex C-c C-m s p @findex mml-secure-message-sign-pgpmime -Digitally sign current message using @sc{pgp/mime}. +Digitally sign current message using @acronym{PGP/MIME}. @item C-c C-m c s @kindex C-c C-m c s @findex mml-secure-message-encrypt-smime -Digitally encrypt current message using @sc{s/mime}. +Digitally encrypt current message using @acronym{S/MIME}. @item C-c C-m c o @kindex C-c C-m c o @findex mml-secure-message-encrypt-pgp -Digitally encrypt current message using PGP. +Digitally encrypt current message using @acronym{PGP}. @item C-c C-m c p @kindex C-c C-m c p @findex mml-secure-message-encrypt-pgpmime -Digitally encrypt current message using @sc{pgp/mime}. +Digitally encrypt current message using @acronym{PGP/MIME}. @item C-c C-m C-n @kindex C-c C-m C-n @@ -914,9 +950,9 @@ These commands do not immediately sign or encrypt the message, they merely insert the proper MML secure tag to instruct the MML engine to perform that operation when the message is actually sent. They may perform other operations too, such as locating and retrieving a -@sc{s/mime} certificate of the person you wish to send encrypted mail +@acronym{S/MIME} certificate of the person you wish to send encrypted mail to. When the mml parsing engine converts your MML into a properly -encoded @sc{mime} message, the secure tag will be replaced with either +encoded @acronym{MIME} message, the secure tag will be replaced with either a part or a multipart tag. If your message contains other mml parts, a multipart tag will be used; if no other parts are present in your message a single part tag will be used. This way, message mode will @@ -925,13 +961,14 @@ do the Right Thing (TM) with signed/encrypted multipart messages. @vindex mml-signencrypt-style-alist By default, when encrypting a message, Gnus will use the ``signencrypt'' mode. If you would like to disable this for a particular message, -give the @code{mml-secure-message-encrypt-* command a prefix argument}. (for +give the @code{mml-secure-message-encrypt-*} command a prefix argument. (for example, @kbd{C-u C-c C-m c p}). Additionally, by default Gnus will separately sign, then encrypt a message which has the mode signencrypt. If you would like to change this behavior you can customize the @code{mml-signencrypt-style-alist} variable. For example: + @lisp (setq mml-signencrypt-style-alist '(("smime" combined) ("pgp" combined) @@ -941,7 +978,7 @@ example: Will cause Gnus to sign and encrypt in one pass, thus generating a single signed and encrypted part. Note that combined sign and encrypt does not work with all supported OpenPGP implementations (in -particular, PGP version 2 do not support this). +particular, @acronym{PGP} version 2 do not support this). Since signing and especially encryption often is used when sensitive information is sent, you may want to have some way to ensure that your @@ -952,8 +989,8 @@ verify that your long rant about what your ex-significant other or whomever actually did with that funny looking person at that strange party the other night, actually will be sent encrypted. -@emph{Note!} Neither @sc{pgp/mime} nor @sc{s/mime} encrypt/signs -RFC822 headers. They only operate on the @sc{mime} object. Keep this +@emph{Note!} Neither @acronym{PGP/MIME} nor @acronym{S/MIME} encrypt/signs +RFC822 headers. They only operate on the @acronym{MIME} object. Keep this in mind before sending mail with a sensitive Subject line. Actually using the security commands above is not very difficult. At @@ -964,33 +1001,33 @@ programs are required to make things work, and some small general hints. @subsection Using S/MIME @emph{Note!} This section assume you have a basic familiarity with -modern cryptography, @sc{s/mime}, various PKCS standards, OpenSSL and +modern cryptography, @acronym{S/MIME}, various PKCS standards, OpenSSL and so on. -The @sc{s/mime} support in Message (and MML) require OpenSSL. OpenSSL -perform the actual @sc{s/mime} sign/encrypt operations. OpenSSL can +The @acronym{S/MIME} support in Message (and MML) require OpenSSL. OpenSSL +perform the actual @acronym{S/MIME} sign/encrypt operations. OpenSSL can be found at @uref{http://www.openssl.org/}. OpenSSL 0.9.6 and later should work. Version 0.9.5a cannot extract mail addresses from -certificates, and it insert a spurious CR character into @sc{mime} +certificates, and it insert a spurious CR character into @acronym{MIME} separators so you may wish to avoid it if you would like to avoid being regarded as someone who send strange mail. (Although by sending -@sc{s/mime} messages you've probably already lost that contest.) +@acronym{S/MIME} messages you've probably already lost that contest.) To be able to send encrypted mail, a personal certificate is not required. Message (MML) need a certificate for the person to whom you wish to communicate with though. You're asked for this when you type @kbd{C-c C-m c s}. Currently there are two ways to retrieve this certificate, from a local file or from DNS. If you chose a local -file, it need to contain a X.509 certificate in PEM format. If you -chose DNS, you're asked for the domain name where the certificate is -stored, the default is a good guess. To my belief, Message (MML) is -the first mail agent in the world to support retrieving @sc{s/mime} -certificates from DNS, so you're not likely to find very many -certificates out there. At least there should be one, stored at the -domain @code{simon.josefsson.org}. LDAP is a more popular method of -distributing certificates, support for it is planned. (Meanwhile, you -can use @code{ldapsearch} from the command line to retrieve a -certificate into a file and use it.) +file, it need to contain a X.509 certificate in @acronym{PEM} format. +If you chose DNS, you're asked for the domain name where the +certificate is stored, the default is a good guess. To my belief, +Message (MML) is the first mail agent in the world to support +retrieving @acronym{S/MIME} certificates from DNS, so you're not +likely to find very many certificates out there. At least there +should be one, stored at the domain @code{simon.josefsson.org}. LDAP +is a more popular method of distributing certificates, support for it +is planned. (Meanwhile, you can use @code{ldapsearch} from the +command line to retrieve a certificate into a file and use it.) As for signing messages, OpenSSL can't perform signing operations without some kind of configuration. Especially, you need to tell it @@ -1002,7 +1039,7 @@ contain a @code{custom} group used for this configuration. So, try Currently there is no support for talking to a CA (or RA) to create your own certificate. None is planned either. You need to do this manually with OpenSSL or using some other program. I used Netscape -and got a free @sc{s/mime} certificate from one of the big CA's on the +and got a free @acronym{S/MIME} certificate from one of the big CA's on the net. Netscape is able to export your private key and certificate in PKCS #12 format. Use OpenSSL to convert this into a plain X.509 certificate in PEM format as follows. @@ -1019,18 +1056,20 @@ care in handling it. @subsection Using PGP/MIME -@sc{pgp/mime} requires an external OpenPGP implementation, such as GNU -Privacy Guard (@uref{http://www.gnupg.org/}). One Emacs interface to -OpenPGP implementations, PGG (@pxref{Top, ,PGG, pgg, PGG Manual}), is -included, but Mailcrypt and Florian Weimer's @code{gpg.el} are also -supported. +@acronym{PGP/MIME} requires an external OpenPGP implementation, such +as @uref{http://www.gnupg.org/, GNU Privacy Guard}. One Emacs +interface to OpenPGP implementations, PGG (@pxref{Top, ,PGG, pgg, PGG +Manual}), is included, but Mailcrypt and Florian Weimer's +@code{gpg.el} are also supported. @vindex gpg-temp-directory Note, if you are using the @code{gpg.el} you must make sure that the -directory specified by @code{gpg-temp-directory} have permissions 0700. +directory specified by @code{gpg-temp-directory} have permissions +0700. Creating your own OpenPGP key is described in detail in the documentation of your OpenPGP implementation, so we refer to it. + @end ignore @node Various Commands @section $B$$$m$$$m$JL?Na(B @@ -1152,9 +1191,9 @@ documentation of your OpenPGP implementation, so we refer to it. @vindex message-mail-alias-type $BJQ?t(B @code{message-mail-alias-type} $B$O$I$N$h$&$J7?$N%a!<%kJLL>(B (mail -alias) $B?-D%$r;H$&$+$r@)8f$7$^$9!#8=:_$G$O!"0l$D$NMM<0$@$1$,;HMQ2DG=$G$9(B--- -Message $B$O%a!<%kJLL>$r07$&$?$a$K(B @code{mailabbrev} $B$r;H$$$^$9!#$b$7$3$N(B -$BJQ?t$,(B @code{nil} $B$G$"$k$J$i!"%a!<%kJLL>?-D%$O$r07$&$?$a$K(B @code{mailabbrev} $B$r;H$$$^$9!#$b$7(B +$B$3$NJQ?t$,(B @code{nil} $B$G$"$k$J$i!"%a!<%kJLL>?-D%$O$l(B @item message-sendmail-envelope-from @vindex message-sendmail-envelope-from -@code{message-sendmail-f-is-evil} $B$,(B @code{nil} $B$N$H$-!"$3$l$G(B SMTP $B%(%s(B -$B%Y%m!<%W$G;H$&%"%I%l%9$r;XDj$7$^$9!#(B@code{nil} $B$@$C$?(B -$B$i(B @code{user-mail-address} $B$r;H$$$^$9!#%7%s%\%k(B @code{header} $B$@$C$?$i!"(B -$B%a%C%;!<%8$N(B @samp{From} $B%X%C%@!<$r;H$$$^$9!#(B +@code{message-sendmail-f-is-evil} $B$,(B @code{nil} $B$N$H$-!"$3$l(B +$B$G(B @acronym{SMTP} $B%(%s%Y%m!<%W$G;H$&%"%I%l%9$r;XDj$7$^$9!#(B@code{nil} $B$@$C(B +$B$?$i(B @code{user-mail-address} $B$r;H$$$^$9!#%7%s%\%k(B @code{header} $B$@$C$?(B +$B$i!"%a%C%;!<%8$N(B @samp{From} $B%X%C%@!<$r;H$$$^$9!#(B @item message-mailer-swallows-blank-line @vindex message-mailer-swallows-blank-line @@ -1792,25 +1831,26 @@ RFC1036bis $B$O!"=pL>$O$=$NA0$K(B @samp{-- } $B$N(B3$BJ8;z$@$1$N9T$,$"$k$Y$ $BM}$r$9$k;v$r4JC1$K$9$k$?$a$G$9!#$G$9$+$i!"$"$J$?$NH~$7$$%G%6%$%s$r$=$l$,!"(B $B$"$N!"40A4$KGK2u$7$F$$$k$H46$8$F$b$=$l$i$NJ8;z$r$O(B4$B9T$h$jB?$/$J$k$Y$-$G$OL5$$$H8@$&;v$bCm0U$7$F2<$5$$!#(BASCII $B$N3($r(B -$BF~$l$k;v$O!"3'$K$"$J$?$,GO$O(B4$B9T$h$jB?$/$J$k$Y$-$G$OL5$$$H8@$&;v$bCm0U$7$F2<$5$$!#(B +@acronym{ASCII} $B$N3($rF~$l$k;v$O!"3'$K$"$J$?$,GO$HK\BN$rJ,N%$9$k5-9f$K9gCW$9$k@55,I=8=$G$9!#=i4|CM(B diff --git a/texi/message.texi b/texi/message.texi index 9e91da5..49ddb31 100644 --- a/texi/message.texi +++ b/texi/message.texi @@ -310,9 +310,9 @@ constructed. The default value is @code{nil}. @item message-forward-as-mime @vindex message-forward-as-mime If this variable is @code{t} (the default), forwarded messages are -included as inline @sc{mime} RFC822 parts. If it's @code{nil}, forwarded +included as inline @acronym{MIME} RFC822 parts. If it's @code{nil}, forwarded messages will just be copied inline to the new message, like previous, -non @sc{mime}-savvy versions of gnus would do. +non @acronym{MIME}-savvy versions of gnus would do. @item message-forward-before-signature @vindex message-forward-before-signature @@ -503,8 +503,8 @@ better than you do. * Header Commands:: Commands for moving headers or changing headers. * Movement:: Moving around in message buffers. * Insertion:: Inserting things into message buffers. -* MIME:: @sc{mime} considerations. -* IDNA:: Non-ASCII domain name considerations. +* MIME:: @acronym{MIME} considerations. +* IDNA:: Non-@acronym{ASCII} domain name considerations. * Security:: Signing and encrypting messages. * Various Commands:: Various things. * Sending:: Actually sending the message. @@ -821,15 +821,15 @@ See @code{message-mark-insert-begin} and @code{message-mark-insert-end}. @cindex multipart @cindex attachment -Message is a @sc{mime}-compliant posting agent. The user generally -doesn't have to do anything to make the @sc{mime} happen---Message will +Message is a @acronym{MIME}-compliant posting agent. The user generally +doesn't have to do anything to make the @acronym{MIME} happen---Message will automatically add the @code{Content-Type} and @code{Content-Transfer-Encoding} headers. The most typical thing users want to use the multipart things in -@sc{mime} for is to add ``attachments'' to mail they send out. This can +@acronym{MIME} for is to add ``attachments'' to mail they send out. This can be done with the @kbd{C-c C-a} command, which will prompt for a file -name and a @sc{mime} type. +name and a @acronym{MIME} type. You can also create arbitrarily complex multiparts using the MML language (@pxref{Composing, , Composing, emacs-mime, The Emacs MIME @@ -841,30 +841,31 @@ Manual}). @cindex internationalized domain names @cindex non-ascii domain names -Message is a @sc{idna}-compliant posting agent. The user generally -doesn't have to do anything to make the @sc{idna} happen---Message -will encode non-ASCII domain names in @code{From}, @code{To}, and -@code{Cc} headers automatically. +Message is a @acronym{IDNA}-compliant posting agent. The user +generally doesn't have to do anything to make the @acronym{IDNA} +happen---Message will encode non-@acronym{ASCII} domain names in @code{From}, +@code{To}, and @code{Cc} headers automatically. -Until IDNA becomes more well known, Message queries you whether IDNA -encoding of the domain name really should occur. Some users might not -be aware that domain names can contain non-ASCII now, so this gives -them a safety net if they accidently typed a non-ASCII domain name. +Until @acronym{IDNA} becomes more well known, Message queries you +whether @acronym{IDNA} encoding of the domain name really should +occur. Some users might not be aware that domain names can contain +non-@acronym{ASCII} now, so this gives them a safety net if they accidently +typed a non-@acronym{ASCII} domain name. @vindex message-use-idna -The @code{message-use-idna} variable control whether @sc{idna} is -used. If the variable is @sc{nil} no IDNA encoding will ever happen, -if it is set to the symbol @sc{ask} the user will be queried (the -default), and if set to @sc{t} IDNA encoding happens automatically. +The @code{message-use-idna} variable control whether @acronym{IDNA} is +used. If the variable is @code{nil} no @acronym{IDNA} encoding will +ever happen, if it is set to the symbol @code{ask} the user will be +queried (the default), and if set to @code{t} @acronym{IDNA} encoding +happens automatically. @findex message-idna-to-ascii-rhs -If you want to experiment with the IDNA encoding, you can invoke -@kbd{M-x message-idna-to-ascii-rhs RET} in the message buffer to have -the non-ASCII domain names encoded while you edit the message. +If you want to experiment with the @acronym{IDNA} encoding, you can +invoke @kbd{M-x message-idna-to-ascii-rhs RET} in the message buffer +to have the non-@acronym{ASCII} domain names encoded while you edit the message. -Note that you must have GNU Libidn -(@url{http://www.gnu.org/software/libidn/} installed in order to use -this functionality. +Note that you must have @uref{http://www.gnu.org/software/libidn/, GNU +Libidn} installed in order to use this functionality. @node Security @section Security @@ -878,8 +879,8 @@ this functionality. Using the MML language, Message is able to create digitally signed and digitally encrypted messages. Message (or rather MML) currently -support PGP (RFC 1991), @sc{pgp/mime} (RFC 2015/3156) and @sc{s/mime}. -Instructing MML to perform security operations on a @sc{mime} part is +support @acronym{PGP} (RFC 1991), @acronym{PGP/MIME} (RFC 2015/3156) and @acronym{S/MIME}. +Instructing MML to perform security operations on a @acronym{MIME} part is done using the @kbd{C-c C-m s} key map for signing and the @kbd{C-c C-m c} key map for encryption, as follows. @@ -889,37 +890,37 @@ C-m c} key map for encryption, as follows. @kindex C-c C-m s s @findex mml-secure-message-sign-smime -Digitally sign current message using @sc{s/mime}. +Digitally sign current message using @acronym{S/MIME}. @item C-c C-m s o @kindex C-c C-m s o @findex mml-secure-message-sign-pgp -Digitally sign current message using PGP. +Digitally sign current message using @acronym{PGP}. @item C-c C-m s p @kindex C-c C-m s p @findex mml-secure-message-sign-pgpmime -Digitally sign current message using @sc{pgp/mime}. +Digitally sign current message using @acronym{PGP/MIME}. @item C-c C-m c s @kindex C-c C-m c s @findex mml-secure-message-encrypt-smime -Digitally encrypt current message using @sc{s/mime}. +Digitally encrypt current message using @acronym{S/MIME}. @item C-c C-m c o @kindex C-c C-m c o @findex mml-secure-message-encrypt-pgp -Digitally encrypt current message using PGP. +Digitally encrypt current message using @acronym{PGP}. @item C-c C-m c p @kindex C-c C-m c p @findex mml-secure-message-encrypt-pgpmime -Digitally encrypt current message using @sc{pgp/mime}. +Digitally encrypt current message using @acronym{PGP/MIME}. @item C-c C-m C-n @kindex C-c C-m C-n @@ -932,9 +933,9 @@ These commands do not immediately sign or encrypt the message, they merely insert the proper MML secure tag to instruct the MML engine to perform that operation when the message is actually sent. They may perform other operations too, such as locating and retrieving a -@sc{s/mime} certificate of the person you wish to send encrypted mail +@acronym{S/MIME} certificate of the person you wish to send encrypted mail to. When the mml parsing engine converts your MML into a properly -encoded @sc{mime} message, the secure tag will be replaced with either +encoded @acronym{MIME} message, the secure tag will be replaced with either a part or a multipart tag. If your message contains other mml parts, a multipart tag will be used; if no other parts are present in your message a single part tag will be used. This way, message mode will @@ -960,7 +961,7 @@ example: Will cause Gnus to sign and encrypt in one pass, thus generating a single signed and encrypted part. Note that combined sign and encrypt does not work with all supported OpenPGP implementations (in -particular, PGP version 2 do not support this). +particular, @acronym{PGP} version 2 do not support this). Since signing and especially encryption often is used when sensitive information is sent, you may want to have some way to ensure that your @@ -971,8 +972,8 @@ verify that your long rant about what your ex-significant other or whomever actually did with that funny looking person at that strange party the other night, actually will be sent encrypted. -@emph{Note!} Neither @sc{pgp/mime} nor @sc{s/mime} encrypt/signs -RFC822 headers. They only operate on the @sc{mime} object. Keep this +@emph{Note!} Neither @acronym{PGP/MIME} nor @acronym{S/MIME} encrypt/signs +RFC822 headers. They only operate on the @acronym{MIME} object. Keep this in mind before sending mail with a sensitive Subject line. Actually using the security commands above is not very difficult. At @@ -983,33 +984,33 @@ programs are required to make things work, and some small general hints. @subsection Using S/MIME @emph{Note!} This section assume you have a basic familiarity with -modern cryptography, @sc{s/mime}, various PKCS standards, OpenSSL and +modern cryptography, @acronym{S/MIME}, various PKCS standards, OpenSSL and so on. -The @sc{s/mime} support in Message (and MML) require OpenSSL. OpenSSL -perform the actual @sc{s/mime} sign/encrypt operations. OpenSSL can +The @acronym{S/MIME} support in Message (and MML) require OpenSSL. OpenSSL +perform the actual @acronym{S/MIME} sign/encrypt operations. OpenSSL can be found at @uref{http://www.openssl.org/}. OpenSSL 0.9.6 and later should work. Version 0.9.5a cannot extract mail addresses from -certificates, and it insert a spurious CR character into @sc{mime} +certificates, and it insert a spurious CR character into @acronym{MIME} separators so you may wish to avoid it if you would like to avoid being regarded as someone who send strange mail. (Although by sending -@sc{s/mime} messages you've probably already lost that contest.) +@acronym{S/MIME} messages you've probably already lost that contest.) To be able to send encrypted mail, a personal certificate is not required. Message (MML) need a certificate for the person to whom you wish to communicate with though. You're asked for this when you type @kbd{C-c C-m c s}. Currently there are two ways to retrieve this certificate, from a local file or from DNS. If you chose a local -file, it need to contain a X.509 certificate in PEM format. If you -chose DNS, you're asked for the domain name where the certificate is -stored, the default is a good guess. To my belief, Message (MML) is -the first mail agent in the world to support retrieving @sc{s/mime} -certificates from DNS, so you're not likely to find very many -certificates out there. At least there should be one, stored at the -domain @code{simon.josefsson.org}. LDAP is a more popular method of -distributing certificates, support for it is planned. (Meanwhile, you -can use @code{ldapsearch} from the command line to retrieve a -certificate into a file and use it.) +file, it need to contain a X.509 certificate in @acronym{PEM} format. +If you chose DNS, you're asked for the domain name where the +certificate is stored, the default is a good guess. To my belief, +Message (MML) is the first mail agent in the world to support +retrieving @acronym{S/MIME} certificates from DNS, so you're not +likely to find very many certificates out there. At least there +should be one, stored at the domain @code{simon.josefsson.org}. LDAP +is a more popular method of distributing certificates, support for it +is planned. (Meanwhile, you can use @code{ldapsearch} from the +command line to retrieve a certificate into a file and use it.) As for signing messages, OpenSSL can't perform signing operations without some kind of configuration. Especially, you need to tell it @@ -1021,7 +1022,7 @@ contain a @code{custom} group used for this configuration. So, try Currently there is no support for talking to a CA (or RA) to create your own certificate. None is planned either. You need to do this manually with OpenSSL or using some other program. I used Netscape -and got a free @sc{s/mime} certificate from one of the big CA's on the +and got a free @acronym{S/MIME} certificate from one of the big CA's on the net. Netscape is able to export your private key and certificate in PKCS #12 format. Use OpenSSL to convert this into a plain X.509 certificate in PEM format as follows. @@ -1038,15 +1039,16 @@ care in handling it. @subsection Using PGP/MIME -@sc{pgp/mime} requires an external OpenPGP implementation, such as GNU -Privacy Guard (@uref{http://www.gnupg.org/}). One Emacs interface to -OpenPGP implementations, PGG (@pxref{Top, ,PGG, pgg, PGG Manual}), is -included, but Mailcrypt and Florian Weimer's @code{gpg.el} are also -supported. +@acronym{PGP/MIME} requires an external OpenPGP implementation, such +as @uref{http://www.gnupg.org/, GNU Privacy Guard}. One Emacs +interface to OpenPGP implementations, PGG (@pxref{Top, ,PGG, pgg, PGG +Manual}), is included, but Mailcrypt and Florian Weimer's +@code{gpg.el} are also supported. @vindex gpg-temp-directory Note, if you are using the @code{gpg.el} you must make sure that the -directory specified by @code{gpg-temp-directory} have permissions 0700. +directory specified by @code{gpg-temp-directory} have permissions +0700. Creating your own OpenPGP key is described in detail in the documentation of your OpenPGP implementation, so we refer to it. @@ -1467,9 +1469,9 @@ command line. Doing so would be even more evil than leaving it out. @item message-sendmail-envelope-from @vindex message-sendmail-envelope-from When @code{message-sendmail-f-is-evil} is @code{nil}, this specifies -the address to use in the SMTP envelope. If it is @code{nil}, use -@code{user-mail-address}. If it is the symbol @code{header}, use the -@samp{From} header of the message. +the address to use in the @acronym{SMTP} envelope. If it is +@code{nil}, use @code{user-mail-address}. If it is the symbol +@code{header}, use the @samp{From} header of the message. @item message-mailer-swallows-blank-line @vindex message-mailer-swallows-blank-line @@ -1844,8 +1846,9 @@ signature. So don't remove those characters, even though you might feel that they ruin your beautiful design, like, totally. Also note that no signature should be more than four lines long. -Including ASCII graphics is an efficient way to get everybody to believe -that you are silly and have nothing important to say. +Including @acronym{ASCII} graphics is an efficient way to get +everybody to believe that you are silly and have nothing important to +say. @node Various Message Variables @@ -1855,13 +1858,12 @@ that you are silly and have nothing important to say. @item message-default-charset @vindex message-default-charset @cindex charset -Symbol naming a @sc{mime} charset. Non-ASCII characters in messages are -assumed to be encoded using this charset. The default is @code{nil}, -which means ask the user. (This variable is used only on non-@sc{mule} -Emacsen. -@xref{Charset Translation, , Charset Translation, emacs-mime, - Emacs MIME Manual}, for details on the @sc{mule}-to-@sc{mime} -translation process. +Symbol naming a @acronym{MIME} charset. Non-@acronym{ASCII} +characters in messages are assumed to be encoded using this charset. +The default is @code{nil}, which means ask the user. (This variable +is used only on non-@sc{mule} Emacsen. @xref{Charset Translation, , +Charset Translation, emacs-mime, Emacs MIME Manual}, for details on +the @sc{mule}-to-@acronym{MIME} translation process. @item message-signature-separator @vindex message-signature-separator diff --git a/texi/texi2latex.el b/texi/texi2latex.el index b9da0d4..cb7b5b8 100644 --- a/texi/texi2latex.el +++ b/texi/texi2latex.el @@ -71,6 +71,7 @@ (latexi-translate-string "@code{\\264}" "@code{\\gnusbackslash{}264}") (latexi-translate-string "@samp{\\Deleted}" "@samp{\\gnusbackslash{}Deleted}") (latexi-translate-string "@samp{\\Seen}" "@samp{\\gnusbackslash{}Seen}") + (latexi-translate-string "@file{c:\\myhome}" "@file{c:\\gnusbackslash{}myhome}") ; (while (re-search-forward "{\"[^\"]*\\(\\\\\\)[^\"]*\"}\\\\" nil t) ; (replace-match "\\verb+\\\\+ " t t)) (while (not (zerop (decf times))) @@ -108,6 +109,14 @@ (if as-a-chapter (latexi-switch-line (format "sub%s" command) arg) (latexi-switch-line command arg))) + ((member command '("heading")) + (if as-a-chapter + (latexi-switch-line "subsection*" arg) + (latexi-switch-line "section*" arg))) + ((member command '("subheading")) + (if as-a-chapter + (latexi-switch-line "subsubsection*" arg) + (latexi-switch-line "subsection*" arg))) ((member command '("chapter")) (if (string-match "Index" arg) (latexi-strip-line) @@ -262,11 +271,13 @@ (latexi-exchange-command (concat "gnus" command) arg)) ((member command '("sc" "file" "dfn" "emph" "kbd" "key" "uref" "code" "samp" "var" "strong" "i" - "result" "acronym" "email")) + "result" "email" "env" "r")) (goto-char (match-beginning 0)) (delete-char 1) (insert "\\gnus")) - ((member command '("copyright" "footnote")) + ((member command '("acronym")) + (latexi-exchange-command (concat "gnus" command) (downcase arg))) + ((member command '("copyright" "footnote" "TeX")) (goto-char (match-beginning 0)) (delete-char 1) (insert "\\"))