On Mon, 20 Jun 2011 09:15:06 +0200, Sebastien Binet <seb.binet@gmail.com> wrote: > recently, using the head of notmuch-git: > > git://notmuchmail.org/git/notmuch > > when a mail ends with an url and is recognized as a signature: ... > I can't hit [space] to go to the next thread and I get the following > error: > End of buffer Hey, Sebastien. I'm guessing that it is probably the *next* message in the thread that is the problem, not the end of the one that you're seeing. If you can determine the message id's of this message and the next one in the thread it will probably help with debugging. If you haven't yet, it usually helps in debugging to view the messages in the terminal? You can copy the thread-id into the clipboard by hitting "c i" when the cursor is over this thread in the notmuch search buffer, and then you can view the thread on the command line with: notmuch show thread:<thread-id> It might be hard to see if there are any problems in the output, but you can at least see gmime is throwing an error by redirecting stdout to /dev/null: notmuch show thread:<thread-id> >/dev/null You can try determining the message-ids with something like: notmuch show thread:<thread-id> | grep id You can then view the raw messages with: notmuch show --format=raw id:<message-id> If you feel comfortable doing so, it might help to forward the suspect message to the list. > this does not show up when using the 'release-candidate/0.6' branch of: > git://finestructure.net/notmuch The release-candidate/0.6 is a bit out-of-date at the moment, as most of it's features have been incorporate into notmuch/master, and I doubt that the ones that haven't would be related to the issue you're seeing. hth. jamie.