curl이용 imap 및 pop3 접속체크
# E-Mail2022. 9. 23. 15:12curl이용 imap 및 pop3 접속체크

imap check[darksharavim.tistory.com]curl --url "imap://imap.naver.com/" \ --user 'test@imap.naver.com:abc123' \ -X 'LIST "" "*"' powershell인 경우curl.exe --url 'imap://imap.naver.com:143' ` --user 'test@imap.naver.com:abc1234' ` --request 'LIST "" "*"'* LIST (\Sent \Noinferiors \HasNoChildren) "/" "Sent"* LIST (\Junk \Noi..

image