터미널을 사용하여 pop3 계정을 확인하는 명령이 유닉스에 있습니까? 즉, pop3 계정의 서버/사용자 이름/비밀번호를 입력하고 사용자 이름/비밀번호가 올바른지 확인하세요.
답변1
telnet
메일 서버에 연결하고 전화를 걸 때 사용할 수 있습니다.POP3자격 증명을 확인하세요.
$ telnet pop.gmx.net 110
Trying 212.227.17.185...
Connected to pop.gmx.net.
Escape character is '^]'.
+OK POP server ready H migmx028 0MAbjW-1YwF4D0ml8-00BiVl
USER [email protected]
+OK password required for user "[email protected]"
PASS typeyourpassword
-ERR Error retrieving your GMX emails. Your connection is not encrypted. Enable SSL in your mail program. Instructions: https://ssl.gmx.net
Connection closed by foreign host.
글쎄, 대부분의 메일 서버가 필요하기 때문에 이것은 실패합니다.SSL/TLS 암호화 세션지금. 따라서 telnet
다음을 사용할 수 있습니다 socat
.
$ socat - OPENSSL:pop.gmx.net:995
+OK POP server ready H migmx113 0MC062-1Yzese0KO7-00AVNE
USER [email protected]
+OK password required for user "[email protected]"
PASS typeyourpassword
+OK mailbox "[email protected]" has 13518 messages (191718918 octets) H migmx113
잘못된 비밀번호를 입력하면 서버에 다음과 같은 내용이 표시될 수 있습니다.
-ERR authentication failed
또는 유휴 상태 socat
일 수도 있습니다 openssl
.
$ openssl s_client -quiet -connect pop.gmx.net:995
depth=2 C = DE, O = Deutsche Telekom AG, OU = T-TeleSec Trust Center, CN = Deutsche Telekom Root CA 2
verify error:num=19:self signed certificate in certificate chain
verify return:0
+OK POP server ready H migmx108 0MWpjO-1YiwnK3ZfP-00XoK
답변2
pop3 메일 계정을 확인하려면 다음 터미널 메일 클라이언트를 확인하세요.
- 소나무
- 산
- 바보
더 많은 것들이 있지만 제가 아는 것 중 이것이 가장 인기가 있습니다.
답변3
하이브리드 추천드립니다. 왜? Single Sign-On을 사용하는 경우 tls는 물론 kerberos까지 지원하기 때문에 .muttrc에 배치하세요.
set imap_authenticators="gssapi"