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 25008431FAF for ; Tue, 2 Apr 2013 15:42:08 -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 kT7ECPVJZSU4 for ; Tue, 2 Apr 2013 15:42:07 -0700 (PDT) Received: from mail-pb0-f46.google.com (mail-pb0-f46.google.com [209.85.160.46]) (using TLSv1 with cipher RC4-SHA (128/128 bits)) (No client certificate requested) by olra.theworths.org (Postfix) with ESMTPS id A0383431FAE for ; Tue, 2 Apr 2013 15:42:07 -0700 (PDT) Received: by mail-pb0-f46.google.com with SMTP id rp8so491408pbb.19 for ; Tue, 02 Apr 2013 15:42:07 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=x-received:from:to:cc:subject:date:message-id:x-mailer; bh=deMsaA+hTr6bRHbEwBBEq1EVDwPe4i59g98mqfFSQ0I=; b=eyeuK6gwbmb45hPLN5TWNMYD+bJwzl9XeXUt2T9C3QJqheJcV3KyKWitvO4sIN0CWZ hE87SMI3d+FgV273EvoUj923BTxKz6z2WD4CHFtD3y4tSfrd+kc6visZuBJui09XEJBL /KdW/X5QyDM7zriTTj1bu2+B/sd0MCacpUHOUZgDTU5xw5wVYLmOrh7hCSa4mr0Vdqgn tNtoKosl9E7ZEqffbKclKoDtHFKpf47wwcMTtShFNW3Zh9sc5yikdwQCQakfY1r0o7ds 9FEDZ5Rvm3H6TRLy/bGEkFHr3Nh1w0ctQkvVMxYUcMthvBP+Scu2YJOmu2/xGbbTBcVH V8GQ== X-Received: by 10.68.231.164 with SMTP id th4mr26265665pbc.198.1364942526905; Tue, 02 Apr 2013 15:42:06 -0700 (PDT) Received: from localhost (215.42.233.220.static.exetel.com.au. [220.233.42.215]) by mx.google.com with ESMTPS id z1sm3264710pbw.19.2013.04.02.15.42.03 (version=TLSv1.2 cipher=RC4-SHA bits=128/128); Tue, 02 Apr 2013 15:42:05 -0700 (PDT) From: Peter Wang To: notmuch@notmuchmail.org Subject: [PATCH v5 00/12] insert command Date: Wed, 3 Apr 2013 09:41:45 +1100 Message-Id: <1364942517-6982-1-git-send-email-novalazy@gmail.com> X-Mailer: git-send-email 1.7.12.1 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: Tue, 02 Apr 2013 22:42:08 -0000 - rebased - cleaned up insert_message, sync_dir error paths - clarified maildir destination in man page Peter Wang (12): tag-util: move out 'tag' command-line checks tag-util: do not reset list in parse_tag_command_line cli: add insert command man: document 'insert' command man: reference notmuch-insert.1 test: add tests for insert insert: add --folder option man: document insert --folder option test: test insert --folder option insert: add --create-folder option man: document insert --create-folder test: test insert --create-folder option Makefile.local | 1 + man/Makefile.local | 1 + man/man1/notmuch-config.1 | 4 +- man/man1/notmuch-count.1 | 4 +- man/man1/notmuch-dump.1 | 4 +- man/man1/notmuch-insert.1 | 64 ++++++ man/man1/notmuch-new.1 | 4 +- man/man1/notmuch-reply.1 | 3 +- man/man1/notmuch-restore.1 | 3 +- man/man1/notmuch-search.1 | 3 +- man/man1/notmuch-show.1 | 3 +- man/man1/notmuch-tag.1 | 3 +- man/man1/notmuch.1 | 3 +- man/man5/notmuch-hooks.5 | 4 +- man/man7/notmuch-search-terms.7 | 3 +- notmuch-client.h | 3 + notmuch-insert.c | 479 ++++++++++++++++++++++++++++++++++++++++ notmuch-tag.c | 5 + notmuch.c | 3 + tag-util.c | 8 +- tag-util.h | 2 + test/insert | 110 +++++++++ test/notmuch-test | 1 + 23 files changed, 696 insertions(+), 22 deletions(-) create mode 100644 man/man1/notmuch-insert.1 create mode 100644 notmuch-insert.c create mode 100755 test/insert -- 1.7.12.1