mirror of
https://github.com/imapsync/imapsync.git
synced 2024-11-17 00:02:29 +01:00
26 lines
819 B
Plaintext
26 lines
819 B
Plaintext
#!/bin/cat
|
|
$Id: FAQ.Connection.txt,v 1.2 2016/03/16 13:33:51 gilles Exp gilles $
|
|
|
|
This documentation is also at http://imapsync.lamiral.info/#doc
|
|
|
|
============================================
|
|
Imapsync tips about connection issues.
|
|
============================================
|
|
|
|
|
|
=======================================================================
|
|
Q.How to test a ssl imap connection without imapsync?
|
|
|
|
R1.Use openssl command like the following,
|
|
an example with imap.gmail.com server:
|
|
|
|
openssl s_client -connect imap.gmail.com:993
|
|
|
|
The previous command is an interactive connection, hit ctrl-c
|
|
to finish it. If you want to finish it gently, then use:
|
|
|
|
{ sleep 1; echo "a LOGOUT"; } | openssl s_client -connect imap.gmail.com:993
|
|
|
|
=======================================================================
|
|
|