From a7c3b83fbf2f9c0b2182d61ff1de30c2f822390c Mon Sep 17 00:00:00 2001 From: Mark Walters Date: Sun, 25 Nov 2012 11:33:43 +0000 Subject: [PATCH] Re: [PATCH 1/3] test: Test notmuch new for single-message mbox --- 40/72d715c7e10ef44abedf110b4108b998db1144 | 114 ++++++++++++++++++++++ 1 file changed, 114 insertions(+) create mode 100644 40/72d715c7e10ef44abedf110b4108b998db1144 diff --git a/40/72d715c7e10ef44abedf110b4108b998db1144 b/40/72d715c7e10ef44abedf110b4108b998db1144 new file mode 100644 index 000000000..73db7a8cf --- /dev/null +++ b/40/72d715c7e10ef44abedf110b4108b998db1144 @@ -0,0 +1,114 @@ +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 53E2F431FAF + for ; Sun, 25 Nov 2012 03:33:53 -0800 (PST) +X-Virus-Scanned: Debian amavisd-new at olra.theworths.org +X-Spam-Flag: NO +X-Spam-Score: -1.098 +X-Spam-Level: +X-Spam-Status: No, score=-1.098 tagged_above=-999 required=5 + tests=[DKIM_ADSP_CUSTOM_MED=0.001, FREEMAIL_FROM=0.001, + NML_ADSP_CUSTOM_MED=1.2, RCVD_IN_DNSWL_MED=-2.3] 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 ZVTE7tmyIqVd for ; + Sun, 25 Nov 2012 03:33:52 -0800 (PST) +Received: from mail2.qmul.ac.uk (mail2.qmul.ac.uk [138.37.6.6]) + (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) + (No client certificate requested) + by olra.theworths.org (Postfix) with ESMTPS id 76459431FAE + for ; Sun, 25 Nov 2012 03:33:52 -0800 (PST) +Received: from smtp.qmul.ac.uk ([138.37.6.40]) + by mail2.qmul.ac.uk with esmtp (Exim 4.71) + (envelope-from ) + id 1TcaSz-0003vR-Bu; Sun, 25 Nov 2012 11:33:43 +0000 +Received: from 93-97-24-31.zone5.bethere.co.uk ([93.97.24.31] helo=localhost) + by smtp.qmul.ac.uk with esmtpsa (TLSv1:AES128-SHA:128) (Exim 4.69) + (envelope-from ) + id 1TcaSz-0004QU-1J; Sun, 25 Nov 2012 11:33:41 +0000 +From: Mark Walters +To: Austin Clements , notmuch@notmuchmail.org +Subject: Re: [PATCH 1/3] test: Test notmuch new for single-message mbox +In-Reply-To: <1353824161-31717-1-git-send-email-amdragon@mit.edu> +References: <1353824161-31717-1-git-send-email-amdragon@mit.edu> +User-Agent: Notmuch/0.14+81~g9730584 (http://notmuchmail.org) Emacs/23.4.1 + (x86_64-pc-linux-gnu) +Date: Sun, 25 Nov 2012 11:33:43 +0000 +Message-ID: <87k3t9kjc8.fsf@qmul.ac.uk> +MIME-Version: 1.0 +Content-Type: text/plain; charset=us-ascii +X-Sender-Host-Address: 93.97.24.31 +X-QM-SPAM-Info: Sender has good ham record. :) +X-QM-Body-MD5: 0c8b32bd9cb997a1f5e91a747ec83ec1 (of first 20000 bytes) +X-SpamAssassin-Score: -1.8 +X-SpamAssassin-SpamBar: - +X-SpamAssassin-Report: The QM spam filters have analysed this message to + determine if it is + spam. We require at least 5.0 points to mark a message as spam. + This message scored -1.8 points. + Summary of the scoring: + * -2.3 RCVD_IN_DNSWL_MED RBL: Sender listed at http://www.dnswl.org/, + * medium trust + * [138.37.6.40 listed in list.dnswl.org] + * 0.0 FREEMAIL_FROM Sender email is commonly abused enduser mail + provider * (markwalters1009[at]gmail.com) + * 0.5 AWL AWL: From: address is in the auto white-list +X-QM-Scan-Virus: ClamAV says the message is clean +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: Sun, 25 Nov 2012 11:33:53 -0000 + + +This series looks fine to me. +1 + +Mark + +On Sun, 25 Nov 2012, Austin Clements wrote: +> We support this for historical reasons. +> --- +> test/new | 13 +++++++++++++ +> 1 file changed, 13 insertions(+) +> +> diff --git a/test/new b/test/new +> index 587aa11..43d56e4 100755 +> --- a/test/new +> +++ b/test/new +> @@ -163,6 +163,19 @@ rm -rf "${MAIL_DIR}"/two +> output=$(NOTMUCH_NEW) +> test_expect_equal "$output" "No new mail. Removed 3 messages." +> +> +test_begin_subtest "Support single-message mbox" +> +cat > "${MAIL_DIR}"/mbox_file1 < +From test_suite@notmuchmail.org Fri Jan 5 15:43:57 2001 +> +From: Notmuch Test Suite +> +To: Notmuch Test Suite +> +Subject: Test mbox message 1 +> + +> +Body. +> +EOF +> +output=$(NOTMUCH_NEW 2>&1) +> +test_expect_equal "$output" \ +> +"Added 1 new message to the database." +> + +> # This test requires that notmuch new has been run at least once. +> test_begin_subtest "Skip and report non-mail files" +> generate_message +> -- +> 1.7.10.4 +> +> _______________________________________________ +> notmuch mailing list +> notmuch@notmuchmail.org +> http://notmuchmail.org/mailman/listinfo/notmuch -- 2.26.2