help-gnu-emacs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Gnus and emails sent by me


From: Narendra Joshi
Subject: Re: Gnus and emails sent by me
Date: Thu, 28 Dec 2017 00:43:04 +0530
User-agent: Gnus/5.13 (Gnus v5.13) Emacs/26.0.90 (gnu/linux)

Emanuel Berg <moasen@zoho.com> writes:

> Narendra Joshi wrote:
>
>> 1. How to have messages sent by me shown in
>> threads? For example, my replies to emails in
>> mailing lists are not shown in the thread
>> even after I do 'A T'
>> (gnus-summary-refer-thread) on the thread.
>
> Try `gnus-summary-insert-old-articles'.
>
> But: they should show up by default! Just like any
> other post.
Doing ^ changes nothing for me. 

I have this configuration:

#+begin_src emacs-lisp
(require 'bbdb)
(require 'bbdb-gnus)

(require 'gnus)
(require 'gnus-msg)
(require 'gnus-art)
(require 'gnus-async)


(require 'nnmail)
(require 'smtpmail)
(require 'message)

(require 'nnir)

(setq gnus-always-read-dribble-file t)

(setq smtpmail-smtp-server "smtp.gmail.com"
      smtpmail-smtp-service 587
      gnus-ignored-newsgroups "^to\\.\\|^[0-9. ]+\\( \\|$\\)\\|^[\"]\"[#'()]")

(setq send-mail-function 'smtpmail-send-it
      message-send-mail-function 'smtpmail-send-it)

(setq gnus-visible-headers 
"^From:\\|^Newsgroups:\\|^Subject:\\|^Date:\\|^Followup-To:\\|^Reply-To:\\|^Summary:\\|^Keywords:\\|^To:\\|^[BGF]?Cc:\\|^Posted-To:\\|^Mail-Copies-To:\\|^Mail-Followup-To:\\|^Apparently-To:\\|^Gnus-Warning:\\|^Resent-From:\\|^X-Sent:\\|^User-Agent:\\|^X-Mailer:\\|^X-Newsreader:")

;; 
http://groups.google.com/group/gnu.emacs.gnus/browse_thread/thread/a673a74356e7141f
(when window-system
  (setq gnus-thread-hide-subtree t
        gnus-sum-thread-tree-indent "  "
        gnus-sum-thread-tree-root "● "
        gnus-sum-thread-tree-false-root "◯ "
        gnus-sum-thread-tree-single-indent "◎ "
        gnus-sum-thread-tree-vertical        "│"
        gnus-sum-thread-tree-leaf-with-other "├─► "
        gnus-sum-thread-tree-single-leaf     "╰─► "))

;; Article and thread sorting
(setq gnus-article-sort-functions
      '(gnus-article-sort-by-most-recent-date))
(setq gnus-thread-sort-functions
      '(gnus-thread-sort-by-most-recent-date))

(setq gnus-user-date-format-alist '((t . "%Y %b %d (%H:%M)"))
      gnus-summary-line-format (concat
                                "%0{%U%R%z%}"
                                "%3{│%}" "%1{%&user-date;%}" "%3{│%}" ;; date
                                "  "
                                "%4{%-20,20f%}" ;; name
                                "  "
                                "%3{│%}"
                                " "
                                "%1{%B%}"
                                "%s\n"))

(setq gnus-summary-display-arrow t)
(setq nnmail-split-fancy ......config....)
(setq gnus-select-method
      `(nnimap "gmail"
               (nnimap-address "imap.gmail.com")
               (nnir-search-engine imap)
               (nnimap-inbox "INBOX")
               (nnimap-stream ssl)
               (nnimap-split-methods ,nnmail-split-fancy)))

(setq gnus-asynchronous t
      gnus-use-article-prefetch t)

(setq mm-text-html-renderer 'gnus-w3m
      gnus-article-browse-delete-temp t)

(setq gnus-message-archive-method ""
      gnus-message-archive-group 'identity
      gnus-gcc-mark-as-read t
      gnus-gcc-self-resent-messages t)

;;; Treating mail
(setq gnus-treat-unsplit-urls t
      gnus-treat-capitalize-sentences t
      gnus-treat-leading-whitespace t
      gnus-treat-strip-multiple-blank-lines t
      gnus-treat-strip-cr t)

(provide 'gnus-config)
;;; gnus-config.el ends here

#+end_src


Could any of these things be doing it? 

Best,
-- 
Narendra Joshi



reply via email to

[Prev in Thread] Current Thread [Next in Thread]