From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.user/2109 Path: news.gmane.org!not-for-mail From: deskpot@despammed.com (Vasily Korytov) Newsgroups: gmane.emacs.gnus.user Subject: Re: canlock-password added to .emacs bind ones back, ending up on webpage Date: Tue, 18 Feb 2003 10:38:44 +0300 Organization: Thinking... 35% complete Message-ID: <87vfzi3unv.fsf@unix.home> References: <87wujyb8oa.fsf@jidanni.org> NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: sea.gmane.org 1138668664 13973 80.91.229.2 (31 Jan 2006 00:51:04 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Tue, 31 Jan 2006 00:51:04 +0000 (UTC) Original-X-From: nobody Tue Jan 17 17:30:11 2006 Original-Newsgroups: gnu.emacs.gnus X-Attribution: VK Mail-Copies-To: never User-Agent: Gnus/5.090016 (Oort Gnus v0.16) XEmacs/21.4 (Portable Code, linux) Cancel-Lock: sha1:VNecPEOIwu3kz4eIWPbU5UHfpYc= Original-NNTP-Posting-Host: h23.37.elnet.msk.ru Original-X-Trace: 18 Feb 2003 10:58:12 +0300, h23.37.elnet.msk.ru Original-Path: quimby.gnus.org!newsfeed1.e.nsc.no!nsc.no!nextra.com!uio.no!news.tele.dk!news.tele.dk!small.news.tele.dk!news.telebyte.nl!news1.spb.su!demos!srcc!Gamma.RU!news.telekom.ru!unix.home!not-for-mail Original-Xref: bridgekeeper.physik.uni-ulm.de gnus-emacs-gnus:2249 Original-Lines: 35 X-Gnus-Article-Number: 2249 Tue Jan 17 17:30:11 2006 Xref: news.gmane.org gmane.emacs.gnus.user:2109 Archived-At: >>>>> "DJ" == Dan Jacobson writes: DJ> Fellas, be aware that if you use oort gnus a DJ> (canlock-password "3a84a38d5a9355700b7da3d800d02cb372b033e7") DJ> will be added to your .emacs behind your back which then gets put on DJ> your website for all to see if you are like me an share your .emacs DJ> file. DJ> One must (setq message-insert-canlock nil) before upgrading to oort to DJ> avoid it. There is another way. IMHO, it's cleaner to collect all the sensitive local data (in my case, customize data too) in custom.el with permissions 0600. These are from my init file (actually, they're not needed for XEmacs 21.4, that I use -- but for compatibility reasons). They might work for you as well. from the very beginning: ;; Define user-init-directory for emacsen, that don't have it. ;; you may want to change it to ~/lib/emacs,or to ~/.emacs.d, or to... (unless (boundp 'user-init-directory) (setq user-init-directory "~/.xemacs/")) and from the very end: ;; finally, make customize living in separate file, if it isn't yet there (unless custom-file (setq custom-file (expand-file-name "custom.el" user-init-directory)) (if (file-exists-p custom-file) (load-file custom-file))) -- I accept RFC3156 and RFC1991-compatible encrypted mail. PGP key fingerprint: 123A 7CCE 6E26 6233 0D87 E01A A0F8 3524 FCD8 1841