[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: more on starttls, gnutls-cli and using tls for mail
From: |
Chong Yidong |
Subject: |
Re: more on starttls, gnutls-cli and using tls for mail |
Date: |
Sun, 14 Aug 2011 13:12:24 -0400 |
User-agent: |
Gnus/5.13 (Gnus v5.13) Emacs/24.0.50 (gnu/linux) |
"T. V. Raman" <address@hidden> writes:
> In function
> (defun network-stream-open-starttls (name buffer host service
> parameters)
> the following let binding forces gnutls-cli -- even though
> starttls-use-gnutls has been set to nil earlier because
> gnutls-cli ws not found on the system.
> (let* ((starttls-use-gnutls t)
Could you elaborate? That code branch should not be called unless
builtin gnutls is not available:
(let* (...
(builtin-starttls (and (fboundp 'gnutls-available-p)
(gnutls-available-p)))
...
(unless builtin-starttls
(delete-process stream)
(setq start (with-current-buffer buffer (point-max)))
(let* ((starttls-use-gnutls t)
...
> Also, if you ask smtpmail to save the security settings, it
> creates a world-readable .authinfo with the password stored in
> the clear --- looks like a bad idea on all counts.
Yes, this should be fixed.
- Re: more on starttls, gnutls-cli and using tls for mail, (continued)
- Multiple SMTP accounts with smtpmail.el (was: more on starttls, gnutls-cli and using tls for mail), Lars Magne Ingebrigtsen, 2011/08/17
- Re: Multiple SMTP accounts with smtpmail.el, Leo, 2011/08/17
- Re: Multiple SMTP accounts with smtpmail.el, Karl Fogel, 2011/08/18
- Re: Multiple SMTP accounts with smtpmail.el, Vijay Lakshminarayanan, 2011/08/18
- Re: Multiple SMTP accounts with smtpmail.el, Lars Magne Ingebrigtsen, 2011/08/19
- Re: Multiple SMTP accounts with smtpmail.el, Karl Fogel, 2011/08/20
- Re: Multiple SMTP accounts with smtpmail.el, Lars Magne Ingebrigtsen, 2011/08/21
- Re: Multiple SMTP accounts with smtpmail.el, Glenn Morris, 2011/08/22
- Re: more on starttls, gnutls-cli and using tls for mail,
Chong Yidong <=
- Re: more on starttls, gnutls-cli and using tls for mail, Lars Magne Ingebrigtsen, 2011/08/17
- more on starttls, gnutls-cli and using tls for mail, raman, 2011/08/13