unofficial mirror of notmuch@notmuchmail.org
 help / color / mirror / code / Atom feed
From: Tomi Ollila <tomi.ollila@iki.fi>
To: David Bremner <david@tethera.net>, notmuch@notmuchmail.org
Subject: Re: [PATCH 4/4] CLI/insert: escape envelope from
Date: Sat, 19 Feb 2022 23:47:21 +0200	[thread overview]
Message-ID: <m2k0dqjzpy.fsf@guru.guru-group.fi> (raw)
In-Reply-To: <20220213152751.3015318-5-david@tethera.net>

On Sun, Feb 13 2022, David Bremner wrote:

> The idea is to do as little parsing and modification of the delivered
> message as possible. Luckily the position of the "envelope header"
> lets us escape it by replacing the first 5 characters of the stream
> with a regular header name (with ':').
> ---
>  notmuch-insert.c    | 15 ++++++++++++++-
>  test/T070-insert.sh |  1 -
>  2 files changed, 14 insertions(+), 2 deletions(-)
>
> diff --git a/notmuch-insert.c b/notmuch-insert.c
> index bec25a2a..d1244384 100644
> --- a/notmuch-insert.c
> +++ b/notmuch-insert.c
> @@ -267,10 +267,13 @@ static bool
>  copy_fd (int fdout, int fdin)
>  {
>      bool empty = true;
> +    bool first = true;
> +    const char *header="X-Envelope-From: ";

spaces

>  
>      while (! interrupted) {
>  	ssize_t remain;
>  	char buf[4096];
> +	const char *p = buf;
>  
>  	remain = read (fdin, buf, sizeof (buf));
>  	if (remain == 0)
> @@ -282,7 +285,17 @@ copy_fd (int fdout, int fdin)
>  		     strerror (errno));
>  	    return false;
>  	}
> -	if (! write_buf (buf, fdout, remain))
> +
> +	if (first && remain >= 5 && 0 == strncmp (buf, "From ", 5)) {
> +	    if (! write_buf (header, fdout, strlen (header)))

Probably optimizing compiler can replace strlen (header) with constant
value -- it does not matter but had to mention :D

Code changes look good to me.

Tomi


> +		return false;
> +	    p += 5;
> +	    remain -= 5;
> +	}
> +
> +	first = false;
> +
> +	if (! write_buf (p, fdout, remain))
>  	    return false;
>  	empty = false;
>      }
> diff --git a/test/T070-insert.sh b/test/T070-insert.sh
> index a297fa73..e1e3b151 100755
> --- a/test/T070-insert.sh
> +++ b/test/T070-insert.sh
> @@ -293,7 +293,6 @@ for code in OUT_OF_MEMORY XAPIAN_EXCEPTION ; do
>  done
>  
>  test_begin_subtest "insert converts mboxes on delivery"
> -test_subtest_known_broken
>  notmuch insert +unmboxed < "${TEST_DIRECTORY}"/corpora/indexing/mbox-attachment.eml
>  output=$(notmuch count tag:unmboxed)
>  test_expect_equal "${output}" 1
> -- 
> 2.34.1

  reply	other threads:[~2022-02-19 21:47 UTC|newest]

Thread overview: 7+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-02-13 15:27 Escape mbox "From " header in notmuch-insert David Bremner
2022-02-13 15:27 ` [PATCH 1/4] test: start new corpus of test messages for indexing code David Bremner
2022-02-13 15:27 ` [PATCH 2/4] test: add known broken test for insert with mbox as input David Bremner
2022-02-13 15:27 ` [PATCH 3/4] CLI/insert: split copy_fd David Bremner
2022-02-13 15:27 ` [PATCH 4/4] CLI/insert: escape envelope from David Bremner
2022-02-19 21:47   ` Tomi Ollila [this message]
2022-02-20  2:25     ` David Bremner

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

  List information: https://notmuchmail.org/

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=m2k0dqjzpy.fsf@guru.guru-group.fi \
    --to=tomi.ollila@iki.fi \
    --cc=david@tethera.net \
    --cc=notmuch@notmuchmail.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this public inbox

	https://yhetil.org/notmuch.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).