| OLD | NEW |
| (Empty) |
| 1 X-Original-To: jm@jmason.org | |
| 2 Delivered-To: jm@dogma.boxhost.net | |
| 3 Received: from localhost [127.0.0.1] | |
| 4 by localhost with IMAP (fetchmail-6.2.5) | |
| 5 for jm@localhost (single-drop); Wed, 12 Apr 2006 01:52:04 +0100 (IST) | |
| 6 Received: from mail.apache.org (hermes.apache.org [209.237.227.199]) | |
| 7 by dogma.boxhost.net (Postfix) with SMTP id 34F07310051 | |
| 8 for <jm@jmason.org>; Wed, 12 Apr 2006 01:44:17 +0100 (IST) | |
| 9 Received: (qmail 71414 invoked by uid 500); 12 Apr 2006 00:44:16 -0000 | |
| 10 Mailing-List: contact commits-help@spamassassin.apache.org; run by ezmlm | |
| 11 Precedence: bulk | |
| 12 list-help: <mailto:commits-help@spamassassin.apache.org> | |
| 13 list-unsubscribe: <mailto:commits-unsubscribe@spamassassin.apache.org> | |
| 14 List-Post: <mailto:commits@spamassassin.apache.org> | |
| 15 Reply-To: "SpamAssassin Dev" <dev@spamassassin.apache.org> | |
| 16 List-Id: <commits.spamassassin.apache.org> | |
| 17 Delivered-To: mailing list commits@spamassassin.apache.org | |
| 18 Received: (qmail 71403 invoked by uid 99); 12 Apr 2006 00:44:16 -0000 | |
| 19 Received: from asf.osuosl.org (HELO asf.osuosl.org) (140.211.166.49) | |
| 20 by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 11 Apr 2006 17:44:16 -0700 | |
| 21 X-ASF-Spam-Status: No, hits=-9.4 required=10.0 | |
| 22 tests=ALL_TRUSTED,NO_REAL_NAME | |
| 23 Received: from [209.237.227.194] (HELO minotaur.apache.org) (209.237.227.194) | |
| 24 by apache.org (qpsmtpd/0.29) with SMTP; Tue, 11 Apr 2006 17:44:15 -0700 | |
| 25 Received: (qmail 51950 invoked by uid 65534); 12 Apr 2006 00:43:55 -0000 | |
| 26 Message-ID: <20060412004355.51949.qmail@minotaur.apache.org> | |
| 27 Content-Type: text/plain; charset="utf-8" | |
| 28 MIME-Version: 1.0 | |
| 29 Content-Transfer-Encoding: 7bit | |
| 30 Subject: svn commit: r393348 - /spamassassin/trunk/sa-update.raw | |
| 31 Date: Wed, 12 Apr 2006 00:43:54 -0000 | |
| 32 To: commits@spamassassin.apache.org | |
| 33 From: felicity@apache.org | |
| 34 X-Mailer: svnmailer-1.0.7 | |
| 35 X-Virus-Checked: Checked by ClamAV on apache.org | |
| 36 Status: O | |
| 37 X-UID: 62932 | |
| 38 X-Keywords:
| |
| 39 | |
| 40 Author: felicity | |
| 41 Date: Tue Apr 11 17:43:54 2006 | |
| 42 New Revision: 393348 | |
| 43 | |
| 44 URL: http://svn.apache.org/viewcvs?rev=393348&view=rev | |
| 45 Log: | |
| 46 bug 4864: remove extraneous front-slash from gpghomedir path | |
| 47 | |
| 48 Modified: | |
| 49 spamassassin/trunk/sa-update.raw | |
| 50 | |
| 51 Modified: spamassassin/trunk/sa-update.raw | |
| 52 URL: http://svn.apache.org/viewcvs/spamassassin/trunk/sa-update.raw?rev=393348&r
1=393347&r2=393348&view=diff | |
| 53 ============================================================================== | |
| 54 --- spamassassin/trunk/sa-update.raw (original) | |
| 55 +++ spamassassin/trunk/sa-update.raw Tue Apr 11 17:43:54 2006 | |
| 56 @@ -120,7 +120,7 @@ | |
| 57 @{$opt{'channel'}} = (); | |
| 58 my $GPG_ENABLED = 1; | |
| 59 | |
| 60 -$opt{'gpghomedir'} = File::Spec->catfile($LOCAL_RULES_DIR, '/sa-update-keys'); | |
| 61 +$opt{'gpghomedir'} = File::Spec->catfile($LOCAL_RULES_DIR, 'sa-update-keys'); | |
| 62 | |
| 63 Getopt::Long::Configure( | |
| 64 qw(bundling no_getopt_compat no_auto_abbrev no_ignore_case)); | |
| 65 | |
| 66 | |
| 67 | |
| OLD | NEW |