From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/33693 Path: main.gmane.org!not-for-mail From: Jeff Senn Newsgroups: gmane.emacs.gnus.general Subject: Re: Problems with mailcrypt/gpg Date: 15 Dec 2000 10:38:18 -0500 Organization: MAYA Design Group Sender: owner-ding@hpc.uh.edu Message-ID: References: <8zpjm1es.fsf@SNIPE.maya.com> <2nbsuetfov.fsf@tiger.jia.vnet> NNTP-Posting-Host: coloc-standby.netfonds.no Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: main.gmane.org 1035169750 26421 80.91.224.250 (21 Oct 2002 03:09:10 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Mon, 21 Oct 2002 03:09:10 +0000 (UTC) Cc: ding@gnus.org Return-Path: Original-Received: from lisa.math.uh.edu (lisa.math.uh.edu [129.7.128.49]) by mailhost.sclp.com (Postfix) with ESMTP id 31F5ED049D for ; Fri, 15 Dec 2000 10:39:04 -0500 (EST) Original-Received: from sina.hpc.uh.edu (lists@Sina.HPC.UH.EDU [129.7.3.5]) by lisa.math.uh.edu (8.9.1/8.9.1) with ESMTP id JAB14937; Fri, 15 Dec 2000 09:39:03 -0600 (CST) Original-Received: by sina.hpc.uh.edu (TLB v0.09a (1.20 tibbs 1996/10/09 22:03:07)); Fri, 15 Dec 2000 09:38:26 -0600 (CST) Original-Received: from mailhost.sclp.com (postfix@66-209.196.61.interliant.com [209.196.61.66] (may be forged)) by sina.hpc.uh.edu (8.9.3/8.9.3) with ESMTP id JAA17882 for ; Fri, 15 Dec 2000 09:38:16 -0600 (CST) Original-Received: from pigeon.maya.com (po.maya.com [192.70.254.2]) by mailhost.sclp.com (Postfix) with ESMTP id 08FF8D049D for ; Fri, 15 Dec 2000 10:38:42 -0500 (EST) Original-Received: from SNIPE.maya.com (snipe.maya.com [192.70.254.125]) by pigeon.maya.com (Postfix) with SMTP id 90B4F3080B; Fri, 15 Dec 2000 10:16:38 -0500 (EST) Original-To: ShengHuo ZHU X-Face: ._HOR,#9~<*ir.> Original-Lines: 39 User-Agent: Gnus/5.0808 (Gnus v5.8.8) XEmacs/21.2 (Pan) Precedence: list X-Majordomo: 1.94.jlt7 Xref: main.gmane.org gmane.emacs.gnus.general:33693 X-Report-Spam: http://spam.gmane.org/gmane.emacs.gnus.general:33693 ShengHuo ZHU writes: > Jeff Senn writes: > > > On my Win98 box I had to modify gpg.el to ignore the protection mask > > on the directory (it's never going to be 0700 on non-NT-windows :-) ) > > Fixed. Thanks! Thanks! Here's another: I would like to have command options for GPG (i.e. ones that apply to all GPG invocations; like "--homedir") On windows the GPG option file path must be hardcoded or in the system registry and I'd rather not do either. Anyway... I saw no existing easy way to do this so I added: (defcustom gpg-command-all-arglist nil "List of arguments to add to all GPG commands." :tag "All command args" :group 'gpg-options) and (defun gpg-build-arg-list (template substitutions) ... (let (arglist) + (setq arglist (copy-list gpg-command-all-arglist)) (while template ... Alternative (better) solutions welcome... -- -Jas