mirror of
https://github.com/imapsync/imapsync.git
synced 2025-08-02 23:21:49 +02:00
25 lines
819 B
Text
25 lines
819 B
Text
#!/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
|
|
|
|
=======================================================================
|
|
|