POP3 - 110

Comandos utiles

POP commands:
  USER uid           Log in as "uid"
  PASS password      Substitue "password" for your actual password
  STAT               List number of messages, total mailbox size
  LIST               List messages and sizes
  RETR n             Show message n
  DELE n             Mark message n for deletion
  RSET               Undo any changes
  QUIT               Logout (expunges messages if no RSET)
  TOP msg n          Show first n lines of message number msg
  CAPA               Get capabilities
  
  ## EJEMPLO
# telnet 10.10.10.111 110                                                                                                                                                               1 ⨯
Trying 10.10.10.111...
Connected to 10.10.10.111.
Escape character is '^]'.
+OK beta POP3 server (JAMES POP3 Server 2.3.2) ready 
USER ryuu
+OK
PASS password
+OK Welcome ryuu
STAT
+OK 2 1807
RETR 2
RETR 1

Última actualización