How to talk to IMAP server in Shell via OpenSSL
Asked Answered
M

4

59

I want to send IMAP commands via Mac OS X Terminal to server and get response. I can connect to the server using this line:

openssl s_client -connect imap.gmail.com:993

And I can successfully login:

? LOGIN m.client2 passwordhere

But all other commands do not work, no response from server. I tried for instance this:

? LIST "" "*"
? SELECT INBOX
Meingolda answered 19/2, 2013 at 14:7 Comment(2)
Mac OS X Terminal is not aka Bash. Terminal and shell are not the same!Folks
This command sequence (after select inbox) is useful: 4 SEARCH SENTSINCE "14-Oct-2018", then pick a number and do 5 FETCH XXXX (FLAGS BODY[HEADER.FIELDS (DATE FROM SUBJECT)] BODY[TEXT]) to see the full email.Divulgence
M
81

Found an error by help of a friend:

openssl s_client -connect imap.gmail.com:993 -crlf

-crlf is critical

Meingolda answered 19/2, 2013 at 14:37 Comment(3)
I came across this looking for a reason why the server was ignoring all of my commands. It would time out after a period of inactivity, but as long as I kept typing the connection would stay open (but it never responded).Pyrochemical
Gmail seems to have rolled out an update over the past few days which now requires this option. It's still not necessary for Cyrus IMAPd. (I had connected this way regularly for all my Gmail access without the -crlf for many years, but starting a few days ago some connections would hang, and today they were all hanging.)Antisocial
Apparently, the cmdline syntax has tightened since this posting: New syntax is: openssl s_client -crlf localhost:993. Note that the -crlf option occurs before the hostname.Overrefinement
M
25

Try this, this should works for you (replace the first line by your

openssl s_client -connect imap.gmail.com:993 -crlf

command (mandatory -crlf) & type only the blue part) :

enter image description here

Meperidine answered 19/2, 2013 at 14:11 Comment(0)
L
5

First thing first, is imap activated on your gmail account??? if you are able to login successfully that means ssl is working fine. whats the return code that you get for

a1 LOGIN m.client2 passwordhere command.

have you tried the command

a1 capability

try other alternative commands since not all IMAP servers implementa all the IMAP commands. I have faced this issue while I was creating the data migration tools for different vendors like gmail rediffmail yahoo...

Liveryman answered 20/2, 2013 at 4:32 Comment(0)
A
5

A few more options to consider: You may be connecting to a server offering STARTTLS (esp. for IMAP on port 143) in which case you can tell openssl to proceed in negotiating this, you need to specify which protocol you're using (choose from pop3, imap, smtp, ftp); the -crlf option has been mentioned by others, and I also find the -showcerts option useful if I'm debugging an SSL/TLS configuration. So for example you might end up with,

 openssl s_client -showcerts -connect target.server.name.here:143 -starttls imap

More options with the relevant man page if you've got that available,

man s_client
Alleviate answered 3/5, 2018 at 21:48 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.