home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #16 / NN_1992_16.iso / spool / comp / mail / misc / 2482 < prev    next >
Encoding:
Internet Message Format  |  1992-07-26  |  1.7 KB

  1. Path: sparky!uunet!dtix!darwin.sura.net!mips!sdd.hp.com!hp-cv!ogicse!plains!news.u.washington.edu!news
  2. From: mrc@Tomobiki-Cho.CAC.Washington.EDU (Mark Crispin)
  3. Newsgroups: comp.mail.misc
  4. Subject: POP in Pine
  5. Message-ID: <MS-C.712184874.1147902781.mrc@Tomobiki-Cho.CAC.Washington.EDU>
  6. Date: 26 Jul 92 21:07:54 GMT
  7. Sender: news@u.washington.edu (USENET News System)
  8. Organization: University of Washington
  9. Lines: 21
  10. Content-Type: TEXT/PLAIN; charset=US-ASCII
  11. Mime-Version: 1.0
  12.  
  13. To express what David Collier-Brown said a bit more fully and accurately:
  14.  
  15. Pine uses the c-client library.  As such, it has local mail file capability
  16. with various storage technologies, and remote mail capability with IMAP2.
  17. There is no c-client driver for POP2 or POP3, but it would not be difficult to
  18. write one.  Other than as a fun exercise, the question is `why?'  POP2 or POP3
  19. with Pine would be much slower than with IMAP2, because capabilities that are
  20. intrinsic in IMAP would have to be simulated with POP.
  21.  
  22. The c-client distribution includes IMAP2, POP2, and POP3 servers.  All of
  23. these servers themselves use c-client.  It is possible to use the POP server
  24. to open an IMAP connection from a POP client!  So, in the c-client model, the
  25. protocols (IMAP or POP) are really nothing more than remote procedure call
  26. mechanisms between c-clients.
  27.  
  28. One of the neatest things about IMAP2bis is remote MIME parsing.  So, if you
  29. received a Godzilla MIME message, the MIME parsing is done at the server and
  30. its structure is passed to the client.  Then you can select what MIME data you
  31. want to fetch.  This is great over SLIP lines!  In POP, you end up having to
  32. fetch the entire message to do MIME parsing, which can be a problem for small
  33. PC's and slow links...
  34.