Gnus development mailing list
 help / color / mirror / Atom feed
* starttls.el does not use gnutls-cli
@ 2006-03-06 10:30 Joerg Plate
  2006-03-07 13:42 ` Simon Josefsson
  0 siblings, 1 reply; 5+ messages in thread
From: Joerg Plate @ 2006-03-06 10:30 UTC (permalink / raw)


Hello-hello

I'm trying to use STARTTLS for sending eMail.

starttls.el looks for "starttls" but cannot find it
(because it is not installed), but it does not use
gnutls-cli (which is installed).

(setq smtpmail-default-smtp-server "smtp.$NAME.de")
(setq smtpmail-smtp-server "smtp.$NAME.de")
(setq smtpmail-smtp-service 587)
(setq smtpmail-auth-credentials  '(("smtp.$NAME.de" 587 "user" "password")))
(setq smtpmail-starttls-credentials '(("smtp.$NAME.de" 587 nil nil)))

(which, according to the documentation, should work...)

And it works with port 25, so servername, user & password are correct.




^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: starttls.el does not use gnutls-cli
  2006-03-06 10:30 starttls.el does not use gnutls-cli Joerg Plate
@ 2006-03-07 13:42 ` Simon Josefsson
  2006-03-07 21:47   ` Jörg Plate
  0 siblings, 1 reply; 5+ messages in thread
From: Simon Josefsson @ 2006-03-07 13:42 UTC (permalink / raw)
  Cc: ding

Joerg Plate <plate@patterner.de> writes:

> Hello-hello
>
> I'm trying to use STARTTLS for sending eMail.
>
> starttls.el looks for "starttls" but cannot find it
> (because it is not installed), but it does not use
> gnutls-cli (which is installed).
>
> (setq smtpmail-default-smtp-server "smtp.$NAME.de")
> (setq smtpmail-smtp-server "smtp.$NAME.de")
> (setq smtpmail-smtp-service 587)
> (setq smtpmail-auth-credentials  '(("smtp.$NAME.de" 587 "user" "password")))
> (setq smtpmail-starttls-credentials '(("smtp.$NAME.de" 587 nil nil)))
>
> (which, according to the documentation, should work...)
>
> And it works with port 25, so servername, user & password are correct.

What happens when you try to send an e-mail with this configuration?

How do you know gnutls-cli is not used?



^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: starttls.el does not use gnutls-cli
  2006-03-07 13:42 ` Simon Josefsson
@ 2006-03-07 21:47   ` Jörg Plate
  2006-03-08 10:16     ` Simon Josefsson
  0 siblings, 1 reply; 5+ messages in thread
From: Jörg Plate @ 2006-03-07 21:47 UTC (permalink / raw)


> > starttls.el looks for "starttls" but cannot find it
> > (because it is not installed), but it does not use
> > gnutls-cli (which is installed).
> >
> > (setq smtpmail-default-smtp-server "smtp.$NAME.de")
> > (setq smtpmail-smtp-server "smtp.$NAME.de")
> > (setq smtpmail-smtp-service 587)
> > (setq smtpmail-auth-credentials  '(("smtp.$NAME.de" 587 "user" "password")))
> > (setq smtpmail-starttls-credentials '(("smtp.$NAME.de" 587 nil nil)))
> >
> > (which, according to the documentation, should work...)
> >
> > And it works with port 25, so servername, user & password are correct.
>
> What happens when you try to send an e-mail with this configuration?
It works too. But without STARTTLS.

> How do you know gnutls-cli is not used?
"strace -f"  starttls is searched but not found.  "gnutls-cli" isn't
mentioned anywhere
in the log file.

--
"I'm working on it."

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: starttls.el does not use gnutls-cli
  2006-03-07 21:47   ` Jörg Plate
@ 2006-03-08 10:16     ` Simon Josefsson
  2006-03-08 13:27       ` Norbert Koch
  0 siblings, 1 reply; 5+ messages in thread
From: Simon Josefsson @ 2006-03-08 10:16 UTC (permalink / raw)
  Cc: ding

"Jörg Plate" <patterner@gmail.com> writes:

>> > starttls.el looks for "starttls" but cannot find it
>> > (because it is not installed), but it does not use
>> > gnutls-cli (which is installed).
>> >
>> > (setq smtpmail-default-smtp-server "smtp.$NAME.de")
>> > (setq smtpmail-smtp-server "smtp.$NAME.de")
>> > (setq smtpmail-smtp-service 587)
>> > (setq smtpmail-auth-credentials  '(("smtp.$NAME.de" 587 "user" "password")))
>> > (setq smtpmail-starttls-credentials '(("smtp.$NAME.de" 587 nil nil)))
>> >
>> > (which, according to the documentation, should work...)
>> >
>> > And it works with port 25, so servername, user & password are correct.
>>
>> What happens when you try to send an e-mail with this configuration?
> It works too. But without STARTTLS.
>
>> How do you know gnutls-cli is not used?
> "strace -f"  starttls is searched but not found.  "gnutls-cli" isn't
> mentioned anywhere
> in the log file.

Are you using the XEmacs mail-lib smtpmail.el?  It doesn't support
starttls via GnuTLS.  I've fixed that in XEmacs CVS now, so try the
new packages when they are released.



^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: starttls.el does not use gnutls-cli
  2006-03-08 10:16     ` Simon Josefsson
@ 2006-03-08 13:27       ` Norbert Koch
  0 siblings, 0 replies; 5+ messages in thread
From: Norbert Koch @ 2006-03-08 13:27 UTC (permalink / raw)


* Simon Josefsson <jas@extundo.com>:

Hi!

> Are you using the XEmacs mail-lib smtpmail.el?  It doesn't support
> starttls via GnuTLS.  I've fixed that in XEmacs CVS now, so try the
> new packages when they are released.

I've just pre-released a new version,
norbert.



^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2006-03-08 13:27 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2006-03-06 10:30 starttls.el does not use gnutls-cli Joerg Plate
2006-03-07 13:42 ` Simon Josefsson
2006-03-07 21:47   ` Jörg Plate
2006-03-08 10:16     ` Simon Josefsson
2006-03-08 13:27       ` Norbert Koch

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).