From mboxrd@z Thu Jan 1 00:00:00 1970 Path: main.gmane.org!not-for-mail From: Richard Stallman Newsgroups: gmane.emacs.devel Subject: Re: encrypt.el Date: Sat, 16 Oct 2004 09:52:45 -0400 Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Message-ID: References: <4n7jpu4o7d.fsf@lifelogs.com> <4nis9baoz3.fsf@lifelogs.com> <4nfz4f94jw.fsf_-_@lifelogs.com> Reply-To: rms@gnu.org NNTP-Posting-Host: deer.gmane.org X-Trace: sea.gmane.org 1097934843 4140 80.91.229.6 (16 Oct 2004 13:54:03 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Sat, 16 Oct 2004 13:54:03 +0000 (UTC) Cc: emacs-devel@gnu.org Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Sat Oct 16 15:54:00 2004 Return-path: Original-Received: from lists.gnu.org ([199.232.76.165]) by deer.gmane.org with esmtp (Exim 3.35 #1 (Debian)) id 1CIp0R-0006kB-00 for ; Sat, 16 Oct 2004 15:53:59 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.33) id 1CIp7d-0007LU-LI for ged-emacs-devel@m.gmane.org; Sat, 16 Oct 2004 10:01:25 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.33) id 1CIp6m-0006zM-8O for emacs-devel@gnu.org; Sat, 16 Oct 2004 10:00:32 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.33) id 1CIp6k-0006yG-9M for emacs-devel@gnu.org; Sat, 16 Oct 2004 10:00:30 -0400 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.33) id 1CIp6k-0006xo-6M for emacs-devel@gnu.org; Sat, 16 Oct 2004 10:00:30 -0400 Original-Received: from [199.232.76.164] (helo=fencepost.gnu.org) by monty-python.gnu.org with esmtp (Exim 4.34) id 1CIozG-0006RN-Dc for emacs-devel@gnu.org; Sat, 16 Oct 2004 09:52:46 -0400 Original-Received: from rms by fencepost.gnu.org with local (Exim 4.34) id 1CIozF-00034v-V7; Sat, 16 Oct 2004 09:52:46 -0400 Original-To: Simon Josefsson In-reply-to: (message from Simon Josefsson on Fri, 15 Oct 2004 21:41:12 +0200) X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Xref: main.gmane.org gmane.emacs.devel:28476 X-Report-Spam: http://spam.gmane.org/gmane.emacs.devel:28476 You're my main advisor on encryption; if you think that encrypt.el does the right things, I would be glad to see it moved out of Gnus. Doing this requires writing text for etc/NEWS and for the Lisp manual. However, there is one thing in encrypt.el that seems strange and perhaps a bug: (defcustom encrypt-password-cache-expiry 200 "Encryption password timeout. When set, directly sets password-cache-expiry" :type 'integer :group 'encrypt :set (lambda (symbol value) (set symbol value) (setq password-cache-expiry value))) What job is this supposed to do? Is this the right way to do that job? Perhaps putting password-cache-expiry into this custom broup is the right solution.