From mboxrd@z Thu Jan 1 00:00:00 1970 From: Pierre Habouzit Subject: [PATCH 1/5] git send-email: make the message file name more specific. Date: Tue, 4 Nov 2008 17:24:14 +0100 Message-ID: <1225815858-30617-2-git-send-email-madcoder@debian.org> References: <1225450632-7230-1-git-send-email-madcoder@debian.org> <1225815858-30617-1-git-send-email-madcoder@debian.org> Cc: Pierre Habouzit To: git@vger.kernel.org X-From: git-owner@vger.kernel.org Tue Nov 04 17:25:44 2008 connect(): Connection refused Return-path: Envelope-to: gcvg-git-2@gmane.org Received: from vger.kernel.org ([209.132.176.167]) by lo.gmane.org with esmtp (Exim 4.50) id 1KxOiu-0006x8-6C for gcvg-git-2@gmane.org; Tue, 04 Nov 2008 17:25:44 +0100 Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754729AbYKDQYZ (ORCPT ); Tue, 4 Nov 2008 11:24:25 -0500 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1754799AbYKDQYY (ORCPT ); Tue, 4 Nov 2008 11:24:24 -0500 Received: from pan.madism.org ([88.191.52.104]:54654 "EHLO hermes.madism.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753875AbYKDQYW (ORCPT ); Tue, 4 Nov 2008 11:24:22 -0500 Received: from madism.org (unknown [213.223.38.254]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client CN "artemis.madism.org", Issuer "madism.org" (verified OK)) by hermes.madism.org (Postfix) with ESMTPS id 531FE3BFFA; Tue, 4 Nov 2008 17:24:21 +0100 (CET) Received: by madism.org (Postfix, from userid 1000) id 5FC06373D9; Tue, 4 Nov 2008 17:24:18 +0100 (CET) X-Mailer: git-send-email 1.6.0.3.844.gcde3 In-Reply-To: <1225815858-30617-1-git-send-email-madcoder@debian.org> Sender: git-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: git@vger.kernel.org Archived-At: This helps editors choosing their syntax hilighting properly. Also make the file live under the git directory. Signed-off-by: Pierre Habouzit --- git-send-email.perl | 4 +--- 1 files changed, 1 insertions(+), 3 deletions(-) diff --git a/git-send-email.perl b/git-send-email.perl index 94ca5c8..aaace02 100755 --- a/git-send-email.perl +++ b/git-send-email.perl @@ -124,9 +124,6 @@ my $auth; sub unique_email_list(@); sub cleanup_compose_files(); -# Constants (essentially) -my $compose_filename = ".msg.$$"; - # Variables we fill in automatically, or via prompting: my (@to,@cc,@initial_cc,@bcclist,@xh, $initial_reply_to,$initial_subject,@files,$author,$sender,$smtp_authpass,$compose,$time); @@ -149,6 +146,7 @@ if ($@) { # Behavior modification variables my ($quiet, $dry_run) = (0, 0); +my $compose_filename = $repo->repo_path() . "/.gitsendemail.msg.$$"; # Variables with corresponding config settings my ($thread, $chain_reply_to, $suppress_from, $signed_off_by_cc, $cc_cmd); -- 1.5.6.5