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 AE194429E25 for ; Fri, 4 Nov 2011 16:20:13 -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 OJ95NFw-BlJ9 for ; Fri, 4 Nov 2011 16:20:13 -0700 (PDT) Received: from mail-fx0-f53.google.com (mail-fx0-f53.google.com [209.85.161.53]) (using TLSv1 with cipher RC4-SHA (128/128 bits)) (No client certificate requested) by olra.theworths.org (Postfix) with ESMTPS id 282D5431FB6 for ; Fri, 4 Nov 2011 16:20:13 -0700 (PDT) Received: by faan15 with SMTP id n15so200369faa.26 for ; Fri, 04 Nov 2011 16:20:11 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=date:from:to:cc:subject:message-id:mail-followup-to:mime-version :content-type:content-disposition:user-agent; bh=pLowjz1rjTmlIz15A8H20lm0gyk9UAeb2YSoLGT0piA=; b=AaG/wSCdTQFLiFNPqFrb3/lgQx/CMxuh3XUfI/8IY8GW05JfTy3Uw/Vh2ybCmA3VWo dw2ZUWO+ziZdSpFTZP5BbwhliFthNeLbsz/1d/YTqm2y4Em8YXbJivxj7jyoAsKpjYWr oG7zwCG8uCYwN5kPD2Frp4PFYUOQYw60Xek1s= Received: by 10.152.106.130 with SMTP id gu2mr1721179lab.37.1320448811564; Fri, 04 Nov 2011 16:20:11 -0700 (PDT) Received: from localhost ([88.251.190.249]) by mx.google.com with ESMTPS id no9sm895319lab.0.2011.11.04.16.20.08 (version=TLSv1/SSLv3 cipher=OTHER); Fri, 04 Nov 2011 16:20:09 -0700 (PDT) Date: Sat, 5 Nov 2011 01:20:06 +0200 From: Ali Polatel To: Notmuch Mailing List Subject: notmuch-deliver under contrib/ Message-ID: <20111104232005.GA17730@hayalet> Mail-Followup-To: Notmuch Mailing List , David Riebenbauer MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii; format=flowed Content-Disposition: inline User-Agent: Mutt/1.5.21 (2010-09-15) 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: Fri, 04 Nov 2011 23:20:13 -0000 Hello, I have just moved the notmuch-deliver repository to main notmuch repository under contrib/notmuch-deliver/. David, please send your github pull requests as patches to the mailing list for discussion. I have a few comments on them before I can apply. Personal Note: Below is the script I have written to move the repository. Just to make sure it does not get lost: #!/bin/sh set -e set -x mkdir -p contrib/notmuch-deliver git filter-branch \ --msg-filter \ 'sed -e "1s/^\([^(Merge)]\)/notmuch-deliver: \1/"' \ --index-filter \ 'git ls-files -s | sed "s~\t\"*~&contrib/notmuch-deliver/~" | GIT_INDEX_FILE=$GIT_INDEX_FILE.new \ git update-index --index-info && mv "$GIT_INDEX_FILE.new" "$GIT_INDEX_FILE"' HEAD cd ../notmuch git pull "$OLDPWD" git pull --rebase -alip