unofficial mirror of bug-gnu-emacs@gnu.org 
 help / color / mirror / code / Atom feed
* bug#22590: 24.5; gnus/nnimap: ticked messages not getting marked as read
@ 2016-02-07 22:41 Mike Kupfer
  2017-01-26 22:47 ` Lars Ingebrigtsen
  0 siblings, 1 reply; 3+ messages in thread
From: Mike Kupfer @ 2016-02-07 22:41 UTC (permalink / raw)
  To: 22590

[This message was originally sent to ding@gnus.org.  There was some
followup discussion on 2016-2-6 on that list.]

I have a couple different systems that I use to connect to an IMAP
server.  I've noticed that messages that I had read--or at least marked
as read--using Gnus on system A sometimes show up as unread using Gnus
on system B.  I've finally tracked it down to this scenario:

- a message is unread and flagged (ticked) on the IMAP server.  Gnus
  shows it and the next message in the summary buffer as ticked.  (I'm
  not sure that status of the second message is critical for reproducing
  the problem, but it seems to help.)
- in the Gnus summary buffer, I type "d" for the first message.  The
  message is marked "r" in the summary buffer, as expected.
- I exit the summary buffer and type "s" in the Group buffer
- I check the folder using Thunderbird; it shows the first message as no
  longer flagged, but it's still shown as unread.

I expect the first message to be shown as read ("seen").

This is with Emacs 24.5.

With the debugger I captured the following stack trace while exiting the
summary buffer:

    Debugger entered--entering a function:
    * nnimap-send-command("UID STORE %s %sFLAGS.SILENT (%s)" "257948" "-" "\\Flagged")
      nnimap-request-set-mark("INBOX" (((257948) del (tick))) "beehive")
      gnus-request-set-mark("nnimap+beehive:INBOX" (((257948) del (tick))))
      gnus-update-marks()
      gnus-summary-update-info()
      gnus-summary-exit()
      call-interactively(gnus-summary-exit nil nil)
      command-execute(gnus-summary-exit)

I didn't notice any calls to set the Seen flag.

I tried figuring out what's going on in gnus-update-marks, but it's a
bit confusing, because there's both a gnus-newsgroup-seen list and a
gnus-newsgroup-unseen list.  Though this bit of code seems odd:

	(when (eq (cdr type) 'seen)
	  (setq list (gnus-range-add list gnus-newsgroup-unseen)))

Is it really adding seen messages to the unseen list?

[end of original email]

In GNU Emacs 24.5.2 (x86_64-unknown-linux-gnu, X toolkit, Xaw scroll bars)
 of 2016-01-23 on allegro
Windowing system distributor `The X.Org Foundation', version 11.0.11604000
System Description:	Debian GNU/Linux 8.3 (jessie)

Important settings:
  value of $LC_TIME: C
  value of $LANG: en_US.utf8
  locale-coding-system: utf-8-unix

Major mode: Fundamental

Minor modes in effect:
  delete-selection-mode: t
  electric-indent-mode: t
  mouse-wheel-mode: t
  menu-bar-mode: t
  file-name-shadow-mode: t
  global-font-lock-mode: t
  auto-composition-mode: t
  auto-encryption-mode: t
  auto-compression-mode: t
  buffer-read-only: t
  transient-mark-mode: t

Recent messages:
lib/emacs/hacks.el: (lambda (buf) ...) quoted with ' rather than with #' [2 times]
lib/emacs/hacks.el: (lambda (name) ...) quoted with ' rather than with #'
Loading /home/kupfer/lib/emacs/hacks.el (source)...done
Loading /home/kupfer/lib/emacs/default.el (source)...
Loading /home/kupfer/lib/emacs/xtermkeys.el (source)...done
Loading vc...done
Loading /home/kupfer/lib/emacs/default.el (source)...done
Loading /home/kupfer/lib/emacs/xtermkeys.el (source)...done
Loading vc...done
For information about GNU Emacs and the GNU system, type M-H C-a.

Load-path shadows:
None found.

Features:
(shadow sort gnus-util mail-extr emacsbug message format-spec rfc822 mml
mml-sec mm-decode mm-bodies mm-encode mail-parse rfc2231 mailabbrev
gmm-utils mailheader sendmail rfc2047 rfc2045 ietf-drums mm-util
mail-prsvr mail-utils warnings server noutline outline easy-mmode comint
ansi-color ring xcscope easymenu advice help-fns ispell delsel vc
vc-dispatcher dired timeclock mdk-hacks time-date tooltip electric
uniquify ediff-hook vc-hooks lisp-float-type mwheel x-win x-dnd tool-bar
dnd fontset image regexp-opt fringe tabulated-list newcomment lisp-mode
prog-mode register page menu-bar rfn-eshadow timer select scroll-bar
mouse jit-lock font-lock syntax facemenu font-core frame cham georgian
utf-8-lang misc-lang vietnamese tibetan thai tai-viet lao korean
japanese hebrew greek romanian slovak czech european ethiopic indian
cyrillic chinese case-table epa-hook jka-cmpr-hook help simple abbrev
minibuffer nadvice loaddefs button faces cus-face macroexp files
text-properties overlay sha1 md5 base64 format env code-pages mule
custom widget hashtable-print-readable backquote make-network-process
inotify dynamic-setting font-render-setting x-toolkit x multi-tty emacs)

Memory information:
((conses 16 96193 3845)
 (symbols 48 21325 0)
 (miscs 40 89 99)
 (strings 32 19562 4494)
 (string-bytes 1 490564)
 (vectors 16 11281)
 (vector-slots 8 413359 2394)
 (floats 8 86 68)
 (intervals 56 194 0)
 (buffers 960 13)
 (heap 1024 11183 682))





^ permalink raw reply	[flat|nested] 3+ messages in thread

* bug#22590: 24.5; gnus/nnimap: ticked messages not getting marked as read
  2016-02-07 22:41 bug#22590: 24.5; gnus/nnimap: ticked messages not getting marked as read Mike Kupfer
@ 2017-01-26 22:47 ` Lars Ingebrigtsen
  2019-09-26 23:14   ` Lars Ingebrigtsen
  0 siblings, 1 reply; 3+ messages in thread
From: Lars Ingebrigtsen @ 2017-01-26 22:47 UTC (permalink / raw)
  To: Mike Kupfer; +Cc: 22590

Mike Kupfer <m.kupfer@acm.org> writes:

> - a message is unread and flagged (ticked) on the IMAP server.  Gnus
>   shows it and the next message in the summary buffer as ticked.  (I'm
>   not sure that status of the second message is critical for reproducing
>   the problem, but it seems to help.)
> - in the Gnus summary buffer, I type "d" for the first message.  The
>   message is marked "r" in the summary buffer, as expected.
> - I exit the summary buffer and type "s" in the Group buffer
> - I check the folder using Thunderbird; it shows the first message as no
>   longer flagged, but it's still shown as unread.

I think I understand what's going on.  In Gnus, there's no such thing as
"ticked and unread": Everything that's \Flagged in the IMAP server
becomes read in Gnus.  So when you remove the tick (i.e., \Flagged),
Gnus will propagate that change to the IMAP server, but since it thinks
that nothing has changed WRT readedness, it doesn't send that
information to the server...

I'm not sure what the best way to fix that is...

-- 
(domestic pets only, the antidote for overdose, milk.)
   bloggy blog: http://lars.ingebrigtsen.no





^ permalink raw reply	[flat|nested] 3+ messages in thread

* bug#22590: 24.5; gnus/nnimap: ticked messages not getting marked as read
  2017-01-26 22:47 ` Lars Ingebrigtsen
@ 2019-09-26 23:14   ` Lars Ingebrigtsen
  0 siblings, 0 replies; 3+ messages in thread
From: Lars Ingebrigtsen @ 2019-09-26 23:14 UTC (permalink / raw)
  To: Mike Kupfer; +Cc: 22590

Lars Ingebrigtsen <larsi@gnus.org> writes:

> Mike Kupfer <m.kupfer@acm.org> writes:
>
>> - a message is unread and flagged (ticked) on the IMAP server.  Gnus
>>   shows it and the next message in the summary buffer as ticked.  (I'm
>>   not sure that status of the second message is critical for reproducing
>>   the problem, but it seems to help.)
>> - in the Gnus summary buffer, I type "d" for the first message.  The
>>   message is marked "r" in the summary buffer, as expected.
>> - I exit the summary buffer and type "s" in the Group buffer
>> - I check the folder using Thunderbird; it shows the first message as no
>>   longer flagged, but it's still shown as unread.
>
> I think I understand what's going on.  In Gnus, there's no such thing as
> "ticked and unread": Everything that's \Flagged in the IMAP server
> becomes read in Gnus.  So when you remove the tick (i.e., \Flagged),
> Gnus will propagate that change to the IMAP server, but since it thinks
> that nothing has changed WRT readedness, it doesn't send that
> information to the server...
>
> I'm not sure what the best way to fix that is...

I now made nnimap update readedness when tickedness changes, which I
think should do the trick.

-- 
(domestic pets only, the antidote for overdose, milk.)
   bloggy blog: http://lars.ingebrigtsen.no





^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2019-09-26 23:14 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-02-07 22:41 bug#22590: 24.5; gnus/nnimap: ticked messages not getting marked as read Mike Kupfer
2017-01-26 22:47 ` Lars Ingebrigtsen
2019-09-26 23:14   ` Lars Ingebrigtsen

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/emacs.git

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).