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 29EAB431FAF for ; Wed, 25 Jul 2012 17:50:06 -0700 (PDT) X-Virus-Scanned: Debian amavisd-new at olra.theworths.org X-Spam-Flag: NO X-Spam-Score: -0.799 X-Spam-Level: X-Spam-Status: No, score=-0.799 tagged_above=-999 required=5 tests=[DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, FREEMAIL_FROM=0.001, RCVD_IN_DNSWL_LOW=-0.7] 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 TSXPtB39EiKe for ; Wed, 25 Jul 2012 17:50:05 -0700 (PDT) Received: from mail-yw0-f53.google.com (mail-yw0-f53.google.com [209.85.213.53]) (using TLSv1 with cipher RC4-SHA (128/128 bits)) (No client certificate requested) by olra.theworths.org (Postfix) with ESMTPS id 9C622431FAE for ; Wed, 25 Jul 2012 17:50:05 -0700 (PDT) Received: by yhp26 with SMTP id 26so1725479yhp.26 for ; Wed, 25 Jul 2012 17:50:04 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=date:message-id:from:to:cc:subject:in-reply-to:references :mime-version:content-type:content-disposition :content-transfer-encoding; bh=HAy16/VpbbKrdCGqDN3qsy00UXx8O9gvrOa8bMdNbJM=; b=JnNloHHidegQEaF+YIBL++17HpfkJnK23qfWEB8mrCISIbbgCtm3r3/mGBlc9V/1S5 Y35BNijl1rIus5ZMS5dgafvgYr+cBlMRr4LaThc4MnMP7L4kFTwsswhPWROvAaZ1R92M N+4KIk2jjFnCu7RjH3EhHt5rQz574Bxix57vByf/pAzVYp274IJoPt3QOcGwsSHbqhi5 UZWNZrAVQDzKvegoQ9ZhnPArIx8zyyAVhXGOuBIqMVmeHJAWK/0wG6LbS8B/LjWiu7NH fH03MG/00QWlZpb4sSZsB11uSWibezBfbl3XAUERt3iSRZhN0/VIuXDsSvRtlj2JXs9Z sa2g== Received: by 10.66.84.137 with SMTP id z9mr6437619pay.18.1343263803586; Wed, 25 Jul 2012 17:50:03 -0700 (PDT) Received: from localhost (215.42.233.220.static.exetel.com.au. [220.233.42.215]) by mx.google.com with ESMTPS id wa14sm15370869pbc.10.2012.07.25.17.50.00 (version=TLSv1/SSLv3 cipher=OTHER); Wed, 25 Jul 2012 17:50:02 -0700 (PDT) Date: Thu, 26 Jul 2012 10:49:53 +1000 Message-ID: <20120726104953.GC24275@lucy.WAG320N> From: Peter Wang To: Jameson Graef Rollins Subject: Re: [PATCH 01/18] cli: add stub for insert command In-Reply-To: <871ujz6a19.fsf@servo.finestructure.net> References: <1343223767-9812-1-git-send-email-novalazy@gmail.com> <871ujz6a19.fsf@servo.finestructure.net> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline Content-Transfer-Encoding: 8bit Cc: notmuch@notmuchmail.org 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: Thu, 26 Jul 2012 00:50:06 -0000 On Wed, 25 Jul 2012 10:11:14 -0700, Jameson Graef Rollins wrote: > > This is an interesting series, but let me play devil's advocate for a > moment: Why is this functionality needed? What can this functionality > do that notmuch new can't? My mail is stored on a remote server running notmuch. My email client runs locally, calling notmuch on the server via ssh. After sending a message, I immediately add that message to the Maildir/Sent folder and tag it `sent'. When postponing a message, I add the message to the Maildir/Drafts folder and tag it `draft' (excluded by default). notmuch new doesn't help me get the message into the Maildir in the first place. I would also need a second step to tag the messages. Right now notmuch-deliver serves my purposes, but I would prefer it to be part of notmuch. Peter