[Review] Re: new "crypto" branch providing full PGP/MIME support

2011-02-26 Thread David Bremner
On Wed, 02 Feb 2011 17:18:45 -0800, Jameson Rollins  wrote:
> Hi, all.  I have pushed a new branch called "crypto" to my notmuch
> repository [0].  This branch provides full support for PGP/MIME signed
> and encrypted messages, including emacs UI support.  It has been applied
> on top of cworth's current master (21e97c50).  It includes the
> following:
> 

Further to our discussion on IRC the other day about providing feedback
on patches, I have run these patches pretty much all of February with
no glitches.  I am running them on 3 different machines, although they
are all Debian AMD64 boxes.

David

P.S. I also started the (possibly goofy) idea of putting [Review] in the
subject to highlight the fact there is feedback on the patches.


running the crypto branch [was: Re: Hiding HTML mime-parts and/or scrubbing (gmail's) HTML-based citation]

2011-02-26 Thread Jameson Rollins
On Sun, 27 Feb 2011 01:00:08 +0100, Xavier Maillard  
wrote:
> What is the easy way to switch to your codebase from notmuch mainline ?
> I mean, what exact commands do we need to type in order to use your
> branch code ? Knowing that would certainly help people in switching and
> testing your code.

Hey, Xavier.  Thanks for asking.  Here's what I would suggest:

1. Add my public repo as a remote in your notmuch git repository:

$ git remote add jrollins git://finestructure.net/notmuch

2. Update your remotes to pull in the remote branches

$ git remote update

At this point you should see my public branches as remote-tracking
branches in your repository, e.g.:

$ git branch -a
...
  remotes/jrollins/crypto
  remotes/jrollins/master
  remotes/jrollins/personal

3. Check out my crypto branch into a local branch:

$ git checkout --track jrollins/crypto

This will put you in a new local branch in your repository called
"crypto" that will be tracking my public crypto branch.

4. Compile notmuch in the crypto branch and install it, however you
usually do.  I do something like this:

./configure --prefix=~/opt/notmuch
make
make test
make install

I then run notmuch in emacs like this:

export LD_LIBRARY_PATH=~/opt/notmuch/lib:$LD_LIBRARY_PATH
emacs -L ~/opt/notmuch/share/emacs/site-lisp -f notmuch

I hope that helps.  Please let me know if you have any other questions.
And of course we'd love to hear any and all feedback on the new
cryptographic features!

jamie.
-- next part --
A non-text attachment was scrubbed...
Name: not available
Type: application/pgp-signature
Size: 835 bytes
Desc: not available
URL: 
<http://notmuchmail.org/pipermail/notmuch/attachments/20110226/01c1cd5b/attachment.pgp>


encoding problem with Emacs notmuch.el

2011-02-26 Thread Erik Colson
Ehlo,

I installed notmuch with the notmuch.el interface.
Works well except for an encoding problem.
In the *notmuch-search- buffer, encoding is wrong. This is also true for
the article buffers.

Look at this screenshot which shows the problem.
-- next part --
A non-text attachment was scrubbed...
Name: Screen shot 2011-02-26 at 15.05.08.png
Type: image/png
Size: 23934 bytes
Desc: not available
URL: 
<http://notmuchmail.org/pipermail/notmuch/attachments/20110226/608faa2b/attachment-0001.png>
-- next part --

Please note that entering accentuated chars in the *notmuch-hello*
buffer works correctly and searches are executed correctly.

Any ideas ?

Best
-- 
erik colson
ecocode.net


encoding problem with Emacs notmuch.el

2011-02-26 Thread David Bremner
On Sat, 26 Feb 2011 15:12:12 +0100, Erik Colson  wrote:
> Ehlo,
> 
> I installed notmuch with the notmuch.el interface.
> Works well except for an encoding problem.
> In the *notmuch-search- buffer, encoding is wrong. This is also true for
> the article buffers.

Hi Erik; 

Sorry this is a bit formulaic, but:

Can you tell us your locale, and maybe provide a test message, so that
we can try an duplicate the problem? Also can you try with a minimal
.emacs, just enough to load notmuch.

Thanks,

David


encoding problem with Emacs notmuch.el

2011-02-26 Thread Erik Colson
Ehlo,

I installed notmuch with the notmuch.el interface.
Works well except for an encoding problem.
In the *notmuch-search- buffer, encoding is wrong. This is also true for
the article buffers.

Look at this screenshot which shows the problem.
attachment: Screen shot 2011-02-26 at 15.05.08.png
Please note that entering accentuated chars in the *notmuch-hello*
buffer works correctly and searches are executed correctly.

Any ideas ?

Best
-- 
erik colson
ecocode.net
___
notmuch mailing list
notmuch@notmuchmail.org
http://notmuchmail.org/mailman/listinfo/notmuch


Re: Hiding HTML mime-parts and/or scrubbing (gmail's) HTML-based citation

2011-02-26 Thread Xavier Maillard
Hi Rob,

On Tue, 22 Feb 2011 19:13:26 -0600, Rob Browning r...@defaultvalue.org wrote:

 The Display Customization section in the emacs/mime info pages might
 also be interesting.  i.e. at the moment I use
 mm-discouraged-alternatives like this (via Gnus):
 
   (setq mm-discouraged-alternatives
 '(text/html text/richtext)
 mm-automatic-display
 (remove text/html mm-automatic-display))

Doest it have any action on notmuch.el buffers or is it just some
GNUS/Mime specific setup ?

Thank you

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


Re: Hiding HTML mime-parts and/or scrubbing (gmail's) HTML-based citation

2011-02-26 Thread Xavier Maillard
Hi,

On Wed, 23 Feb 2011 11:01:27 -0800, Jameson Rollins 
jroll...@finestructure.net wrote:
 On Wed, 23 Feb 2011 15:10:22 +0100, Albin Stjerna al...@eval.nu wrote:
  On Tue, 22 Feb 2011 14:59:03 -0500, Daniel Kahn Gillmor 
  d...@fifthhorseman.net wrote:
  
   I'm running the crypto branch (from jrollins, available at
   git://finestructure.net/notmuch ), which incorporates dme's multipart
   MIME overhaul.
  
  Ah. I've now built and installed that one, and it works as you described
  it. Thanks!
  
  Is there a plan for the inclusion of this branch in mainline notmuch?
 
 Carl has expressed interest in the crypto work, but he hasn't commented
 on the work in that branch directly yet.  I will certainly continue to
 push for it's inclusion.

What is the easy way to switch to your codebase from notmuch mainline ?
I mean, what exact commands do we need to type in order to use your
branch code ? Knowing that would certainly help people in switching and
testing your code.

Thank you

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


running the crypto branch [was: Re: Hiding HTML mime-parts and/or scrubbing (gmail's) HTML-based citation]

2011-02-26 Thread Jameson Rollins
On Sun, 27 Feb 2011 01:00:08 +0100, Xavier Maillard xav...@maillard.im wrote:
 What is the easy way to switch to your codebase from notmuch mainline ?
 I mean, what exact commands do we need to type in order to use your
 branch code ? Knowing that would certainly help people in switching and
 testing your code.

Hey, Xavier.  Thanks for asking.  Here's what I would suggest:

1. Add my public repo as a remote in your notmuch git repository:

$ git remote add jrollins git://finestructure.net/notmuch

2. Update your remotes to pull in the remote branches

$ git remote update

At this point you should see my public branches as remote-tracking
branches in your repository, e.g.:

$ git branch -a
...
  remotes/jrollins/crypto
  remotes/jrollins/master
  remotes/jrollins/personal

3. Check out my crypto branch into a local branch:

$ git checkout --track jrollins/crypto

This will put you in a new local branch in your repository called
crypto that will be tracking my public crypto branch.

4. Compile notmuch in the crypto branch and install it, however you
usually do.  I do something like this:

./configure --prefix=~/opt/notmuch
make
make test
make install

I then run notmuch in emacs like this:

export LD_LIBRARY_PATH=~/opt/notmuch/lib:$LD_LIBRARY_PATH
emacs -L ~/opt/notmuch/share/emacs/site-lisp -f notmuch

I hope that helps.  Please let me know if you have any other questions.
And of course we'd love to hear any and all feedback on the new
cryptographic features!

jamie.


pgpeDM3xYGyXm.pgp
Description: PGP signature
___
notmuch mailing list
notmuch@notmuchmail.org
http://notmuchmail.org/mailman/listinfo/notmuch


[Review] Re: new crypto branch providing full PGP/MIME support

2011-02-26 Thread David Bremner
On Wed, 02 Feb 2011 17:18:45 -0800, Jameson Rollins 
jroll...@finestructure.net wrote:
 Hi, all.  I have pushed a new branch called crypto to my notmuch
 repository [0].  This branch provides full support for PGP/MIME signed
 and encrypted messages, including emacs UI support.  It has been applied
 on top of cworth's current master (21e97c50).  It includes the
 following:
 

Further to our discussion on IRC the other day about providing feedback
on patches, I have run these patches pretty much all of February with
no glitches.  I am running them on 3 different machines, although they
are all Debian AMD64 boxes.

David

P.S. I also started the (possibly goofy) idea of putting [Review] in the
subject to highlight the fact there is feedback on the patches.
___
notmuch mailing list
notmuch@notmuchmail.org
http://notmuchmail.org/mailman/listinfo/notmuch