From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: MON KEY Newsgroups: gmane.emacs.devel Subject: RE: authinfo gnutls netrc.el auth-sources & smtpmail-starttls-credentials Date: Fri, 12 Jun 2009 02:28:45 -0400 Message-ID: NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Trace: ger.gmane.org 1244788204 19141 80.91.229.12 (12 Jun 2009 06:30:04 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Fri, 12 Jun 2009 06:30:04 +0000 (UTC) To: emacs-devel@gnu.org Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Fri Jun 12 08:30:01 2009 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.50) id 1MF0GY-0003yU-0j for ged-emacs-devel@m.gmane.org; Fri, 12 Jun 2009 08:29:30 +0200 Original-Received: from localhost ([127.0.0.1]:45455 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1MF0GX-0006Zr-EX for ged-emacs-devel@m.gmane.org; Fri, 12 Jun 2009 02:29:29 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1MF0Fw-00069Q-78 for emacs-devel@gnu.org; Fri, 12 Jun 2009 02:28:52 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1MF0Fr-00067e-LE for emacs-devel@gnu.org; Fri, 12 Jun 2009 02:28:51 -0400 Original-Received: from [199.232.76.173] (port=51456 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1MF0Fr-00067a-8o for emacs-devel@gnu.org; Fri, 12 Jun 2009 02:28:47 -0400 Original-Received: from mail-gx0-f222.google.com ([209.85.217.222]:40275) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1MF0Fq-0000vz-UA for emacs-devel@gnu.org; Fri, 12 Jun 2009 02:28:47 -0400 Original-Received: by gxk22 with SMTP id 22so471770gxk.18 for ; Thu, 11 Jun 2009 23:28:45 -0700 (PDT) Original-Received: by 10.150.199.9 with SMTP id w9mr6725359ybf.291.1244788125840; Thu, 11 Jun 2009 23:28:45 -0700 (PDT) X-detected-operating-system: by monty-python.gnu.org: GNU/Linux 2.6 (newer, 2) 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: , Original-Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.devel:111447 Archived-At: > auth-source.el currently is part of Gnus, so it uses Gnus logging > facilities. If it's moved out, we can adjust the logging. Perhaps > you're suggesting we need an auth-source-verbose variable? I've been thinking this over a bit more. Following 2(two) defcustoms `imap-log' and `imap-debug' are from: `../emacs/23.0.94/lisp/net/imap.el' These seem like sensible implimentations which auth-sources might find useful to reflect. ;;; ============================== (defcustom imap-log nil "If non-nil, an imap session trace is placed in `imap-log-buffer'. Note that username, passwords and other privacy sensitive information (such as e-mail) may be stored in the buffer. It is not written to disk, however. Do not enable this variable unless you are comfortable with that. See also `imap-debug'." :group 'imap :type 'boolean) (defcustom imap-debug nil "If non-nil, trace imap- functions into `imap-debug-buffer'. Uses `trace-function-background', so you can turn it off with, say, `untrace-all'. Note that username, passwords and other privacy sensitive information (such as e-mail) may be stored in the buffer. It is not written to disk, however. Do not enable this variable unless you are comfortable with that. This variable only takes effect when loading the `imap' library. See also `imap-log'." :group 'imap :type 'boolean)