From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.user/7522 Path: news.gmane.org!not-for-mail From: Bastien Newsgroups: gmane.emacs.gnus.user Subject: Re: pgg or mailcrypt Date: Mon, 12 Jun 2006 14:22:59 +0100 Organization: None Message-ID: <87r71use30.fsf@tallis.ilo.ucl.ac.uk> References: <87mzciy5u7.fsf@news.europe.ch> <87lks2v8w5.fsf@tallis.ilo.ucl.ac.uk> <87bqsysep4.fsf@news.europe.ch> NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: sea.gmane.org 1150119636 3669 80.91.229.2 (12 Jun 2006 13:40:36 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Mon, 12 Jun 2006 13:40:36 +0000 (UTC) Original-X-From: info-gnus-english-bounces+gegu-info-gnus-english=m.gmane.org@gnu.org Mon Jun 12 15:40:35 2006 Return-path: Envelope-to: gegu-info-gnus-english@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by ciao.gmane.org with esmtp (Exim 4.43) id 1Fpmeg-0007XV-9L for gegu-info-gnus-english@m.gmane.org; Mon, 12 Jun 2006 15:40:35 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Fpmee-0003B6-VG for gegu-info-gnus-english@m.gmane.org; Mon, 12 Jun 2006 09:40:32 -0400 Original-Path: shelby.stanford.edu!newsfeed.stanford.edu!news.tele.dk!news.tele.dk!small.news.tele.dk!proxad.net!cleanfeed3-a.proxad.net!nnrp13-1.free.fr!not-for-mail Original-Newsgroups: gnu.emacs.gnus User-Agent: Gnus/5.110006 (No Gnus v0.6) Emacs/22.0.50 (gnu/linux) Cancel-Lock: sha1:uTjzn80Vrkd0YUDxd/qd9Ia3AWQ= Original-Lines: 57 Original-NNTP-Posting-Date: 12 Jun 2006 15:22:59 MEST Original-NNTP-Posting-Host: 128.40.248.155 Original-X-Trace: 1150118579 nnrp13-1.free.fr 27370 128.40.248.155:58036 Original-X-Complaints-To: abuse@proxad.net Original-Xref: shelby.stanford.edu gnu.emacs.gnus:77708 Original-To: info-gnus-english@gnu.org X-BeenThere: info-gnus-english@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Announcements and discussions for GNUS, the GNU Emacs Usenet newsreader \(in English\)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: info-gnus-english-bounces+gegu-info-gnus-english=m.gmane.org@gnu.org Errors-To: info-gnus-english-bounces+gegu-info-gnus-english=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.gnus.user:7522 Archived-At: Hadron Quark writes: > I can find no tutorial or easy "howto guide" for PGG. Yes, but (info "pgg") should help you in some way. > Where is mailcrypt tagged obsolete? The officiel Mailcrypt webpage has been last modified in 2002 (Thu Sep 26 01:19:49 PDT 2002) - http://mailcrypt.sourceforge.net/ Maybe it's not *officially* obsolete (if there is some sense of being officially obsolete when a tool is still working), but apparently it's no being supported anymore. > Can anyone point me into the right direction for using pgg from a set of > defined default keybindings in gnus? The "attachement" menu gives you a few hints: C-c RET C-s -> sign C-c RET C-c -> encrypt C-c RET C-e -> sign and encrypt > I cant find how to encrypt a post (only region) or how to > interactively change the gpg user id. Here is the relevant part of my config. Hope this helps. (autoload 'pgg-encrypt-region "pgg" "Encrypt the current region." t) (autoload 'pgg-decrypt-region "pgg" "Decrypt the current region." t) (autoload 'pgg-sign-region "pgg" "Sign the current region." t) (autoload 'pgg-verify-region "pgg" "Verify the current region." t) (autoload 'pgg-insert-key "pgg" "Insert the ASCII armored public key." t) (autoload 'pgg-snarf-keys-region "pgg" "Import public keys in the current region." t) ;; Emacs should always decrypt and verify emails ;; automatically (setq mm-verify-option 'always) (setq mm-decrypt-option 'always) (setq gnus-buttonized-mime-types '("multipart/encrypted" "multipart/signed")) (setq pgg-default-user-id "[your gpg identity]" pgg-query-keyserver t) (setq pgg-default-keyserver-address "subkeys.pgp.net" pgg-encrypt-for-me nil) -- Bastien