all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* With lavabit, C-u RET is unable to select the Inbox group in gnus
@ 2018-01-30  5:41 gnuforever
  2018-01-30 14:30 ` Eric Abrahamsen
  0 siblings, 1 reply; 5+ messages in thread
From: gnuforever @ 2018-01-30  5:41 UTC (permalink / raw)
  To: help-gnu-emacs


Hello,

I am using gnus and facing weird behavior with the lavabit email service
(using IMAP)

I can only see "unread articles".

If there are no "unread articles", C-u RET hangs and emacs cpu usage
hits 100%. I can't do anything else, can't see the logs. I don't know what
it is doing at that time. C-g gives me the control back.

With evolution email client, everything is working. I can see my emails.

If I mark them as unread from evolution, then SPACE or RET or C-u RET
(This should show me all my emails but I only see the unread ones)
work.

Does anyone use lavabit email service with gnus email client?

Thanks for your feedback.

Steve




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

* Re: With lavabit, C-u RET is unable to select the Inbox group in gnus
  2018-01-30  5:41 With lavabit, C-u RET is unable to select the Inbox group in gnus gnuforever
@ 2018-01-30 14:30 ` Eric Abrahamsen
  2018-01-30 15:54   ` gnuforever
  0 siblings, 1 reply; 5+ messages in thread
From: Eric Abrahamsen @ 2018-01-30 14:30 UTC (permalink / raw)
  To: help-gnu-emacs

gnuforever <help@tuyizere.org> writes:

> Hello,
>
> I am using gnus and facing weird behavior with the lavabit email service
> (using IMAP)
>
> I can only see "unread articles".
>
> If there are no "unread articles", C-u RET hangs and emacs cpu usage
> hits 100%. I can't do anything else, can't see the logs. I don't know what
> it is doing at that time. C-g gives me the control back.

I guess the first thing to do would be M-x debug-on-quit, then C-u RET
and hang it, then C-g to get out of the hang. That should give you a
backtrace that you can provide here.




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

* Re: With lavabit, C-u RET is unable to select the Inbox group in gnus
  2018-01-30 14:30 ` Eric Abrahamsen
@ 2018-01-30 15:54   ` gnuforever
  2018-01-31 18:49     ` Eric Abrahamsen
  0 siblings, 1 reply; 5+ messages in thread
From: gnuforever @ 2018-01-30 15:54 UTC (permalink / raw)
  To: Eric Abrahamsen; +Cc: help-gnu-emacs



Eric Abrahamsen <eric@ericabrahamsen.net> writes:

> I guess the first thing to do would be M-x debug-on-quit,

Great command! I learn a lot of things here :-)
I was struggling how to find the logs while the process was hanging.

> That should give you a backtrace that you can provide here.

1. With this configuration:

(setq gnus-select-method
      '(nnimap "my-email@lavabit.com"
	       (nnimap-address "lavabit.com")
	       (nnimap-inbox "INBOX")
	       ;;(nnimap-split-methods default)
	       (nnimap-expunge t)
	       (nnimap-stream ssl)
               (nnimap-user "my-email@lavabit.com")))

I get:

Debugger entered--Lisp error: (quit)
  gnus-list-of-unread-articles("Inbox")
  gnus-select-newsgroup("Inbox" (4) nil)
  gnus-summary-read-group-1("Inbox" (4) t nil nil nil)
  gnus-summary-read-group("Inbox" (4) t nil nil nil nil)
  gnus-group-read-group((4) t)
  gnus-group-select-group((4))
  funcall-interactively(gnus-group-select-group (4))
  call-interactively(gnus-group-select-group nil nil)
  command-execute(gnus-group-select-group)

2. With this one:

(setq gnus-select-method '(nnnil ""))

(setq gnus-secondary-select-methods
      '((nnimap "my-email@lavabit.com"
		(nnimap-address "lavabit.com")
		(nnimap-inbox "INBOX")
		(nnimap-split-methods default)
		(nnimap-expunge t)
		(nnimap-stream ssl)
		(nnimap-server-port 993)
		(nnimap-user "my-email@lavabit.com"))))

I get:

Debugger entered--Lisp error: (quit)
  gnus-uncompress-range((1 . 537842298))
  gnus-articles-to-read("nnimap+my-email@lavabit.com:Inbox" (4))
  gnus-select-newsgroup("nnimap+my-email@lavabit.com:Inbox" (4) nil)
  gnus-summary-read-group-1("nnimap+my-email@lavabit.com:Inbox" (4) t nil nil nil)
  gnus-summary-read-group("nnimap+my-email@lavabit.com:Inbox" (4) t nil nil nil nil)
  gnus-group-read-group((4) t)
  gnus-group-select-group((4))
  gnus-topic-select-group((4))
  funcall-interactively(gnus-topic-select-group (4))
  call-interactively(gnus-topic-select-group nil nil)
  command-execute(gnus-topic-select-group)


Steve



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

* Re: With lavabit, C-u RET is unable to select the Inbox group in gnus
  2018-01-30 15:54   ` gnuforever
@ 2018-01-31 18:49     ` Eric Abrahamsen
  2018-02-01 19:57       ` gnuforever
  0 siblings, 1 reply; 5+ messages in thread
From: Eric Abrahamsen @ 2018-01-31 18:49 UTC (permalink / raw)
  To: help-gnu-emacs

gnuforever <help@tuyizere.org> writes:

> Eric Abrahamsen <eric@ericabrahamsen.net> writes:
>
>> I guess the first thing to do would be M-x debug-on-quit,
>
> Great command! I learn a lot of things here :-)
> I was struggling how to find the logs while the process was hanging.
>
>> That should give you a backtrace that you can provide here.
>
> 1. With this configuration:
>
> (setq gnus-select-method
>       '(nnimap "my-email@lavabit.com"
> 	       (nnimap-address "lavabit.com")
> 	       (nnimap-inbox "INBOX")
> 	       ;;(nnimap-split-methods default)
> 	       (nnimap-expunge t)
> 	       (nnimap-stream ssl)
>                (nnimap-user "my-email@lavabit.com")))
>
> I get:
>
> Debugger entered--Lisp error: (quit)
>   gnus-list-of-unread-articles("Inbox")
>   gnus-select-newsgroup("Inbox" (4) nil)
>   gnus-summary-read-group-1("Inbox" (4) t nil nil nil)
>   gnus-summary-read-group("Inbox" (4) t nil nil nil nil)
>   gnus-group-read-group((4) t)
>   gnus-group-select-group((4))
>   funcall-interactively(gnus-group-select-group (4))
>   call-interactively(gnus-group-select-group nil nil)
>   command-execute(gnus-group-select-group)
>
> 2. With this one:
>
> (setq gnus-select-method '(nnnil ""))
>
> (setq gnus-secondary-select-methods
>       '((nnimap "my-email@lavabit.com"
> 		(nnimap-address "lavabit.com")
> 		(nnimap-inbox "INBOX")
> 		(nnimap-split-methods default)
> 		(nnimap-expunge t)
> 		(nnimap-stream ssl)
> 		(nnimap-server-port 993)
> 		(nnimap-user "my-email@lavabit.com"))))
>
> I get:
>
> Debugger entered--Lisp error: (quit)
>   gnus-uncompress-range((1 . 537842298))
>   gnus-articles-to-read("nnimap+my-email@lavabit.com:Inbox" (4))
>   gnus-select-newsgroup("nnimap+my-email@lavabit.com:Inbox" (4) nil)
>   gnus-summary-read-group-1("nnimap+my-email@lavabit.com:Inbox" (4) t nil nil nil)
>   gnus-summary-read-group("nnimap+my-email@lavabit.com:Inbox" (4) t nil nil nil nil)
>   gnus-group-read-group((4) t)
>   gnus-group-select-group((4))
>   gnus-topic-select-group((4))
>   funcall-interactively(gnus-topic-select-group (4))
>   call-interactively(gnus-topic-select-group nil nil)
>   command-execute(gnus-topic-select-group)

Huh. I wonder why the second one isn't getting hung up on
`gnus-list-of-unread-articles'. Anyway, in both cases it seems like the
problem is that Gnus thinks there is a truly enormous number of messages
in your inbox (537,842,298 of them!), and is trying to handle that
quantity. I'm assuming you don't actually have half a billion messages?
How many *do* you have? I can't imagine how Gnus got that confused, but
you might try doing "C-u M-g" on your inbox in the *Group* buffer and
see if that corrects the problem.

Eric




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

* Re: With lavabit, C-u RET is unable to select the Inbox group in gnus
  2018-01-31 18:49     ` Eric Abrahamsen
@ 2018-02-01 19:57       ` gnuforever
  0 siblings, 0 replies; 5+ messages in thread
From: gnuforever @ 2018-02-01 19:57 UTC (permalink / raw)
  To: Eric Abrahamsen; +Cc: help-gnu-emacs


Eric Abrahamsen <eric@ericabrahamsen.net> writes:

> How many *do* you have?

I create the email a week ago. I only have 7 emails. 

> I can't imagine how Gnus got that confused, but
> you might try doing "C-u M-g" on your inbox in the *Group* buffer and
> see if that corrects the problem.

"C-u M-g" didn't fix it. It just jumps from the Inbox to another group in
the *Group* buffer

Steve



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

end of thread, other threads:[~2018-02-01 19:57 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-01-30  5:41 With lavabit, C-u RET is unable to select the Inbox group in gnus gnuforever
2018-01-30 14:30 ` Eric Abrahamsen
2018-01-30 15:54   ` gnuforever
2018-01-31 18:49     ` Eric Abrahamsen
2018-02-01 19:57       ` gnuforever

Code repositories for project(s) associated with this external index

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

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.