Return-Path: X-Original-To: notmuch@notmuchmail.org Delivered-To: notmuch@notmuchmail.org Received: from localhost (localhost [127.0.0.1]) by olra.theworths.org (Postfix) with ESMTP id 49795431FAF for ; Sat, 4 Feb 2012 14:07:49 -0800 (PST) X-Virus-Scanned: Debian amavisd-new at olra.theworths.org X-Spam-Flag: NO X-Spam-Score: 0 X-Spam-Level: X-Spam-Status: No, score=0 tagged_above=-999 required=5 tests=[none] autolearn=disabled Received: from olra.theworths.org ([127.0.0.1]) by localhost (olra.theworths.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id D23wS5OJWsIa for ; Sat, 4 Feb 2012 14:07:48 -0800 (PST) Received: from mail-lpp01m020-f181.google.com (mail-lpp01m020-f181.google.com [209.85.217.181]) (using TLSv1 with cipher RC4-SHA (128/128 bits)) (No client certificate requested) by olra.theworths.org (Postfix) with ESMTPS id 42E5D431FAE for ; Sat, 4 Feb 2012 14:07:48 -0800 (PST) Received: by lbbgn5 with SMTP id gn5so1149794lbb.26 for ; Sat, 04 Feb 2012 14:07:45 -0800 (PST) Received: by 10.112.98.37 with SMTP id ef5mr3336137lbb.73.1328393265450; Sat, 04 Feb 2012 14:07:45 -0800 (PST) Received: from localhost (dsl-hkibrasgw4-fe50f800-253.dhcp.inet.fi. [84.248.80.253]) by mx.google.com with ESMTPS id f2sm8577276lbw.5.2012.02.04.14.07.43 (version=SSLv3 cipher=OTHER); Sat, 04 Feb 2012 14:07:44 -0800 (PST) From: Jani Nikula To: Mark Walters , notmuch@notmuchmail.org Subject: Re: [PATCH v2 1/4] cli: add --from option to reply to restrict guessing of the From: header. In-Reply-To: <1328388317-20161-2-git-send-email-markwalters1009@gmail.com> References: <1328388317-20161-1-git-send-email-markwalters1009@gmail.com> <1328388317-20161-2-git-send-email-markwalters1009@gmail.com> User-Agent: Notmuch/0.11+139~g4340989 (http://notmuchmail.org) Emacs/23.3.1 (i686-pc-linux-gnu) Date: Sun, 05 Feb 2012 00:07:41 +0200 Message-ID: <87haz68d76.fsf@nikula.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-BeenThere: notmuch@notmuchmail.org X-Mailman-Version: 2.1.13 Precedence: list List-Id: "Use and development of the notmuch mail system." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 04 Feb 2012 22:07:49 -0000 On Sat, 4 Feb 2012 20:45:14 +0000, Mark Walters wrote: > Add an option --from= to notmuch-reply.c to restrict guessing of the > From: header. The existing logic looks as the main headers, then at > the delivery headers, and finally defaults to the config file address. > > This patch allows the user to restrict which of these guesses are > made. Currently the supported values are: > default|fallback-all current behaviour > fallback-received fallback to delivery headers but not config file > fallback-none only look at from/reply-to/to/cc/ headers > none From: header is always left empty The patch looks good. The "primary" option added in v2 is missing from the commit message, but no need to send a new version because of that. I didn't check the other patches in the series. BR, Jani. > > If the code does not find an allowed address it outputs an empty From: > line and the caller can decide how to respond. > --- > notmuch-reply.c | 45 ++++++++++++++++++++++++++++++++++++--------- > 1 files changed, 36 insertions(+), 9 deletions(-) > > diff --git a/notmuch-reply.c b/notmuch-reply.c > index f55b1d2..8c73cb7 100644 > --- a/notmuch-reply.c > +++ b/notmuch-reply.c > @@ -24,6 +24,15 @@ > #include "gmime-filter-reply.h" > #include "gmime-filter-headers.h" > > +/* The order here matters as we use '<' when deciding how to behave. */ > +enum { > + FROM_FALLBACK_ALL, > + FROM_FALLBACK_RECEIVED, > + FROM_FALLBACK_NONE, > + FROM_NONE, > + FROM_PRIMARY > +}; > + > static void > reply_headers_message_part (GMimeMessage *message); > > @@ -510,7 +519,8 @@ notmuch_reply_format_default(void *ctx, > notmuch_config_t *config, > notmuch_query_t *query, > notmuch_show_params_t *params, > - notmuch_bool_t reply_all) > + notmuch_bool_t reply_all, > + int from_select) > { > GMimeMessage *reply; > notmuch_messages_t *messages; > @@ -542,15 +552,22 @@ notmuch_reply_format_default(void *ctx, > from_addr = add_recipients_from_message (reply, config, message, > reply_all); > > - if (from_addr == NULL) > + if (from_addr == NULL && from_select <= FROM_FALLBACK_RECEIVED) > from_addr = guess_from_received_header (config, message); > > - if (from_addr == NULL) > + if ((from_addr == NULL && from_select <= FROM_FALLBACK_ALL) || > + from_select == FROM_PRIMARY) > from_addr = notmuch_config_get_user_primary_email (config); > > - from_addr = talloc_asprintf (ctx, "%s <%s>", > - notmuch_config_get_user_name (config), > - from_addr); > + /* If we have an address and we want an address print > + * it. Otherwise set an empty From: header. */ > + if (from_addr != NULL && from_select != FROM_NONE) { > + from_addr = talloc_asprintf (ctx, "%s <%s>", > + notmuch_config_get_user_name (config), > + from_addr); > + } else { > + from_addr = talloc_strdup (ctx, ""); > + } > g_mime_object_set_header (GMIME_OBJECT (reply), > "From", from_addr); > > @@ -590,7 +607,8 @@ notmuch_reply_format_headers_only(void *ctx, > notmuch_config_t *config, > notmuch_query_t *query, > unused (notmuch_show_params_t *params), > - notmuch_bool_t reply_all) > + notmuch_bool_t reply_all, > + unused (int from_select)) > { > GMimeMessage *reply; > notmuch_messages_t *messages; > @@ -657,10 +675,11 @@ notmuch_reply_command (void *ctx, int argc, char *argv[]) > notmuch_query_t *query; > char *query_string; > int opt_index, ret = 0; > - int (*reply_format_func)(void *ctx, notmuch_config_t *config, notmuch_query_t *query, notmuch_show_params_t *params, notmuch_bool_t reply_all); > + int (*reply_format_func)(void *ctx, notmuch_config_t *config, notmuch_query_t *query, notmuch_show_params_t *params, notmuch_bool_t reply_all, int from_select); > notmuch_show_params_t params = { .part = -1 }; > int format = FORMAT_DEFAULT; > int reply_all = TRUE; > + int from_select = FROM_FALLBACK_ALL; > notmuch_bool_t decrypt = FALSE; > > notmuch_opt_desc_t options[] = { > @@ -672,6 +691,14 @@ notmuch_reply_command (void *ctx, int argc, char *argv[]) > (notmuch_keyword_t []){ { "all", TRUE }, > { "sender", FALSE }, > { 0, 0 } } }, > + { NOTMUCH_OPT_KEYWORD, &from_select, "from", 'F', > + (notmuch_keyword_t []){ { "default", FROM_FALLBACK_ALL }, > + { "fallback-all", FROM_FALLBACK_ALL }, > + { "fallback-received", FROM_FALLBACK_RECEIVED }, > + { "fallback-none", FROM_FALLBACK_NONE }, > + { "none", FROM_NONE }, > + { "primary", FROM_PRIMARY }, > + { 0, 0 } } }, > { NOTMUCH_OPT_BOOLEAN, &decrypt, "decrypt", 'd', 0 }, > { 0, 0, 0, 0, 0 } > }; > @@ -732,7 +759,7 @@ notmuch_reply_command (void *ctx, int argc, char *argv[]) > return 1; > } > > - if (reply_format_func (ctx, config, query, ¶ms, reply_all) != 0) > + if (reply_format_func (ctx, config, query, ¶ms, reply_all, from_select) != 0) > return 1; > > notmuch_query_destroy (query); > -- > 1.7.2.3 > > _______________________________________________ > notmuch mailing list > notmuch@notmuchmail.org > http://notmuchmail.org/mailman/listinfo/notmuch