unofficial mirror of help-gnu-emacs@gnu.org
 help / color / mirror / Atom feed
From: Narendra Joshi <narendraj9@gmail.com>
To: help-gnu-emacs@gnu.org
Subject: Re: Gnus and emails sent by me
Date: Thu, 28 Dec 2017 00:43:04 +0530	[thread overview]
Message-ID: <87d130ougv.fsf@gmail.com> (raw)
In-Reply-To: <86lghonoxm.fsf@zoho.com> (Emanuel Berg's message of "Wed, 27 Dec 2017 16:57:57 +0100")

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	other threads:[~2017-12-27 19:13 UTC|newest]

Thread overview: 21+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
     [not found] <mailman.6413.1514386355.27995.help-gnu-emacs@gnu.org>
2017-12-27 15:57 ` Gnus and emails sent by me Emanuel Berg
2017-12-27 19:13   ` Narendra Joshi [this message]
     [not found]   ` <mailman.6430.1514402000.27995.help-gnu-emacs@gnu.org>
2017-12-27 19:25     ` Emanuel Berg
2017-12-27 19:46       ` Narendra Joshi
     [not found]       ` <mailman.6435.1514404026.27995.help-gnu-emacs@gnu.org>
2017-12-27 19:54         ` Emanuel Berg
2017-12-28  5:11           ` Narendra Joshi
2017-12-28  6:00             ` Eric Abrahamsen
     [not found]             ` <mailman.6469.1514440877.27995.help-gnu-emacs@gnu.org>
2017-12-28  6:10               ` Emanuel Berg
     [not found]           ` <mailman.6468.1514437920.27995.help-gnu-emacs@gnu.org>
2017-12-28  5:57             ` Emanuel Berg
2017-12-28  6:08             ` Emanuel Berg
2017-12-29  2:04   ` Maxim Cournoyer
2017-12-29 16:59     ` Narendra Joshi
2017-12-27 14:52 Narendra Joshi
2017-12-27 15:17 ` Alberto Luaces
2017-12-27 19:09   ` Narendra Joshi
2017-12-27 17:23 ` Eric Abrahamsen
2017-12-27 19:10   ` Narendra Joshi
2017-12-27 19:37     ` Eric Abrahamsen
2017-12-27 19:45       ` Narendra Joshi
     [not found] ` <mailman.6427.1514395563.27995.help-gnu-emacs@gnu.org>
2017-12-27 18:42   ` Emanuel Berg
2017-12-27 19:40     ` Narendra Joshi

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

  List information: https://www.gnu.org/software/emacs/

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=87d130ougv.fsf@gmail.com \
    --to=narendraj9@gmail.com \
    --cc=help-gnu-emacs@gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).