mu4e-headers view behaviour changed in 1.0

176 views
Skip to first unread message

Laurence Rochfort

unread,
Feb 22, 2018, 6:49:02 AM2/22/18
to mu-discuss
Hi all,

I noticed that the *mu4e-headers* view behaviour in mu4e 1.0 has changed from 0.9.8. I see two things:

1) Lots of new emails arrive with a strikethrough as if they've been deleted before I even receive them.

2) If I reply to an email thread, I then see my reply in the thread. Additionally, the thread the shows up in my Inbox even if it was previously moved to a different folder.


I haven't changed any of my settings, only upgraded from 0.9.8 to 1.0

Any suggestions as to wny that's happening and how to stop it?

Cheers,
Laurence.

Here's my mu4e config:


(add-to-list 'load-path "/usr/local/share/emacs/site-lisp/mu4e")
(require 'mu4e)

;;(require 'gnus-art)

(setq mail-user-agent 'mu4e-user-agent)

(setq
 mu4e-maildir "~/.Maildir"
 mu4e-sent-folder "/Sent Messages"
 mu4e-drafts-folder "/Drafts"
 mu4e-trash-folder "/Trash"
 mu4e-refile-folder "/Archive")

(setq
 mu4e-get-mail-command "offlineimap"
 mu4e-update-interval (* 5 60)) ;; Update every 5 mins

;;(setq mu4e-hide-index-messages t)

(setq
 mu4e-compose-reply-to-address "laurence.XXXXXX@XXXXXX"
 user-mail-address "laurence.XXXXXX@XXXXXX"
 user-full-name "Laurence XXXXXX")

(setq mu4e-user-mail-address-list '("laurence.XXXXXX@XXXXXX"))

;; frequently used maildir
(setq mu4e-maildir-shortcuts
      '(("/INBOX" . ?i)
    ("/Projects.XXXXXX" . ?s)
    ("/Sent Messages" . ?o)))

;; Add bookmarks
(add-to-list 'mu4e-bookmarks
         '("from:XXXXXX" "From XXXXXX" ?k))

;; header fields
(setq mu4e-headers-fields
      (quote
       ((:human-date . 12)
    (:flags . 6)
    (:mailing-list . 10)
    (:from-or-to . 22)
    (:subject))))


;; smtpmail ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(setq message-send-mail-function 'smtpmail-send-it
      smtpmail-smtp-server "XXXXXX"
      smtpmail-smtp-service 465
      smtpmail-stream-type 'ssl)









(setq mu4e-compose-dont-reply-to-self t)
(setq message-cite-reply-position 'traditional)
(setq message-kill-buffer-on-exit t)

(setq mu4e-attachment-dir  "~/Downloads")

(setq mu4e-split-view 'horizontal)
(setq mu4e-headers-visible-lines 12)
(setq mu4e-headers-skip-duplicates t)
(setq mu4e-use-fancy-chars t)


;; Use dired to attach files
(require 'gnus-dired)
;; make the `gnus-dired-mail-buffers' function also work on
;; message-mode derived modes, such as mu4e-compose-mode
(defun gnus-dired-mail-buffers ()
  "Return a list of active message buffers."
  (let (buffers)
    (save-current-buffer
      (dolist (buffer (buffer-list t))
        (set-buffer buffer)
        (when (and (derived-mode-p 'message-mode)
           (null message-sent-message-via))
          (push (buffer-name buffer) buffers))))
    (nreverse buffers)))

(setq gnus-dired-mail-mode 'mu4e-user-agent)
(add-hook 'dired-mode-hook 'turn-on-gnus-dired-mode)


;; If there's no plain text version of an email then render it using shr (eww backend)
;;(require 'mu4e-contrib)
;;(setq mu4e-html2text-command 'mu4e-shr2text)

;; enable inline images
(setq mu4e-view-show-images t)
;; use imagemagick, if available
(when (fboundp 'imagemagick-register-types)
  (imagemagick-register-types))

;; Store links to email in org-mode
(require 'org-mu4e)

J Irving

unread,
Feb 22, 2018, 10:43:42 AM2/22/18
to mu-di...@googlegroups.com
Hey Laurence

I remember dealing with this some time ago (I've been tracking `master`) - I think I did this:

```
(setq mu4e-headers-include-related nil)
```

to make it stop. My bookmark queries all have `AND NOT flag:trashed` at the end too, but when I set that custom var to `t` just now, I started seeing a lot of extra messages with strikethrough, so I guess that's the change that mattered.

Hope this helps.

cheers, Jon

--
You received this message because you are subscribed to the Google Groups "mu-discuss" group.
To unsubscribe from this group and stop receiving emails from it, send an email to mu-discuss+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Laurence Rochfort

unread,
Feb 22, 2018, 1:01:31 PM2/22/18
to mu-di...@googlegroups.com
That makes a lot of sense, thanks Jon.

I guess the strike through messages are previously deleted related messages. That hadn't occurred to me.

Cheers,
Laurence.

To unsubscribe from this group and stop receiving emails from it, send an email to mu-discuss+...@googlegroups.com.

For more options, visit https://groups.google.com/d/optout.

--
You received this message because you are subscribed to a topic in the Google Groups "mu-discuss" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/mu-discuss/eld59KqAQ7E/unsubscribe.
To unsubscribe from this group and all its topics, send an email to mu-discuss+...@googlegroups.com.
Reply all
Reply to author
Forward
0 new messages