Re: Weird segfault with notmuch

2019-12-02 Thread Blake Sweeney
On Mon, Dec 02, 2019 at 04:20:21PM -0400, David Bremner wrote:
> Please try with xapian 1.4.14 (or 1.4.12)

I think I'm on xapian 1.4.14 now and that seems to fix it on this machine.
Thanks!


Blake Sweeney
___
notmuch mailing list
notmuch@notmuchmail.org
https://notmuchmail.org/mailman/listinfo/notmuch


Weird segfault with notmuch

2019-12-02 Thread Blake Sweeney
Hi,

Thanks for making notmuch it is an essential part of my email workflow! I
recently started getting a segfault with one tag command. It only seems to
happen with one tag and one search. Example below:

$ notmuch count tag:ebi::dba
349
$ notmuch count from:d...@ebi.ac.uk and to:bswee...@ebi.ac.uk
351
$ notmuch tag +ebi::dba -- from:d...@ebi.ac.uk and to:bswee...@ebi.ac.uk
zsh: segmentation fault  notmuch tag +ebi::dba from:d...@ebi.ac.uk and 
to:bswee...@ebi.ac.uk
$ notmuch tag +test -- to:bswee...@ebi.ac.uk and from:d...@ebi.ac.uk
zsh: segmentation fault  notmuch tag +test -- to:bswee...@ebi.ac.uk and 
from:d...@ebi.ac.uk

This happens on the command line or if I tag in a post-new hook. I am on 0.29.2
and this started recently. It also happens on two different machines, but both
have the same notmuch version. I haven't played around too much with this, I've
just skipped adding this tag automatically for now, but a workaround or fix
would be great. Thanks!


Blake Sweeney
___
notmuch mailing list
notmuch@notmuchmail.org
https://notmuchmail.org/mailman/listinfo/notmuch


Installation on Mac OS X Lion

2012-02-06 Thread Blake Sweeney

Quoting Saurabh Nanda (2012-02-05 03:27:38)
>Hi,
>
>I'm trying to install notmuchmail on my Mac box, but have (obviously) 
>run into dependancy issues (Xapian, GMime, Glib, talloc). Has anyone 
>managed to install notmuchmail on Mac OS X? How painful is it? Is it 
>possible to have a binary package for this?

I have notmuch installed on os x though I'm on 10.5. I used homebrew
(http://mxcl.github.com/homebrew/) to install it orginally. It took care of all
the dependencies. There may be macports of fink packages, but I haven't checked.
I later upgraded to 10.2 by installing notmuch manually. I had some troubles
with the python bindings, but I think that was just because my glib was too old.
Installing a glib a newer 2.4.x glib fixed it.


Blake



Re: Installation on Mac OS X Lion

2012-02-06 Thread Blake Sweeney

Quoting Saurabh Nanda (2012-02-05 03:27:38)
>Hi,
>
>I'm trying to install notmuchmail on my Mac box, but have (obviously) 
>run into dependancy issues (Xapian, GMime, Glib, talloc). Has anyone 
>managed to install notmuchmail on Mac OS X? How painful is it? Is it 
>possible to have a binary package for this?

I have notmuch installed on os x though I'm on 10.5. I used homebrew
(http://mxcl.github.com/homebrew/) to install it orginally. It took care of all
the dependencies. There may be macports of fink packages, but I haven't checked.
I later upgraded to 10.2 by installing notmuch manually. I had some troubles
with the python bindings, but I think that was just because my glib was too old.
Installing a glib a newer 2.4.x glib fixed it.


Blake

___
notmuch mailing list
notmuch@notmuchmail.org
http://notmuchmail.org/mailman/listinfo/notmuch


emacs email appears empty

2011-09-29 Thread Blake Sweeney
On Thu, 29 Sep 2011 12:57:37 +0100, Patrick Totzke  wrote:
Non-text part: multipart/mixed
> 
> Quoting David Bremner (2011-09-29 12:05:37)
> >On Thu, 29 Sep 2011 11:21:21 +1000, Brian May  >microcomaustralia.com.au> wrote:
> >> Hello,
> >> 
> >> Have seen several cases now where the message appears blank in the
> >> emacs interface. With nothing but the headers.
> >> 
> >> Pushing Shift+V shows the entire raw message. Nothing special, just a
> >> plain text email without any attachments.
> >
> >Any chance you could share such a message with us?
> >
> >d
> 
> I have seen something like this using alot but thought i'd be an error in my 
> code
> (did not test with emacs). It occurs with mails send as google sholar alerts.
> /p

I've seen something like this happen in the vim client as well. I've had it
occur with very few messages sent from an iPhone though. 


Re: emacs email appears empty

2011-09-29 Thread Blake Sweeney
On Thu, 29 Sep 2011 12:57:37 +0100, Patrick Totzke 
 wrote:
Non-text part: multipart/mixed
> 
> Quoting David Bremner (2011-09-29 12:05:37)
> >On Thu, 29 Sep 2011 11:21:21 +1000, Brian May 
> > wrote:
> >> Hello,
> >> 
> >> Have seen several cases now where the message appears blank in the
> >> emacs interface. With nothing but the headers.
> >> 
> >> Pushing Shift+V shows the entire raw message. Nothing special, just a
> >> plain text email without any attachments.
> >
> >Any chance you could share such a message with us?
> >
> >d
> 
> I have seen something like this using alot but thought i'd be an error in my 
> code
> (did not test with emacs). It occurs with mails send as google sholar alerts.
> /p

I've seen something like this happen in the vim client as well. I've had it
occur with very few messages sent from an iPhone though. 
___
notmuch mailing list
notmuch@notmuchmail.org
http://notmuchmail.org/mailman/listinfo/notmuch


[PATCH 0/2] vim plugin: implement viewing/saving attachments

2011-09-18 Thread Blake Sweeney
On Fri, 16 Sep 2011 21:27:48 -0500, Ryan Harper  wrote:
> I've just started using notmuch and the vim plugin.  I'm almost ready to ditch
> my mutt config, but I really needed attachment viewing/saving.
> 
> I've got something functional, but I've never hacked on vimscript before so
> looking for feedback on how to clean up the patches.
> 
> 
> Ryan --- Give a man a beer, he'll drink for the day. Teach a man to brew,
> he'll be drunk the rest of his life.
> 

In the second patch you have a typo, the function is called
NM_show_save_mime_part in the config but should be called
NM_show_save_mime_parts. Other than that, I tried it and like it. 


Re: [PATCH 0/2] vim plugin: implement viewing/saving attachments

2011-09-18 Thread Blake Sweeney
On Fri, 16 Sep 2011 21:27:48 -0500, Ryan Harper  wrote:
> I've just started using notmuch and the vim plugin.  I'm almost ready to ditch
> my mutt config, but I really needed attachment viewing/saving.
> 
> I've got something functional, but I've never hacked on vimscript before so
> looking for feedback on how to clean up the patches.
> 
> 
> Ryan --- Give a man a beer, he'll drink for the day. Teach a man to brew,
> he'll be drunk the rest of his life.
> 

In the second patch you have a typo, the function is called
NM_show_save_mime_part in the config but should be called
NM_show_save_mime_parts. Other than that, I tried it and like it. 
___
notmuch mailing list
notmuch@notmuchmail.org
http://notmuchmail.org/mailman/listinfo/notmuch