I am trying to access all unread emails of rediff and hotmail using PHP IMAP. I am trying to use imap.live.com:995/imap/ssl as host name for rediffmail but it failed with an error no host found. But when i try for gmail it works. gmail : IMAP HOSTNAME '{imap.gmail.com:993/imap/ssl}INBOX' POP3 HOSTNAME: '{pop.gmail.com:993/ipop3/ssl}INBOX' Does Rediffmail and Hotmail provide any such service to access mailbox.
1
votes
First, are you using POP3 or IMAP? 995 is a POP3 port. In Summary: IMAP: 143. IMAP/SSL: 993. POP3: 110. POP3/SSL:995. Have you used any external tools, like telnet, socat, or openssl s_client to probe the settings yourself?
– Max
Indeed, have you even done a web search. limilabs.com/blog/hotmail-imap-pop3-smtp-settings indicates some IMAP settings that appear to work.
– Max
2 Answers
1
votes