From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/79277 Path: news.gmane.org!not-for-mail From: Ted Zlatanov Newsgroups: gmane.emacs.gnus.general Subject: Re: [gnus git] branch master updated: n0-17-113-gfc8cecf =1= Improve the netrc field encryption (GPG tokens) by calling EPA/EPG functions directly. Date: Thu, 30 Jun 2011 09:37:35 -0500 Organization: =?utf-8?B?0KLQtdC+0LTQvtGAINCX0LvQsNGC0LDQvdC+0LI=?= @ Cienfuegos Message-ID: <871uybwfkg.fsf@lifelogs.com> References: NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain X-Trace: dough.gmane.org 1309444677 20629 80.91.229.12 (30 Jun 2011 14:37:57 GMT) X-Complaints-To: usenet@dough.gmane.org NNTP-Posting-Date: Thu, 30 Jun 2011 14:37:57 +0000 (UTC) Cc: To: Katsumi Yamaoka Original-X-From: ding-owner+M27573@lists.math.uh.edu Thu Jun 30 16:37:54 2011 Return-path: Envelope-to: ding-account@gmane.org Original-Received: from util0.math.uh.edu ([129.7.128.18]) by lo.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1QcINM-0005E8-V8 for ding-account@gmane.org; Thu, 30 Jun 2011 16:37:53 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.math.uh.edu) by util0.math.uh.edu with smtp (Exim 4.63) (envelope-from ) id 1QcIND-0001GJ-6J; Thu, 30 Jun 2011 09:37:43 -0500 Original-Received: from mx2.math.uh.edu ([129.7.128.33]) by util0.math.uh.edu with esmtps (TLSv1:AES256-SHA:256) (Exim 4.63) (envelope-from ) id 1QcINC-0001G8-4U for ding@lists.math.uh.edu; Thu, 30 Jun 2011 09:37:42 -0500 Original-Received: from quimby.gnus.org ([80.91.231.51]) by mx2.math.uh.edu with esmtps (TLSv1:AES256-SHA:256) (Exim 4.76) (envelope-from ) id 1QcINB-0007qO-7x for ding@lists.math.uh.edu; Thu, 30 Jun 2011 09:37:42 -0500 Original-Received: from chirelay1o.jumptrading.com ([38.98.147.153] helo=chirelay1.jumptrading.com) by quimby.gnus.org with esmtp (Exim 4.72) (envelope-from ) id 1QcIN9-0003hG-2e for ding@gnus.org; Thu, 30 Jun 2011 16:37:39 +0200 Original-Received: from chirelay1.jumptrading.com (unknown [127.0.0.1]) by chirelay1.jumptrading.com (Symantec Mail Security) with ESMTP id C3C3F3200CE for ; Thu, 30 Jun 2011 09:37:37 -0500 (CDT) X-AuditID: 26629395-9b7e6bb00000552a-9c-4e0c8a314510 Original-Received: from chiexchange02.w2k.jumptrading.com (unknown [38.98.147.140]) by chirelay1.jumptrading.com (Symantec Mail Security) with ESMTP id 8DC742DC006 for ; Thu, 30 Jun 2011 09:37:37 -0500 (CDT) Original-Received: from internalsmtp.w2k.jumptrading.com (10.2.4.29) by chiexchange02.w2k.jumptrading.com (10.2.4.71) with Microsoft SMTP Server id 8.1.291.1; Thu, 30 Jun 2011 09:37:37 -0500 Original-Received: from tzlatanov-ubuntu-desktop.jumptrading.com ([10.2.14.81]) by internalsmtp.w2k.jumptrading.com with Microsoft SMTPSVC(6.0.3790.1830); Thu, 30 Jun 2011 09:37:36 -0500 X-Face: bd.DQ~'29fIs`T_%O%C\g%6jW)yi[zuz6;d4V0`@y-~$#3P_Ng{@m+e4o<4P'#(_GJQ%TT= D}[Ep*b!\e,fBZ'j_+#"Ps?s2!4H2-Y"sx" Mail-Copies-To: never Gmane-Reply-To-List: yes In-Reply-To: (Katsumi Yamaoka's message of "Thu, 30 Jun 2011 23:19:56 +0900") User-Agent: Gnus/5.110018 (No Gnus v0.18) Emacs/24.0.50 (gnu/linux) X-OriginalArrivalTime: 30 Jun 2011 14:37:36.0992 (UTC) FILETIME=[41931600:01CC3733] X-Brightmail-Tracker: AAAAAA== X-Spam-Score: -1.9 (-) List-ID: Precedence: bulk Xref: news.gmane.org gmane.emacs.gnus.general:79277 Archived-At: On Thu, 30 Jun 2011 23:19:56 +0900 Katsumi Yamaoka wrote: KY> Ted Zlatanov wrote: KY> [...] >> Improve the netrc field encryption (GPG tokens) by calling EPA/EPG functions directly. KY> [...] >> --- a/lisp/auth-source.el >> +++ b/lisp/auth-source.el >> @@ -43,6 +43,9 @@ >> (require 'mm-util) >> (require 'gnus-util) >> (require 'assoc) >> +(require 'epa) >> +(require 'epg) KY> It looks bad for old Emacsen and XEmacsen (with which epg is unavailable) KY> that Gnus still supports. :< Try now, I autoloaded all the functions. Since `auth-source-netrc-use-gpg-tokens' is 'never by default this should work for everyone--errors will only happen if you change the defcustom intentionally. Ted