Advertisement
Guest User

Exemplo de IMAP4rev1

a guest
Dec 6th, 2019
177
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.74 KB | None | 0 0
  1. C: <open connection>
  2. S: * OK IMAP4rev1 Service Ready
  3. C: a001 login mrc secret
  4. S: a001 OK LOGIN completed
  5. C: a002 select inbox
  6. S: * 18 EXISTS
  7. S: * FLAGS (\Answered \Flagged \Deleted \Seen \Draft)
  8. S: * 2 RECENT
  9. S: * OK [UNSEEN 17] Message 17 is the first unseen message
  10. S: * OK [UIDVALIDITY 3857529045] UIDs valid
  11. S: a002 OK [READ-WRITE] SELECT completed
  12. C: a003 fetch 12 full
  13. S: * 12 FETCH (FLAGS (\Seen) INTERNALDATE "17-Jul-1996 02:44:25 -0700"
  14. RFC822.SIZE 4286 ENVELOPE ("Wed, 17 Jul 1996 02:23:25 -0700 (PDT)"
  15. "IMAP4rev1 WG mtg summary and minutes"
  16. (("Terry Gray" NIL "gray" "cac.washington.edu"))
  17. (("Terry Gray" NIL "gray" "cac.washington.edu"))
  18. (("Terry Gray" NIL "gray" "cac.washington.edu"))
  19. ((NIL NIL "imap" "cac.washington.edu"))
  20. ((NIL NIL "minutes" "CNRI.Reston.VA.US")
  21. ("John Klensin" NIL "KLENSIN" "MIT.EDU")) NIL NIL
  22. "<B27397-0100000@cac.washington.edu>")
  23. BODY ("TEXT" "PLAIN" ("CHARSET" "US-ASCII") NIL NIL "7BIT" 3028
  24. 92))
  25. S: a003 OK FETCH completed
  26. C: a004 fetch 12 body[header]
  27. S: * 12 FETCH (BODY[HEADER] {342}
  28. S: Date: Wed, 17 Jul 1996 02:23:25 -0700 (PDT)
  29. S: From: Terry Gray <gray@cac.washington.edu>
  30. S: Subject: IMAP4rev1 WG mtg summary and minutes
  31. S: To: imap@cac.washington.edu
  32. S: cc: minutes@CNRI.Reston.VA.US, John Klensin <KLENSIN@MIT.EDU>
  33. S: Message-Id: <B27397-0100000@cac.washington.edu>
  34. S: MIME-Version: 1.0
  35. S: Content-Type: TEXT/PLAIN; CHARSET=US-ASCII
  36. S:
  37. S: )
  38. S: a004 OK FETCH completed
  39. C a005 store 12 +flags \deleted
  40. S: * 12 FETCH (FLAGS (\Seen \Deleted))
  41. S: a005 OK +FLAGS completed
  42. C: a006 logout
  43. S: * BYE IMAP4rev1 server terminating connection
  44. S: a006 OK LOGOUT completed
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement