summaryrefslogtreecommitdiff
path: root/lisp/gnus
Commit message (Collapse)AuthorAgeFilesLines
* * lisp/gnus/mm-view.el (mm-display-inline-fontify): Mark contents untrusted.Ihor Radchenko2024-03-241-0/+1
|
* ; Add 2024 to copyright yearsPo Lu2024-01-02106-106/+106
|
* ; Fix typos in ChangeLog filesStefan Kangas2023-12-103-6/+6
|
* ; Another fix of doc string of 'message-mail-user-agent' (bug#67638).Eli Zaretskii2023-12-051-6/+7
|
* ; * lisp/gnus/message.el (message-mail-user-agent): Doc fix (bug#67638).Eli Zaretskii2023-12-051-3/+6
|
* ; Fix typosStefan Kangas2023-12-033-3/+3
|
* ; Fix broken links to gmane.orgStefan Kangas2023-10-245-18/+12
|
* Change news.gmane.org to news.gmane.ioStefan Kangas2023-10-243-4/+6
| | | | | | | | | | | | | | | * admin/notes/emba: * doc/misc/gnus.texi (Group Parameters) (Non-ASCII Group Names, Filling In Threads) (Selection Groups, Spam Package Configuration Examples) (Terminology): * lisp/gnus/gnus-group.el (gnus-useful-groups): * lisp/gnus/gnus-sum.el (gnus-fetch-old-headers): * lisp/gnus/spam-report.el (spam-report-gmane-use-article-number) (spam-report-gmane-internal): * test/lisp/gnus/gnus-group-tests.el (gnus-short-group-name): Change news.gmane.org to news.gmane.io. Ref: https://news.gmane.io/
* Fix minor defcustom issues in Gnus (Bug#66715)Mauro Aranda2023-10-235-13/+19
| | | | | | | | | | | | | | | * lisp/gnus/gnus-art.el (gnus-button-prefer-mid-or-mail): Allow function and add :tag to const values. * lisp/gnus/gnus-bookmark.el (gnus-bookmark-bookmark-inline-details): Fix docstring. * lisp/gnus/gnus-sum.el (gnus-simplify-subject-fuzzy-regexp): Allow a single regexp as value. * lisp/gnus/message.el (message-indent-citation-function): Allow a single function as value. (message-mail-alias-type): Allow for a list of options as value. (message-dont-reply-to-names): Allow a function as value. * lisp/gnus/spam-report.el (spam-report-url-ping-function): Fix default value for the function widget.
* Improve docstring of message-sendmail-envelope-fromStefan Kangas2023-09-071-2/+4
| | | | * lisp/gnus/message.el (message-sendmail-envelope-from): Doc fix.
* Account for string names in active fileJames Thomas2023-08-241-1/+3
| | | | | | | Account also for strings when reading in group names from an active file (bug#62812). * lisp/gnus/nnmail.el (nnmail-parse-active): Make it similar to gnus-active-to-gnus-format
* Use a temporary buffer in nnagent-request-set-mark (bug#64117)Andrew G Cohen2023-06-301-11/+12
| | | | | | | | | | | Commit cb12a84f2c519a48dd87453c925e3bc36d9944db inadvertently removed the use of a temporary buffer in nnagent-request-set-mark. Bug and fix reported by Jens Schmidt <jschmidt4gnu@vodafonemail.de> * lisp/gnus/nnagent.el (nnagent-request-set-mark): Restore the use of a temporary buffer that was inadvertently removed. (cherry picked from commit 5075d752773c31d959272a7e2b73b1dc38ba184c)
* Revert "Don't have nntp-report signal an error"Eli Zaretskii2023-05-111-1/+3
| | | | | This reverts commit 032969e8c65ba1ccda8466f6c61f20e0c7293ebf. The commit is being reverted because it caused bug#62845.
* Improve 'message-server-alist' docstringRobert Pluim2023-04-191-2/+4
| | | | | * lisp/gnus/message.el (message-server-alist): Fix typo and clarify what happens if there is already an X-Message-SMTP-Method header.
* Allow reindentation of images inserted by 'mm-inline-image'Eli Zaretskii2023-04-081-1/+1
| | | | | | * lisp/gnus/mm-view.el (mm-inline-image): Use "x" as text on which to put the image 'display' property, so that indentation commands don't destroy the image inadvertently. (Bug#62637)
* Slightly improve hashcash documentationStefan Kangas2023-02-181-2/+3
| | | | | | | * lisp/mail/hashcash.el: Improve Commentary. (hashcash-program): * lisp/gnus/message.el (message-generate-hashcash): Improve docstring.
* ; Add 2023 to copyright years.Eli Zaretskii2023-01-01106-106/+106
|
* ; Fix typosStefan Kangas2022-12-313-3/+3
|
* ; Fix typosStefan Kangas2022-12-261-1/+1
| | | | (cherry picked from commit a5d39e11443fa30c8e8bc58254a1a59550dcd99e)
* message: Do not default to eudc-capf-complete yetAlexander Adolf2022-12-211-1/+0
| | | | | | * lisp/gnus/message.el (message-mode): No longer add eudc-capf-complete to the buffer-local value of completion-at-point-functions. (Bug#59314)
* Fix storing email into nnmail by GnusEli Zaretskii2022-12-191-4/+9
| | | | | | | * lisp/gnus/nnml.el (nnml--encode-headers): Wrap 'rfc2047-encode-string' calls with 'ignore-errors', to avoid disrupting email workflows due to possibly-invalid headers. Reported by Florian Weimer <fweimer@redhat.com>.
* Use make-directory handlers uniformlyPaul Eggert2022-12-171-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Formerly, the code supported both make-directory and make-directory-internal handlers. This led to confusion and meant than in a few cases (nnmaildir, ido) remote directories could not be used in some cases. Fix this by using only make-directory handlers. Perhaps there used to be a reason for why there were both make-directory and make-directory-internal handlers, but whatever that reason was, it seems to have vanished even before now. There is no longer any need for make-directory-internal handlers, as the few remaining callers that use make-directory-internal do so only when there are no handlers. However, this change keeps the existing make-directory-internal handlers for now, in case this code is ever used in older Emacs versions that still call those handlers. * lisp/gnus/nnmaildir.el (nnmaildir--mkdir): * lisp/ido.el (ido-file-internal): * lisp/net/tramp-smb.el (tramp-smb-handle-make-directory): Use make-directory, not make-directory-internal. * lisp/net/tramp-smb.el (tramp-smb-handle-make-directory-internal): Now obsolete. * src/fileio.c (Fmake_directory_internal): Do not look for or use a make-directory-internal handler. * test/lisp/files-tests.el: (files-tests-file-name-non-special-make-directory-internal): Remove, as this test incorrectly assumes that make-directory-internal must support handlers.
* ; Fix typosStefan Kangas2022-12-162-2/+2
|
* ; Fix two byte-compiler warningsStefan Kangas2022-12-101-1/+1
| | | | | | * lisp/gnus/gnus-icalendar.el (gnus-icalendar--show-org-event): * test/lisp/progmodes/project-tests.el (project/quoted-directory): Fix warnings.
* ; Fix typos (don't abbreviate "with" or "without")Stefan Kangas2022-12-013-3/+4
|
* Remove mentions of create-directory nnmaildir settingEric Abrahamsen2022-11-261-15/+6
| | | | | | | * lisp/gnus/nnmaildir.el (nnmaildir-open-server): The 'create-directory server parameter should have been removed entirely, and supplanted by 'target-prefix. Remove check for old parameter. * doc/misc/gnus.texi (Maildir): Delete mention from manual.
* ; Fix typosStefan Kangas2022-11-237-11/+11
|
* Don't refer to deleted variable 'gnus-parameter-to-list-alist'Stefan Kangas2022-11-221-2/+0
| | | | | | * doc/misc/gnus.texi (Group Parameters): * lisp/gnus/message.el (message-recipients-without-full-name): Don't refer to deleted variable 'gnus-parameter-to-list-alist'.
* ; Fix typosStefan Kangas2022-11-222-2/+2
|
* ; Fix typos (misspelled symbols)Stefan Kangas2022-11-211-5/+3
|
* ; Fix typosStefan Kangas2022-11-201-1/+1
|
* ; Fix typosStefan Kangas2022-11-182-3/+3
|
* ; Fix typos (prefer US spelling)Stefan Kangas2022-11-181-1/+1
|
* ; Fix typos (duplicate words)Stefan Kangas2022-11-171-1/+1
|
* ; * lisp/*.el: Fix typos in docstringsJuanma Barranquero2022-11-171-3/+3
| | | | | | | | | | * lisp/gnus/nnrss.el (nnrss-use-local, nnrss-fetch, nnrss-find-el): * lisp/leim/quail/japanese.el ("japanese"): * lisp/org/ol.el (org-link-search-must-match-exact-headline): * lisp/org/org-faces.el (org-column): * lisp/progmodes/eglot.el (eglot--stay-out-of-p) (eglot-workspace-configuration, eglot--read-execute-code-action): * lisp/vc/vc.el (vc-clone): Fix typos in docstrings.
* ; Fix typosStefan Kangas2022-11-113-4/+4
|
* Avoid error when forwarding messages from RmailNicolas Graner2022-11-051-0/+1
| | | | | * lisp/gnus/message.el (message-mail): Verify that In-Reply-To has a string value before matching it with a regexp. (Bug#59007)
* ; Remove redundant declares of w3m-minor-mode-mapStefan Kangas2022-10-291-1/+0
| | | | | * lisp/gnus/gnus-art.el (w3m-minor-mode-map): * lisp/net/newst-backend.el (w3m-minor-mode-map): Don't declare.
* ; Fix typos in symbol namesStefan Kangas2022-10-271-1/+1
|
* ; Fix several symbol name typosStefan Kangas2022-10-262-2/+2
|
* ; Use auto-generated docstring in gnus-custom-modeStefan Kangas2022-10-261-4/+1
| | | | | * lisp/gnus/gnus-cus.el (gnus-custom-mode): Change docstring to prefer text auto-generated by 'define-derived-mode' instead.
* Compare addresses case-insensitively in message-update-smtp-method-headerFilipp Gunbin2022-10-261-1/+1
| | | | | * lisp/gnus/message.el (message-update-smtp-method-header): Compare addresses case-insensitively.
* Ignore non-base64 junk when decoding MIMEAndreas Schwab2022-10-251-18/+2
| | | | | | | | | | * src/fns.c (Fbase64_decode_region): Add optional argument IGNORE-INVALID and pass down to base64_decode_1. (Fbase64_decode_string): Likewise. (base64_decode_1): Add argument IGNORE_INVALID. * doc/lispref/text.texi (Base 64): Document them. * lisp/gnus/mm-bodies.el (mm-decode-content-transfer-encoding): Ignore any junk when decoding base64.
* Make `message-canlock-generate' fasterStefan Kangas2022-10-171-4/+1
| | | | | * lisp/gnus/message.el (message-canlock-generate): Improve performance by several orders of magnitude.
* ; Fix message-server-alist :type (Bug#58546)Mauro Aranda2022-10-151-4/+4
|
* ; Prefer HTTPS to HTTP in many URLsStefan Kangas2022-10-152-2/+2
|
* Remove redundant let-bindings of `inhibit-point-motion-hooks`Stefan Monnier2022-10-078-142/+103
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | `inhibit-point-motion-hooks` has defaulted to t (and been declared obsolete) since Emacs-25, so remove left-over bindings to that now default value. * lisp/dabbrev.el (dabbrev--search): * lisp/format.el (format-insert-file): * lisp/forms.el (forms-next-field, forms-prev-field): * lisp/minibuf-eldef.el (minibuf-eldef-setup-minibuffer): * lisp/simple.el (primitive-undo): * lisp/cedet/semantic/edit.el (semantic-change-function): * lisp/cedet/srecode/fields.el (srecode-field-mod-hook): * lisp/cedet/srecode/insert.el (srecode-insert-fcn): * lisp/erc/erc-button.el (erc-button-add-buttons): * lisp/erc/erc.el (erc-display-line): * lisp/eshell/em-script.el (eshell-source-file): * lisp/eshell/em-smart.el (eshell-smart-scroll-window): * lisp/eshell/esh-arg.el (eshell-parse-arguments): * lisp/eshell/esh-cmd.el (eshell-with-temp-command): * lisp/eshell/esh-mode.el (eshell-send-input, eshell-output-filter): * lisp/gnus/gnus-art.el (gnus-with-article-headers) (article-hide-headers, article-hide-boring-headers) (article-decode-mime-words, article-decode-charset) (article-decode-encoded-words, article-decode-group-name) (article-decode-idna-rhs, article-hide-list-identifiers) (article-strip-banner, article-really-strip-banner) (article-strip-leading-blank-lines) (article-strip-multiple-blank-lines, article-strip-leading-space) (article-strip-trailing-space, article-strip-all-blank-lines) (gnus-article-narrow-to-signature, gnus-article-show-hidden-text) (article-date-ut, article-verify-x-pgp-sig) (gnus-article-only-boring-p, gnus-article-highlight-signature) (gnus-article-add-buttons, gnus-signature-toggle, gnus-button-push): * lisp/gnus/gnus-cite.el (gnus-article-highlight-citation) (gnus-article-fill-cited-article, gnus-article-hide-citation) (gnus-article-toggle-cited-text, gnus-article-hide-citation-maybe) (gnus-cite-parse-wrapper, gnus-cite-add-face, gnus-cite-toggle): * lisp/gnus/gnus-gravatar.el (gnus-gravatar-insert): * lisp/gnus/gnus-rfc1843.el (rfc1843-decode-article-body): * lisp/gnus/gnus-sum.el (gnus-summary-toggle-header): * lisp/gnus/gnus-util.el (gnus-fetch-field): * lisp/gnus/message.el (message-fetch-field, message-reply) (message-followup, message-hide-headers): * lisp/net/goto-addr.el (goto-address-fontify): * lisp/obsolete/linum.el (linum-update-window): * lisp/play/zone.el (zone-shift-left, zone-shift-right) (zone-fill-out-screen): * lisp/progmodes/opascal.el (opascal-save-excursion): * lisp/progmodes/vhdl-mode.el (vhdl-prepare-search-2): * lisp/textmodes/enriched.el (enriched-encode): * lisp/textmodes/flyspell.el (flyspell-word-search-backward) (flyspell-word-search-forward): * lisp/textmodes/table.el (table--point-entered/left-cell-function): Remove let-binding of `inhibit-point-motion-hooks`.
* Make cropping of images work in message-modeLars Ingebrigtsen2022-10-041-11/+19
| | | | | | | * lisp/gnus/message.el (message-mode): Set the image cropping function. (message--yank-media-image-handler): Factor out... (message--image-part-string): ... here for reuse. (message--update-image-crop): Update the cropped data.
* Fix coding system problems in gnus-read-ephemeral-bug-groupLars Ingebrigtsen2022-10-021-38/+31
| | | | | | | | | * lisp/gnus/gnus-group.el (gnus-read-ephemeral-bug-group): Don't bind coding system variables, because that leads to loading other files (like cookie files) using that coding system (bug#58227). * lisp/url/url-handlers.el (url-insert-file-literally): New function. (url-insert): Allow forcing no-decode.
* Revert "Decrease use of the word "Emacsen" in docs"Stefan Kangas2022-10-011-1/+1
| | | | | | This reverts commit 55f46cc77cb9d72fbabadb63d8aeab45c5e005e2. Ref. https://lists.gnu.org/r/emacs-devel/2022-10/msg00016.html