Announcements and discussions for Gnus, the GNU Emacs Usenet newsreader
 help / color / mirror / Atom feed
* nnimap groups failing to connect to server
@ 2017-11-06 11:05 Pier
  2017-11-06 11:33 ` Adam Sjøgren
  0 siblings, 1 reply; 4+ messages in thread
From: Pier @ 2017-11-06 11:05 UTC (permalink / raw)
  To: info-gnus-english

I have double install in my laptop, one is Ubuntu and the other a newly
installed Debian.

I use gnus regularly on my Ubuntu install.  Although I am sharing all (?)
settings, including .authinfo.gpg and .ssh, I cannot access
my nnimap groups on Debian.

Here is the output from the *Messages* buffer for one of my nnimap groups:
"
Opening nnimap server on pier@acuti.net...
Opening connection to mail.wservices.ch via tls...
Opening TLS connection to ‘mail.wservices.ch’...
Opening TLS connection with ‘gnutls-cli --x509cafile
/etc/ssl/certs/ca-certificates.crt -p 993 mail.wservices.ch’...failed
Opening TLS connection with ‘gnutls-cli --x509cafile
/etc/ssl/certs/ca-certificates.crt -p 993 mail.wservices.ch
--protocols ssl3’...failed
Opening TLS connection with ‘openssl s_client -connect
mail.wservices.ch:993 -no_ssl2 -ign_eof’...failed
Opening TLS connection to ‘mail.wservices.ch’...failed
Unable to open server nnimap+pier@acuti.net due to: Buffer
*nnimap mail.wservices.ch 993  *nntpd**-31795 has no process
Opening nnimap server on pier@acuti.net...failed: 
"

I have checked the "ca-certificates.crt" file for both installs, and they
are identical.

Local folders are read ok and I am using the Ubuntu install for posting
this, as even the smtp server is not working in Debian.

What am I missing?

Thanks in advance for any help!

Pier


_______________________________________________
info-gnus-english mailing list
info-gnus-english@gnu.org
https://lists.gnu.org/mailman/listinfo/info-gnus-english

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

* Re: nnimap groups failing to connect to server
  2017-11-06 11:05 nnimap groups failing to connect to server Pier
@ 2017-11-06 11:33 ` Adam Sjøgren
  2017-11-06 12:18   ` Pier
  0 siblings, 1 reply; 4+ messages in thread
From: Adam Sjøgren @ 2017-11-06 11:33 UTC (permalink / raw)
  To: info-gnus-english

Pier writes:

> I have double install in my laptop, one is Ubuntu and the other a newly
> installed Debian.

Which version of Debian?

> Opening TLS connection to ‘mail.wservices.ch’...
> Opening TLS connection with ‘gnutls-cli --x509cafile
> /etc/ssl/certs/ca-certificates.crt -p 993 mail.wservices.ch’...failed

If you run this by hand, what error do you get?

> I have checked the "ca-certificates.crt" file for both installs, and they
> are identical.

> Local folders are read ok and I am using the Ubuntu install for posting
> this, as even the smtp server is not working in Debian.

What is the output in *Messages* on the setup that works? Which of the
tls/ssl related commands succeeds?

> What am I missing?

I would start by comparing versions of gnutls and openssl on the two
setups, and by running the command that succeeds by hand on the other
setup, to see what error is returned.

My first guess would be that your Debian installation has stricter
demands on what TLS versions/etc. are accepted.

Although I just tested running:

 $ gnutls-cli --x509cafile /etc/ssl/certs/ca-certificates.crt -p 993 mail.wservices.ch

on a Debian stable machine and a Debian unstable one, and both worked,
so my guess might be way off.


  Best regards,

    Adam

-- 
 "It's part of our policy not to be taken seriously.          Adam Sjøgren
  Our opposition, whoever they may be, in all manifest   asjo@koldfront.dk
  forms, don't know how to handle humour. And we are
  humorous."


_______________________________________________
info-gnus-english mailing list
info-gnus-english@gnu.org
https://lists.gnu.org/mailman/listinfo/info-gnus-english

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

* Re: nnimap groups failing to connect to server
  2017-11-06 11:33 ` Adam Sjøgren
@ 2017-11-06 12:18   ` Pier
  2017-11-06 16:03     ` Adam Sjøgren
  0 siblings, 1 reply; 4+ messages in thread
From: Pier @ 2017-11-06 12:18 UTC (permalink / raw)
  To: Adam Sjøgren; +Cc: info-gnus-english

>
> Which version of Debian?
>
>> Opening TLS connection to ‘mail.wservices.ch’...
>> Opening TLS connection with ‘gnutls-cli --x509cafile
>> /etc/ssl/certs/ca-certificates.crt -p 993 mail.wservices.ch’...failed
>
> If you run this by hand, what error do you get?
>

I have tried running this by hand on my Debian Busting and... gnutils-cli was
missing!

I have installed gnutls-bin and things seem to work now (we'll se if I
can get to send this).

Is not gnutls installed with emacs? I have a compiled version of emacs
25.3 (25.2 in Ubuntu), I installed the depencencies with apt and I
thought this would have been installed (it was in Ubuntu).

Anyway, thanks so much Adam, you have pointed me to the right direction
up to goal!

Pier

_______________________________________________
info-gnus-english mailing list
info-gnus-english@gnu.org
https://lists.gnu.org/mailman/listinfo/info-gnus-english

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

* Re: nnimap groups failing to connect to server
  2017-11-06 12:18   ` Pier
@ 2017-11-06 16:03     ` Adam Sjøgren
  0 siblings, 0 replies; 4+ messages in thread
From: Adam Sjøgren @ 2017-11-06 16:03 UTC (permalink / raw)
  To: info-gnus-english

Pier writes:

> I have tried running this by hand on my Debian Busting and... gnutils-cli was
> missing!

Debian Buster (currently testing), I guess you meant :-)

> I have installed gnutls-bin and things seem to work now (we'll se if I
> can get to send this).

Nice!

> Is not gnutls installed with emacs?

I don't think so:

 · https://packages.debian.org/buster/emacs25
 · https://packages.ubuntu.com/artful/emacs25

> I have a compiled version of emacs 25.3 (25.2 in Ubuntu), I installed
> the depencencies with apt and I thought this would have been installed
> (it was in Ubuntu).

The package in Debian does not depend on the gnutls command-line
utilities.

Newer Emacs versions can be built with libgnutls support, and then the
external utilities shouldn't be necessary, however.

> Anyway, thanks so much Adam, you have pointed me to the right direction
> up to goal!

Happy to help.


  Best regards,

    Adam

-- 
 "Wandering stars                                             Adam Sjøgren
  For whom it is reserved                                asjo@koldfront.dk
  The blackness of darkness, forever"


_______________________________________________
info-gnus-english mailing list
info-gnus-english@gnu.org
https://lists.gnu.org/mailman/listinfo/info-gnus-english

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

end of thread, other threads:[~2017-11-06 16:03 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-11-06 11:05 nnimap groups failing to connect to server Pier
2017-11-06 11:33 ` Adam Sjøgren
2017-11-06 12:18   ` Pier
2017-11-06 16:03     ` Adam Sjøgren

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).