comparison lisp/gnus/gnus-art.el @ 67643:1c477099d3ac

Revision: miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-676 Merge from gnus--rel--5.10 Patches applied: * gnus--rel--5.10 (patch 169-173) - Merge from emacs--cvs-trunk--0 - Update from CVS 2005-12-16 Katsumi Yamaoka <yamaoka@jpl.org> * lisp/gnus/gnus-art.el (gnus-signature-separator): Fix custom type. * lisp/gnus/mm-decode.el (mm-inlined-types): Fix custom type. (mm-keep-viewer-alive-types): Ditto. (mm-automatic-display): Ditto. (mm-attachment-override-types): Ditto. (mm-inline-override-types): Ditto. (mm-automatic-external-display): Ditto. 2005-12-12 Katsumi Yamaoka <yamaoka@jpl.org> * lisp/gnus/gnus-art.el (gnus-buttonized-mime-types): Mention addition of multipart/alternative and add xref to mm-discouraged-alternatives in doc string. * lisp/gnus/mm-decode.el (mm-discouraged-alternatives): Add xref to gnus-buttonized-mime-types in doc string. 2005-12-12 Katsumi Yamaoka <yamaoka@jpl.org> * lisp/gnus/rfc2047.el (rfc2047-charset-to-coding-system): Recognize us-ascii as a MIME charset. * lisp/gnus/mm-bodies.el (mm-decode-content-transfer-encoding): Protect against the case where the 2nd arg TYPE is nil. 2005-12-09 Reiner Steib <Reiner.Steib@gmx.de> * lisp/gnus/gnus-start.el (gnus-no-server-1): Mention `gnus-level-default-subscribed' in doc string. 2005-11-26 Dave Love <fx@gnu.org> * lisp/gnus/tls.el (open-tls-stream): Rename arg SERVICE to PORT. (tls-program, tls-success): Provide openssl alternative. * lisp/gnus/starttls.el: Doc fixes. (starttls-open-stream-gnutls, starttls-open-stream): Rename arg SERVICE to PORT. 2005-12-09 Reiner Steib <Reiner.Steib@gmx.de> * lisp/gnus/gnus-start.el (gnus-start-draft-setup): Enforce `gnus-draft-mode' for nndraft:drafts at startup. * lisp/gnus/gnus.el (gnus-splash): Change custom group. (gnus-group-get-parameter, gnus-group-parameter-value): Describe allow-list argument. * lisp/gnus/gnus-agent.el (gnus-agent-article-alist-save-format): Format doc string. 2005-12-09 ARISAWA Akihiro <ari@mbf.ocn.ne.jp> (tiny change) * lisp/gnus/mm-decode.el (mm-display-external): Add lacked cdr. 2005-12-12 Katsumi Yamaoka <yamaoka@jpl.org> * man/gnus.texi (MIME Commands): Mention addition of multipart/alternative to gnus-buttonized-mime-types and add xref to mm-discouraged-alternatives. * man/emacs-mime.texi (Display Customization): Mention addition of "image/.*" and add xref to gnus-buttonized-mime-types in the mm-discouraged-alternatives section.
author Miles Bader <miles@gnu.org>
date Sat, 17 Dec 2005 21:41:34 +0000
parents 28264c86d408
children 6f5da26b0df1
comparison
equal deleted inserted replaced
67642:b64b1fbcca2a 67643:1c477099d3ac
223 (defcustom gnus-signature-separator '("^-- $" "^-- *$") 223 (defcustom gnus-signature-separator '("^-- $" "^-- *$")
224 "Regexp matching signature separator. 224 "Regexp matching signature separator.
225 This can also be a list of regexps. In that case, it will be checked 225 This can also be a list of regexps. In that case, it will be checked
226 from head to tail looking for a separator. Searches will be done from 226 from head to tail looking for a separator. Searches will be done from
227 the end of the buffer." 227 the end of the buffer."
228 :type '(repeat string) 228 :type '(choice :format "%{%t%}: %[Value Menu%]\n%v"
229 (regexp)
230 (repeat :tag "List of regexp" regexp))
229 :group 'gnus-article-signature) 231 :group 'gnus-article-signature)
230 232
231 (defcustom gnus-signature-limit nil 233 (defcustom gnus-signature-limit nil
232 "Provide a limit to what is considered a signature. 234 "Provide a limit to what is considered a signature.
233 If it is a number, no signature may not be longer (in characters) than 235 If it is a number, no signature may not be longer (in characters) than
820 822
821 (defcustom gnus-buttonized-mime-types nil 823 (defcustom gnus-buttonized-mime-types nil
822 "List of MIME types that should be given buttons when rendered inline. 824 "List of MIME types that should be given buttons when rendered inline.
823 If set, this variable overrides `gnus-unbuttonized-mime-types'. 825 If set, this variable overrides `gnus-unbuttonized-mime-types'.
824 To see e.g. security buttons you could set this to 826 To see e.g. security buttons you could set this to
825 `(\"multipart/signed\")'. 827 `(\"multipart/signed\")'. You could also add \"multipart/alternative\" to
828 this list to display radio buttons that allow you to choose one of two
829 media types those mails include. See also `mm-discouraged-alternatives'.
826 This variable is only used when `gnus-inhibit-mime-unbuttonizing' is nil." 830 This variable is only used when `gnus-inhibit-mime-unbuttonizing' is nil."
827 :version "22.1" 831 :version "22.1"
828 :group 'gnus-article-mime 832 :group 'gnus-article-mime
829 :type '(repeat regexp)) 833 :type '(repeat regexp))
830 834