home *** CD-ROM | disk | FTP | other *** search
/ Internet Info 1997 December / Internet_Info_CD-ROM_Walnut_Creek_December_1997.iso / faqs / comp / answers / LANs / mail-protocols < prev   
Encoding:
Internet Message Format  |  1997-10-10  |  78.8 KB

  1. Path: senator-bedfellow.mit.edu!bloom-beacon.mit.edu!thetimes.pixel.kodak.com!news.kodak.com!news-pen-16.sprintlink.net!newsfeed.nysernet.net!news.nysernet.net!207.41.200.4!news-pen-4.sprintlink.net!206.229.87.26!news-east.sprintlink.net!news-dc-26.sprintlink.net!news-peer.sprintlink.net!news.sprintlink.net!Sprint!howland.erols.net!nntprelay.mathworks.com!news.maxwell.syr.edu!newstand.syr.edu!spider.syr.edu!jmwobus
  2. From: jmwobus@spider.syr.edu (John M. Wobus)
  3. Newsgroups: comp.mail.misc,news.answers,comp.answers
  4. Subject: LAN Mail Protocols Summary (Most recent update: 10/3/97)
  5. Followup-To: poster
  6. Date: 8 Oct 1997 22:52:24 GMT
  7. Organization: Syracuse University, Syracuse, NY (USA)
  8. Lines: 1567
  9. Approved: jmwobus@mailbox.syr.edu
  10. Message-ID: <61h2r8$2kl@newstand.syr.edu>
  11. Reply-To: jmwobus@mailbox.syr.edu
  12. NNTP-Posting-Host: spider.syr.edu
  13. Xref: senator-bedfellow.mit.edu comp.mail.misc:41960 news.answers:114187 comp.answers:28448
  14.  
  15. Archive-name: LANs/mail-protocols
  16.  
  17.      SERVING DESKTOP COMPUTERS USING A CENTRAL MAIL SERVER ON AN INTERNET
  18.                                        
  19.    
  20.      _________________________________________________________________
  21.    
  22.    Author
  23.           John Wobus, jmwobus@syr.edu (corrections welcome)
  24.           
  25.    Date
  26.           10/3/1997
  27.           
  28.    This file
  29.           http://web.syr.edu/~jmwobus/comfaqs/lan-mail-protocols.html
  30.           
  31.    Other LAN Info
  32.           http://web.syr.edu/~jmwobus/lans/
  33.           
  34.    
  35.      _________________________________________________________________
  36.    
  37. Contents
  38.  
  39.      * Introduction
  40.      * List of Protocols and RFCs
  41.      * Other Sources of Information
  42.      * Capabilities of Well-known mail clients
  43.      * List of Implementations
  44.      * Some other packages for desktop systems
  45.      * Key and Other Issues
  46.        
  47.    
  48.      _________________________________________________________________
  49.    
  50. Introduction
  51.  
  52.    
  53.    
  54.    There are advantages to having a central server receive the mail
  55.    destined to desktop computers and having the desktop computer collect
  56.    the mail from the server on demand:
  57.      * Your desktop computer may be down quite a bit and less network
  58.        bandwidth and less of the processing resources of the sending
  59.        computer are used if the computer receiving your mail is ready to
  60.        receive.
  61.      * Some people use more than one desktop computer to read mail.
  62.      * A desktop computer may not have the resources to store all the
  63.        mail you receive.
  64.      * It can make your e-mail address more like other users'.
  65.        
  66.    
  67.    
  68.    The easiest way to "implement" this is to run the central mail server
  69.    like any multi-user system: let people sign on to it and use some mail
  70.    utility. Then desktop computer users can use "terminal sessions" to
  71.    sign on to the central mail server and read their mail (e.g. with Unix
  72.    "pine"). This has the disadvantage of making the desktop computer
  73.    users learn and use the central mail server's procedures.
  74.    
  75.    SMTP, the "internet" mail protocol used to deliver mail between
  76.    multi-user systems only supports mail transfer initiated by the sender
  77.    (actually, SMTP has a method to initiate reception, i.e. the "TURN"
  78.    command, but the method has problems, didn't catch on and is not
  79.    used). Other protocols have been devised to allow a desktop computer
  80.    to request transfer of mail, thus able to make use of a central
  81.    server. These include the published variants of POP, IMAP, and DMSP.
  82.    
  83.   POP, POP2, POP3
  84.   
  85.    
  86.    
  87.    These are rather minimal and are designed to be so. The three are
  88.    similar but not enough alike to be interoperable. They are basically
  89.    designed to identify the user by username and password, to transfer
  90.    the mail from server to desktop computer and to delete the mail
  91.    transferred. It is assumed that SMTP will be used to send mail.
  92.    Messages can be retrieved individually, but the only information you
  93.    can get about a message without transferring it is its length in
  94.    bytes-- useful for desktop computers with limited storage.
  95.    
  96.    POP3 has a number of optional extensions including Xtnd Xmit which
  97.    allows clients to send mail through the POP3 session rather than using
  98.    SMTP. Another extension is APOP which allows RSA MD5 encryption of
  99.    passwords passed over the network.
  100.    
  101.    POP3 is now by far the most-used variant of POP, but POP2 may still be
  102.    used at a few sites. POP3 has a couple of optional extensions: one to
  103.    avoid sending passwords, and one to aid in reading bulletin boards.
  104.    
  105.   IMAP2, IMAP2BIS, IMAP3, IMAP4, IMAP4REV1
  106.   
  107.    
  108.    
  109.    The IMAP family is similar to the POP family, but also gives clients a
  110.    way to do string searches through mail that still resides on the
  111.    server. This is designed to allow the desktop computer to be more
  112.    selective as to which mail will be transferred. Among other features
  113.    IMAP also allows mail on the server to be placed in server-resident
  114.    folders. The POP protocols, on the other hand, are designed for
  115.    simpler server software.
  116.    
  117.    IMAP2 is used quite a bit. IMAP3 is an incompatible offshoot that has
  118.    not been implemented much. IMAP2bis is an extension of IMAP2 which is
  119.    still in use. Among other things, it made servers cognizant of the
  120.    MIME-structure of a message. IMAP4 is a refinement and extension of
  121.    IMAP2bis, and while it may still be in use somewhere, IMAP4rev1, which
  122.    makes necessary corrections to a few problems with IMAP4 as
  123.    documented, has replaced it (it was given a new designation to allow
  124.    you to demand it by name) and it is suggested that IMAP4-non-rev1
  125.    support be dropped from servers & clients in favor of IMAP4rev1.
  126.    IMAP4(rev1) also extends IMAP to have many other features including
  127.    some of those associated with DMSP.
  128.    
  129.   ACAP
  130.   
  131.    
  132.    
  133.    ACAP (Application Configuration Access Protocol), formerly IMSP
  134.    (Interactive Mail Support Protocol), is a protocol which is being
  135.    developed to compliment IMAP4 by offering related e-mail services
  136.    beyond the scope of IMAP4. It includes the ability to subscribe find &
  137.    subscribe to bulletin boards, mailboxes, and to find and search
  138.    address books.
  139.    
  140.   IMAP VS POP
  141.   
  142.    
  143.    
  144.    As of this writing (4/97), there are a many more POP than IMAP client
  145.    implementations and an Internet Service Provider is much more likely
  146.    to provide POP3 service than any kind of IMAP. POP3 is an Internet
  147.    Standard whereas IMAP4rev1 as of 2/97 is a Proposed Standard. But
  148.    interest in IMAP is growing with big-time software houses announcing
  149.    support. IMAP4rev1 has more features, basically designed to support a
  150.    model where users store their received mail on a server rather than on
  151.    their own computer. The big advantage cited for IMAP is that people
  152.    who "do e-mail" from different computers at different times have the
  153.    same access to their message store from any of the client-computers
  154.    they use. The cost of this model (aside from issues such as the
  155.    complexity and the availability of implementations) is in running a
  156.    server with sufficient space for the clients' message stores. With
  157.    personal computer disks now often above a gigabyte (presumeably
  158.    growing to 10s of gigabytes over the next few years) and multimedia
  159.    messaging in our future, people storing e-mail on their own hard disk
  160.    will have a lot of space and ways to use it. A central store serving
  161.    10-20 users will not be overly difficult, but one for 1,000 or 10,000
  162.    users will be very large (terabytes?) if it is to offer comparable
  163.    space. The question comes down to the tradeoff between the advantage
  164.    to users who computer-hop against the costs of managing the large
  165.    amount of central store. See also online document imap.vs.pop.html
  166.    (reference below) and section below "Issue of Remote Access".
  167.    
  168.   DMSP
  169.   
  170.    
  171.    
  172.    Also know as PCMAIL. Desktop computers can use this protocol to both
  173.    send and receive mail. The system is designed around the idea that
  174.    each user can own more than one workstation; however, the system
  175.    doesn't seem to handle the idea of a "public workstation" very well.
  176.    The desktop computers are assumed to hold state information about the
  177.    mail, a directory so to speak, and when the desktop computer is
  178.    connected to the server, this directory is updated to "reality". Note:
  179.    DMSP never gained the following of IMAP or POP and I've heard the
  180.    software is no longer available.
  181.    
  182.   ESMTP ETRN
  183.   
  184.    
  185.    
  186.    ETRN, which is documented in RFC 1985, is a modified version of the
  187.    original SMTP TURN command which is allowed as an option in Extended
  188.    SMTP (ESMTP). It provides a similar functionality to POP.
  189.    
  190.   WHO USES THESE PROTOCOLS?
  191.   
  192.    
  193.    
  194.    These protocols were designed and implemented mostly by
  195.    Internet-connected universities with some participation by other
  196.    Internet-connected research institutions. They were certainly devised
  197.    to handle the type of electronic mail that universities must do. A
  198.    typical site has probably 10 to 10,000 desktop computers and has an
  199.    Internet connection and also runs Unix, giving them the Unix sysadmin
  200.    expertise that makes running a Unix-based server attractive. Most of
  201.    the servers listed here run under Unix though some run under other
  202.    large systems and as time goes on, we are seeing more servers that run
  203.    on PCs and Macintoshes.
  204.    
  205.    A more recent use of these protocols has been by Internet Service
  206.    Providers and their customers. Internet Service Providers require a
  207.    way to offer e-mail services to however many customers they provide,
  208.    to customers who are connected to the network only part of the time.
  209.    Like a campus application, they may have 10 or 10,000 customers to
  210.    serve. These protocols offer a distinct advantage over SMTP for such
  211.    purposes and form an attractive complementary e-mail service for WWW
  212.    users.
  213.    
  214.   DISADVANTAGES
  215.   
  216.    
  217.    
  218.    There are a number of disadvantages associated with the use of these
  219.    protocols:
  220.      * since these have long been no more than a small part of the e-mail
  221.        market, software using these methods is often incompatible with
  222.        other useful and/or well-known software. A couple of examples are:
  223.           + Use of mail-enabled applications on desktop computers (there
  224.             is no fundamental reason that mail software using these
  225.             protocols can't provide the API used by mail-enabled
  226.             applications, but in general this hasn't come about yet)
  227.           + Use of the usual Unix mail readers & the Unix .forward files.
  228.      * since the server is holding mail for the person, the person can
  229.        use the server for storage. This leaves the potential for all the
  230.        disk-space problems inherent in shared disks: people hogging
  231.        disk-space or forgetting to clean up, etc.
  232.      * sizing the server: a perennial question people ask is "How big a
  233.        machine do I need to serve my campus (or department, or
  234.        whatever)". Naturally no one can give a straight answer because it
  235.        depends upon so many factors.
  236.        
  237.   ISSUE OF REMOTE ACCESS
  238.   
  239.    
  240.    
  241.    Modern commercial e-mail packages typically have features designed to
  242.    assist in remote access of ones e-mail. Features include:
  243.      * ability to download mail through a modem
  244.      * ability to synchronize two different systems which you are using
  245.        to read your e-mail by plugging them together.
  246.        
  247.    
  248.    
  249.    Any method of reading e-mail using PCs or Macintoshes can be used
  250.    remotely via remote control (the "PCanywhere(tm)" method, e.g. by
  251.    dialing up your own office PC/Macintosh and using one of the several
  252.    kinds of software that allow you to control your PC/Macintosh over the
  253.    phone). Also, any LAN-based method can be used by using one of the
  254.    several methods of providing the same protocol support over dialup
  255.    lines as are on LANs (SLIP or PPP for the above-mentioned,
  256.    TCP/IP-based protocols, ARA for Appletalk-based protocols, etc, and
  257.    sometimes using two different protocols, one incapsulated in the
  258.    other) under the constraint that any operations that use the network
  259.    will be much slower. Also, POP3 is sometime used directly over modems
  260.    (for example, Eudora can be used in this manner).
  261.    
  262.    The ideal protocol for remote access would not penalize the user for
  263.    the much slower communications speed (usually slower by a factor of
  264.    100: note that a lot of LAN-based software was written without regard
  265.    to minimizing the necessary communication, thus is really hurt by such
  266.    slow speeds), yet would allow the same software to run both remotely
  267.    and locally, with a wonderful user interface. It would also not be
  268.    overly expensive in communications equipment or services. This is a
  269.    difficult set of objectives and the above-three protocols can achieve
  270.    some of them for some users, but what they actually achieve depends a
  271.    lot on the user's pattern of e-mail usage. If a user reads just a
  272.    small amount of mail, then we would not worry about the length of time
  273.    necessary to download it remotely with POP3, but if the person
  274.    receives a lot of mail, but just wants to read a small amount of it at
  275.    home, then with IMAP4, they could pick and choose what to read,
  276.    eliminating some download time. If someone is paying for the telephone
  277.    line time (possibly the user if it is a long distance call; in any
  278.    case, the institution pays a monthly fee for each line it offers,
  279.    which is dependent upon how many users it is serving, how often they
  280.    call, and how long their calls are) then IMAP4's natural method of
  281.    usage which requires the phone call to remain while a user is reading,
  282.    poking around, sending, and rearranging mail can be much more costly
  283.    than using POP3 if one call is used to quickly download all the mail
  284.    and another later call is used to send any replies. Thus with POP3 a
  285.    user might have two 1 minute calls before and after a 30 minute e-mail
  286.    session instead of keeping the call for 30 minutes with IMAP4, and
  287.    each phone line the institution offers could be serving 15 times as
  288.    many such users who would each pay a lot less in long-distance phone
  289.    bills. Note that with the advent of multimedia mail (see MIME below)
  290.    whose messages can be very large, it is possible that downloading even
  291.    one message that you end up not reading remotely could ruin such a
  292.    nice-sounding scenario.
  293.    
  294.    Note that with the growth of Internet Service Providers, remote access
  295.    is becoming the normal way for many people to do their e-mail, and
  296.    offering such services is one of the major growth areas for POP and
  297.    IMAP.
  298.    
  299.   MIME
  300.   
  301.    
  302.    
  303.    MIME (Multipurpose Internet Mail Extensions) is a relatively new
  304.    Internet standard for the format for messages with multiple parts, and
  305.    with non-ASCII data. Any client that can import or export files can
  306.    use MIME in a clumsy way if you have a program to create and/or decode
  307.    a MIME message. Some clients have built-in features to do this.
  308.    Client-server mail protocols generally only deal with entire messages,
  309.    and can retrieve MIME messages as well as any other messages since
  310.    MIME was carefully designed to be transparent to existing mail
  311.    systems. However, IMAP4 has features to allow retrieval of individual
  312.    parts of MIME-encoded messages. The chart below lists whether a
  313.    package has MIME support. Servers for protocols that don't offer any
  314.    special MIME features are marked na for Not Applicable since they need
  315.    do nothing for users to use MIME. All IMAP4 servers can also do this,
  316.    but the chart lists whether they include explicit MIME support.
  317.    
  318.   APPROACHES NOT COVERED BY THIS MEMO
  319.      * Proprietary protocols
  320.      * file sharing
  321.      * APIs
  322.      * X.400.
  323.        
  324.    
  325.    
  326.    Vendors can invent their own protocols similar to those listed above,
  327.    and some have.
  328.    
  329.    LAN e-mail can also be implemented using file sharing, e.g. using NFS
  330.    to allow separate Unix workstations to share the same mail spool area
  331.    just as if it were mail being stored on one system, or using Novell's
  332.    SMF (Simple Message Format) in a Novell file server. If the
  333.    applications are written so that they are careful to lock files
  334.    correctly, then this works. An advantage is that any network file
  335.    protocol can be used and the e-mail application can be somewhat
  336.    independent of the file protocol. For example, Unix systems could use
  337.    either AFS or NFS. Pegasus is a PC & Mac application that uses Novell
  338.    file service to do something similar. Specifications for client-server
  339.    interaction consist of the file service protocol along with the server
  340.    directory structures & conventions used for storing e-mail.
  341.    
  342.    A very popular approach with commercial vendors is the use of APIs.
  343.    The client talks to the server using an API (Applications Programming
  344.    Interface), i.e., a set of subroutine/procedure library call
  345.    definitions for a library providing subroutines/procedures to send,
  346.    receive, and manipulate e-mail. With the use of any remote procedure
  347.    call mechanism, the client can be located on a different computer from
  348.    the server. This allows some mixing and matching of RPC mechanisms,
  349.    underlying protocol stacks and APIs: e.g., a vendor defines an API,
  350.    and it can be run over IPX or TCP/IP, in each case over the protocol
  351.    stack's RPC mechanism. There are a number of APIs now being pushed by
  352.    vendors: MAPI (Microsoft); VIM (Lotus); AOCE (Apple). These API's have
  353.    been the basis for numerous mail-enabled applications: e.g. a word
  354.    processor that allows you to send or receive documents through e-mail
  355.    simply uses one of these APIs allowing it to communicate with any
  356.    server supporting the same API. Specifications for client-server
  357.    interaction consist of the protocol stack up to the RPC protocol, then
  358.    the API itself.
  359.    
  360.    Note that though the API approach in combination with remote procedure
  361.    calls allows one to implement client-server e-mail without the use of
  362.    the protocols covered by this document (IMAP, POP, etc), that there is
  363.    no theoretical reason why such APIs can't be used in an IMAP or POP
  364.    environment. The necessary software would be a "driver" or piece of
  365.    "middleware" that provides the APIs calls to mail-enabled applications
  366.    and uses POP, IMAP, or whatever over a LAN to reach a server. The
  367.    advantages/disadvantages of such an approach as compared to the use of
  368.    RPCs is open to debate. UniPalm's Mail-IT is an example of client
  369.    software that provides MAPI within the client and uses POP3 to access
  370.    the server.
  371.    
  372.    X.400 is the message transport defined for use between
  373.    telecommunications vendors and customers by the international
  374.    consortium of national standards bodies known as ISO. It roughly
  375.    corresponds to TCP/IP's SMTP and RFC822 header format. A consortium of
  376.    X.400 vendors (XAPIA) have developed an API for X.400 applications
  377.    called CMC.
  378.    
  379.   LDAP
  380.   
  381.    
  382.    
  383.    LDAP is a protocol (the Lightweight Directory Access Protocol) being
  384.    incorporated in some clients as an Internet way for the client to get
  385.    information about e-mail addresses from a server, i.e. to give you the
  386.    capability to type in someone's name and have the mail client software
  387.    retrieve the address from a server-based directory. LDAP also has
  388.    other uses. There are plans to incorporate LDAP clients into some IMAP
  389.    and POP clients. LDAP is essentially an Internet-based, simplified
  390.    X.500-like protocol and one of the original intentions of its creators
  391.    was to be gatewayed to X.500, thus giving relatively simple Internet
  392.    clients access to X.500 servers. Both LDAP and X.500 provide a method
  393.    for naming, retrieving, and searching fields in a directory, but do
  394.    not define the field-names or what is supposed to go in the fields.
  395.    Thus server/client interoperability requires further conventions.
  396.    
  397.   JAVA
  398.   
  399.    
  400.    
  401.    Java is a programming language currently (1996) touted as a tool for
  402.    web-based applications. It can affect the use of LAN protocols in a
  403.    number of ways: first of all, POP or IMAP clients can be written in
  404.    Java, using its cross-platform development capabilities to create
  405.    version for a number of platforms. Second, clients could be written as
  406.    "Applets", i.e. applications designed to be downloaded into web
  407.    browsers such as Netscape from a server. With such a design, a user
  408.    would only need access to a web browser to see their e-mail, e.g. drop
  409.    into a library and see your e-mail from one of its Internet-browser
  410.    kyosks. Applets are not normally allowed to access the
  411.    client-machine's disk files (which would result in too much risk when
  412.    browsing the Internet from the kind of people who develop computer
  413.    viruses), so such an application fits a little better into the IMAP
  414.    model (server storage of e-mail folders) than the POP model (client
  415.    storage of e-mail folders). Thirdly, Applets enable more practical use
  416.    of e-mail clients that use non-standard protocols rather than POP or
  417.    IMAP; interoperability is achieved because the server itself
  418.    distributes a compatible client applet right when the user accesses
  419.    the server.
  420.      _________________________________________________________________
  421.    
  422. List of Protocols and RFCs
  423.  
  424.    
  425.    
  426.    Note: for up-to-date information on the RFCs, get an index from an RFC
  427.    repository. For up-to-date information on the state of each RFC as to
  428.    the Internet Standards, see the most recent RFC called "Internet
  429.    Official Protocol Standards".
  430.  
  431. Name:      Simple Mail Transfer Protocol
  432. Nickname:  SMTP
  433. Document:  RFC 821 (Postel, August 1982)
  434. TCP-port:  25
  435. Status:    According to RFC 2000 (2/97), Standard/Recommended (STD 10);
  436.            Virtually universal for IP-based e-mail systems.
  437.  
  438. Name:      Post Office Protocol, Version 2
  439. Nickname:  POP2
  440. Document:  RFC 937 (Butler et al, February 1985)
  441. TCP-port:  109
  442. Status:    According to RFC 2000 (2/97), Historic/Not Recommended;
  443.            Functionally replaced by incompatible POP3 but likely to be
  444.            used at a few sites.
  445.  
  446. Name:      Post Office Protocol, Version 3
  447. Nickname:  POP3
  448. Document:  RFC 1939 (Myers & Rose, May 1996)
  449. TCP-port:  110 (109 also often used)
  450. Status:    According to RFC 2000 (2/97), Standard/Elective (STD 53);
  451.            In common use.
  452. Sites:     UC Irvine, MIT
  453. Old Docs:  RFC 1725.
  454.  
  455. Name       Post Office Protocol, Version 3 Authentication command
  456. Nickname:  POP3 AUTH
  457. Document:  RFC1734 (Myers, December 1994)
  458. Status:    According to RFC 2000 (2/97), Proposed/Elective.
  459.  
  460. Name:      Post Office Protocol, Version 3 Extended Service Offerings
  461. Nickname:  POP3 XTND
  462. Document:  RFC 1082 (Rose, November 1988)
  463.  
  464. Name:      Distributed Mail Service Protocol
  465. Nickname:  DMSP, Pcmail
  466. Document:  RFC 1056 (Lambert, June 1988)
  467. TCP-port:  158
  468. Status:    According to RFC 2000 (2/97), Informational;
  469.            Used very little
  470. Sites:     MIT
  471.  
  472. Name:      Interactive Mail Access Protocol, Version 2
  473. Nickname:  IMAP2
  474. Document:  RFC 1176 (Crispin, August 1990)
  475. TCP-port:  143
  476. Status:    According to RFC 2000 (2/97), Experimental/Limited Use;
  477.            In use, being replaced by upward-compatible IMAP4(rev1).
  478. Sites:     Stanford, U Washington
  479.  
  480. Name:      Interactive Mail Access Protocol, Version 2bis
  481. Nickname:  IMAP2bis
  482. TCP-port:  143
  483. Status:    Experimental, but in use, being replaced by upward-compatible
  484.            IMAP4(Rev1); No RFC.
  485.  
  486. Name:      Interactive Mail Access Protocol, Version 3
  487. Nickname:  IMAP3
  488. Document:  RFC 1203 (Rice, February 1991)
  489. TCP-port:  220
  490. Status:    According to RFC 2000 (2/97) "Historic(Not Recommended)";
  491.            No one uses it.
  492. Sites:     Stanford
  493.  
  494. Name:      Internet Message Access Protocol, Version 4
  495. Nickname:  IMAP4
  496. Document:  RFC 1730 (Crispin, December 1994)
  497. TCP-port:  143
  498. Status:    According to RFC 2000 (2/97) "Obselete Proposed/Elective
  499.            Protocol" obseleted by IMAP4rev1"; Implementations exist,
  500.            being replaced by revised version IMAP4rev1.
  501. Sites:     U Washington
  502. Related:   RFC 1731 (Myers, December 1994),
  503.            RFC 1732 (Crispin, December 1994),
  504.            RFC 1733 (Crispin, December 1994)
  505.  
  506. Name:      Internet Message Access Protocol, Version 4rev1
  507. Nickname:  IMAP4rev1
  508. Document:  RFC 2060 (Crispin, December 1996)
  509. TCP-port:  143
  510. Status:    According to RFC 2000 (2/97) "Proposed/Elective Protocol";
  511.            Implementations exist and more are in progress.
  512. Sites:     U Washington
  513. Related:   RFC 2061 (Crispin, December 1996),
  514.            RFC 2062 (Crispin, December 1996)
  515.  
  516. Name:      Interactive Mail Support Protocol
  517. Nickname:  IMSP
  518. Document:  Draft RFC: ? (Myers, June 1995)
  519. TCP Port:  406
  520. Status:    Experimental, renamed ACAP
  521. Sites:     Carnegie Mellon
  522.  
  523. Name:      Application Configuration Access Protocol
  524. Nickname:  ACAP
  525. Document:  Draft RFC: ? (Myers, June 1996)
  526. Status:    ?
  527. Sites:     Carnegie Mellon
  528.  
  529.    
  530.    
  531.    Note: The "I" in IMAP used to stand for "Interactive". Now it stands
  532.    for "Internet" and the "M" stands for "Message" rather than "Mail".
  533.    Also, Internet drafts are available at ds.internic.net, munnari.oz.au,
  534.    and nic.nordu.net in directory internet-drafts. IMAP2bis is
  535.    essentially an early version of IMAP4.
  536.      _________________________________________________________________
  537.    
  538. Other Sources of Information
  539.  
  540.    My own info
  541.           http://web.syr.edu/~jmwobus/lans/#imappop
  542.           http://web.syr.edu/~jmwobus/internet/
  543.           
  544.    The IMAP Connection web site
  545.           
  546.         http://www.imap.org
  547.                 Main page
  548.                 
  549.         http://www.imap.org/products.html
  550.                 List of IMAP implementations
  551.                 
  552.         http://www.imap.org/imap.vs.pop.brief.html
  553.                 Outlines differences between IMAP and POP.
  554.                 
  555.         http://www.imap.org/imap.vs.pop.html
  556.                 Same, with more detail.
  557.                 
  558.         http://www.imap.org/biblio.html
  559.                 Bibliography of IMAP Documents.
  560.                 
  561.    Information from University of Washington
  562.           http://www.washington.edu/imap/
  563.           
  564.    By anonymous ftp from ftp.cac.washington.edu
  565.           mail/* (miscellaneous information)
  566.           
  567.    Information from andrew2.andrew.cmu.edu
  568.           
  569.         http://andrew2.andrew.cmu.edu/cyrus/email/clients-IMAP.html
  570.                 List of IMAP clients
  571.                 
  572.         http://andrew2.andrew.cmu.edu/cyrus/acap/acap.html
  573.                 The ACAP Home Page
  574.                 
  575.    Mailing lists:
  576.           pop@jhunix.hcf.jhu.edu
  577.           imap@cac.washington.edu
  578.           CW-EMAIL@EARNCC.EARN.NET
  579.           
  580.    By anonymous ftp from rtfm.mit.edu
  581.           This memo
  582.           comp.os.msdos.mail-news FAQ Memo
  583.           ftp://rtfm.mit.edu/pub/usenet/comp.os.msdos.mail-news/intro
  584.           and
  585.           ftp://rtfm.mit.edu/pub/usenet/comp.os.msdos.mail-news/softwar
  586.           e
  587.           Mini FAQ on client-server mail protocols (similar to this memo
  588.           but shorter and more practical)
  589.           http://www.etext.org/~pauls/mailclientfaq.txt or
  590.           ftp://rtfm.mit.edu/pub/usenet/news.answers/mail/mailclient-fa
  591.           q
  592.           
  593.    Consortium
  594.           "The IMAP Consortium" (Getting under way as of March 1995).
  595.           
  596.    Page on MAPI API
  597.           http://www.wp.com/davidb/emapi.html
  598.           
  599.    
  600.      _________________________________________________________________
  601.    
  602. Capabilities of Well-known mail clients
  603.  
  604.    
  605.    
  606.    This section covers what I've been able to find out so far about the
  607.    well-known mail clients' ability to retrieve mail from a POP or IMAP
  608.    server.
  609.  
  610. Client                       POP3           IMAP          MIME
  611. ------                       ----           ----          ----
  612. Apple PowerMail client          ?.             ?.            ?.
  613. BeyondMail Professional 3.0   yes        planned-          yes
  614. CE QuickMail LAN client        no             no           yes
  615. CE QuickMail Pro client       yes        planned           yes
  616. Claris Emailer                yes              ?           yes
  617. DaVinci eMAIL client          yes*             ?           yes*
  618. Eudora                        yes        planned|          yes
  619. FirstClass                      ?              ?             ?
  620. Lotus cc:Mail Client R8       yes            yes           yes
  621. Lotus Notes mail client 4.0   yes        planned_          yes
  622. Microsoft Mail client          no             no            no
  623. Microsoft Exchange client     yes+            no           yes&
  624. Microsoft Outlook 97          yes             no           yes
  625. Netscape Navigator            yes             no           yes
  626. Netscape Communicator=        yes            yes           yes
  627. Novell Groupwise              yes        planned^          yes
  628.  
  629. Notes:
  630. (.) Discontinued.
  631. (-) IMAP4, target delivery: 4th quarter 1997.
  632. (_) Lotus Notes mail client IMAP4 due 4th quarter 1997.
  633. (*) DaVinci SMTP eMAIL: I'm not sure if this is different from
  634.     the normal DaVinci client.
  635. (|) Eudora IMAP4 due 3rd quarter 1997.
  636. (+) POP requires Internet Mail Client for Exhange, downloadable from
  637.     http://www.windows.microsoft.com or included in "Microsoft Plus".
  638.     Due to be integrated, 1st quarter 1997.
  639. (&) qp/base64.  Due to be integrated (IMAP4) 3rd quarter 1997.
  640. (=) Due 2nd quarter, 1997.
  641. (^) Due 3rd quarter 1997.
  642.  
  643.  
  644.  
  645.    
  646.      _________________________________________________________________
  647.    
  648. List of Implementations
  649.  
  650.    
  651.    
  652.    Note: http://www.etext.org/~pauls/mailclientfaq.txt has a list that is
  653.    more concise and less daunting. Also, while this list includes any
  654.    IMAP software I hear about, http://www.imap.org/products.html offers a
  655.    better list of IMAP implementations. See the section above on Other
  656.    Sources of Information for other documents with such lists & charts.
  657.  
  658.  
  659. Prot   Computer   Implementation      End  MIME Source
  660. ------ ---------- ------------------- ---- ---- -------------------------------
  661. POP3u  Unix       Cyrus ?             srvr na   3/12/96
  662. POP2   HP3000/MPE NetMail/3000        srvr na   3K Associates
  663. POP3   ?          NetMail/3000        srvr na   3K Associates
  664. POP?   MacOS      byupopmail          clnt ?    ?
  665. POP?   MacOS      MEWS                clnt ?    ?
  666. POP3   MacOS      HyperMail           ?    ?    ?
  667. POP3   MS-DOS     TechMail(future)    clnt ?    ?
  668. POP?   OS/2       Yarn/Souper(?)      clnt ?    ? 1/16/96
  669. POP?   OS/2       Popclient           clnt yes  ? 1/19/96
  670. POP?   OS/2       Emacs 19.xx         clnt yes  ? 1/19/96
  671. POP?   OS/2       lampop(?)           clnt ?    ? 1/26/96
  672. POP2   Unix       USC-ISI popd        srvr na   ? 10/24/94
  673. POP2   MacOS      MacPOP 1.5          clnt ?    ? 10/24/94
  674. POP2   MS-DOS     PC POP 2.1          clnt ?    ? 10/24/94
  675. POP3   NT         Metainfo/Intergate  srvr na   ? 11/26/96
  676. IMAP2  TOPS20     MAPSER              srvr na   ? 11/7/93
  677. POP3   MacOS      Powertalk           ?    ?    ? 11/7/95
  678. POP3   Unix       mush 7.2.5          clnt ?    ? 12/16/94
  679. POP3   WIN?       Mailcall            chkr na   ? 6/11/96
  680. POP3   WIN?       Mailcheck           chkr na   ? 6/11/96
  681. IMAP?  Unix       Elm                 clnt ?    ? 7/1/96
  682. POP3   WIN95      Agent               clnt ?    ? 7/23/96
  683. POP3   ?          pop-perl5           clnt ?    ? 7/23/96
  684. POP3   MacOS/AOCE MailConnect         clnt yes  ? 7/5/95
  685. POP23  Unix/EMACS RMAIL               clnt no   ? 8/2/95
  686. POP23k UnixX      exmh                clnt yes  ? 8/8/95
  687. POP?   MS-DOS     PC POP              clnt ?    ?Bill Schweickert/Sterling Fed
  688. IMAP?  MacOS      MailDrop 1.1        clnt ?    ackmo.baylor.edu 3/22/96
  689. IMAP2? MacOS      MailDrop 1.2d7f     clnt ?    ackmo.baylor.edu 6/9/97
  690. IMAP?  MS-WIN     Air Mail            ?    ?    AIR Co. Ltd http://www.air.co.j
  691. p 9/3/97
  692. POP3   MacOS      Marionet 1.0        srvr na   Allegiant 6/12/96 (www.allegian
  693. t.com)
  694. DMSP   Unix       Pcmail 3.1 reposit. srvr na   allspice.lcs.mit.edu
  695. DMSP   PC         pc-epsilon (3.1)    clnt ?    allspice.lcs.mit.edu
  696. DMSP   Unix/EMACS Pcmail 4.2          clnt ?    allspice.lcs.mit.edu
  697. DMSP   PC         pc-reader           clnt ?    allspice.lcs.mit.edu
  698. DMSP   PC         pc-netmail (3.1)    clnt ?    allspice.lcs.mit.edu
  699. IMAP   MacOS      AIMS 2.1 (fut)      srvr ?    Apple 10/17/96
  700. POP3r  MacOS      AIMS 1.1.1          srvr na   Apple 10/17/96
  701. POP3r  MacOS      AIMS 2.0 (fut: '97) srvr ?    Apple 10/17/96
  702. POP3r  MacOS      AIMS 2.1 (fut)      srvr ?    Apple 10/17/96
  703. POP3r  MacOS      AIMS 1.0            srvr na   Apple 10/27/95
  704. POP3r  MacOS      AIMS 1.1            srvr na   Apple 5/21/96 (www.cybertech.ap
  705. ple.com)
  706. POP3   MacOS      Cyberdog 2.0        clnt ?    Apple 5/21/97
  707. POP3r  MacOS      AppleShare IP 5.0   srvr na   Apple appleshareip.com 4/3/97
  708. POP?   ?          Applixware          ?    ?    Applix 6/24/96
  709. POP3   ?          VA Workgroup        clnt yes  Ashmount 4/30/96 http://www.asn
  710. mount.com
  711. POP3   ?          VA Professional     clnt yes  Ashmount 4/30/96 http://www.asn
  712. mount.com
  713. IMAP2  Solaris    MMail               clnt yes  Atelier de Software Ltd. 5/21/9
  714. 6
  715. IMAP2  MacOS      MMail (planned)     clnt yes  Atelier de Software Ltd. 5/21/9
  716. 6
  717. POP3   WIN3/95/NT Emissary Office 1.1 clnt yes  Attachmate 7/29/96
  718. POP3   DOSWIN     BeyondMail          clnt yes  Banyan (beyondmail.banyan.com)
  719. 2/6/96
  720. IMAP4  ?          BeyondMail (future) clnt yes  Banyan (beyondmail.banyan.com)
  721. 9/6/96
  722. POP3   MacOS      Bluto               clnt yes  Bare Bones www.barebones.com 3/
  723. 31/97
  724. IMAP?  MacOS      MailDrop 2 (dev)    clnt ?    Baylor 1/19/96
  725. POP23  MS-WIN     BW-Connect          clnt no   Beame & Whiteside 8/4/94
  726. POP3   MS-DOSk    nos11c-a.exe        srvr na   biochemistry.bioc.cwru.edu 9/16
  727. /94
  728. POP3   MS-DOSk    pop3serv            srvr na   biochemistry.crwu.edu
  729. IMAP?  MS-DOSp    POPMail/PC 3.2.2    clnt ?    boombox.micro.umn.edu 1/11/94
  730. POP2   MacOS      MailStop 1.1.3      srvr na   boombox.micro.umn.edu 1/18/94
  731. POP2   Unix       U Minn popd 1.5c    srvr na   boombox.micro.umn.edu 11/19/93
  732. POP3   MS-DOSk    pop3nos v1.86       srvr na   boombox.micro.umn.edu 12/3/93
  733. POP2   MS-DOSk    net091b             srvr na   boombox.micro.umn.edu 12/3/93
  734. IMAP2  MacOS      POPmail 2.09b       clnt ?    boombox.micro.umn.edu 9/1/95
  735. POP2   MS-DOSp    POPMail 3.2.2       clnt ?    boombox.micro.umn.edu 9/1/95
  736. POP3   MS-WINw5   POPmail/Lab         clnt ?    boombox.micro.umn.edu 9/1/95
  737. IMAP?  MS-DOSp    POPMail 3.2.3 beta2 clnt ?    boombox.micro.umn.edu 9/1/95
  738. POP23  MacOS      POPmail 2.2         clnt ?    boombox.micro.umn.edu 9/1/95
  739. POP    MacOS      POPmail 1.7         clnt ?    boombox.micro.umn.edu 9/1/95
  740. POP3   MacOS      POPmail/Lab         clnt ?    boombox.micro.umn.edu 9/1/95
  741. IMAP2  MacOS      POPmail 2.2         clnt ?    boombox.micro.umn.edu 9/1/95
  742. POP23  MacOS      POPmail 2.09b       clnt ?    boombox.micro.umn.edu 9/1/95
  743. POP2   MS-DOSp    POPMail 3.2.3 beta2 clnt ?    boombox.micro.umn.edu 9/1/95
  744. POP2   Unix/HP9k  hp9000_popd         srvr na   boombox.micro.umn.edu 9/1/95
  745. IMAP2  MS-WINw    POPmail             clnt ?    boombox.micro.umn.edu 9/1/95
  746. POP2   Unix/AIX   aix_new_popd        srvr na   boombox.micro.umn.edu 9/1/95
  747. POP23  MS-WINw    POPmail             clnt ?    boombox.micro.umn.edu 9/1/95
  748. POP3   MS-WINw    ws_gmail            srvr na   buckshot.usma.edu 9/16/94
  749. POP?   Unix       xfmail              clnt ?    burka.netvision.net.il 5/110/96
  750. IMAP4  ?          Futr Andrew Msg Sys ?    ?    Carnegie-Mellon 9/20/94
  751. POP3   Unix       Mail*Hub            srvr ?    CDC 10/23/96 www.cdc.com
  752. IMAP4  Unix       Mail*Hub            srvr ?    CDC 10/23/96 www.cdc.com
  753. POP3   ?          QM-Internet Gateway ?    ?    CE Software 6/24/96
  754. POP3   WIN95/NT   QuickMail Pro 1.6   clnt yes  CE Software www.cesoft.com 4/11
  755. /97
  756. POP3   WIN95/NT   QuickMail Pro 1.6   srvr ?    CE Software www.cesoft.com 4/11
  757. /97
  758. POP3   MacOS      QuickMail Pro 1.6   clnt yes  CE Software www.cesoft.com 4/11
  759. /97
  760. POP3   Unix       QuickMail Pro 1.6   srvr ?    CE Software www.cesoft.com 4/11
  761. /97
  762. POP3   OS/2       QuickMail Pro 1.6   srvr ?    CE Software www.cesoft.com 4/11
  763. /97
  764. IMAP?  ?          QuickMail Pro (fut) clnt ?    CE Software www.cesoft.com 8/9/
  765. 96
  766. POP3   ?          QuickMail POP (fut) clnt ?    CE Software www.cesoft.com 8/9/
  767. 96
  768. POP3   MacOS      LeeMail 2.0.2 (shw) clnt ?    chs.cusd.claremont.edu 10/12/93
  769. POP3   MacOS      OfficeMail          srvr na   Claris www.claris.com 6/6/96
  770. POP3   MacOS      Emailer 2.0         clnt yes  Claris www.claris.com 7/14/97
  771. POP3   MacOS      Emailer 1.1         clnt yes  Claris www.claris.com 7/29/96
  772. IMAP?  Unix/X     Cyrus (dev on hold) clnt yes  CMU 10/4/94
  773. IMAP4  MS-WIN32   Pronto97            clnt yes  CommTouch www.comtouch.com 3/13
  774. /97
  775. POP3   MS-WIN32   Pronto97            clnt yes  CommTouch www.comtouch.com 3/13
  776. /97
  777. POP3   MS-WINw    Pronto Mail 2.01    clnt yes  Commtouch www.comtouch.com 4/24
  778. /96
  779. POP3   WIN3/95    Pronto Mail 2.0     clnt yes  CommTouch www.comtouch.com 7/29
  780. /96
  781. IMAP   MS-WINw    Pronto              clnt yes  Commtouch www.comtouch.com 9/5/
  782. 95
  783. POP3   OS/2       PowerWeb Server++   srvr na   CompuSource 4/16/96 http://www.
  784. compusource.co.za
  785. POP3   ?          IntraStore Srvr 97  srvr yes  Control Data Corp www.cdc.om 3/
  786. 13/97
  787. IMAP4  ?          IntraStore Srvr 97  srvr yes  Control Data Corp www.cdc.om 3/
  788. 13/97
  789. POP3   WIN32      BeyondMail Pro Int  clnt yes  Coordinate www.coordinate.com 3
  790. /13/97
  791. POP3   Unix       BeyondMail clnt 3.0 clnt yes  Coordinate www.coordinate.com 4
  792. /11/97
  793. POP3   NT         BeyondMail srvr 3.0 srvr ?    Coordinate www.coordinate.com 4
  794. /11/97
  795. POP3   OS/2       BeyondMail clnt 3.0 clnt yes  Coordinate www.coordinate.com 4
  796. /11/97
  797. POP3   Unix       BeyondMail srvr 3.0 srvr ?    Coordinate www.coordinate.com 4
  798. /11/97
  799. POP3   WIN95/NT   BeyondMail clnt 3.0 clnt yes  Coordinate www.coordinate.com 4
  800. /11/97
  801. POP3   MacOS      BeyondMail clnt 3.0 clnt yes  Coordinate www.coordinate.com 4
  802. /11/97
  803. POP3   Vines      BeyondMail srvr 3.0 srvr ?    Coordinate www.coordinate.com 4
  804. /11/97
  805. POP3   ?          cucipop (future)    srvr na   cuci.nl 8/6/96
  806. IMAP?  MacOS      Mulberry 1.1        clnt ?    CyDaSoft 12/19/96
  807. IMAP2b MacOS      Mulberry 1.2        clnt yes  Cyrusoft www.cyrusoft.com 7/14/
  808. 97
  809. POP3   Win95/NT   Mulberry 1.2        clnt yes  Cyrusoft www.cyrusoft.com 7/14/
  810. 97
  811. IMAP41 Win95/NT   Mulberry 1.2        clnt yes  Cyrusoft www.cyrusoft.com 7/14/
  812. 97
  813. IMAP2b Win95/NT   Mulberry 1.2        clnt yes  Cyrusoft www.cyrusoft.com 7/14/
  814. 97
  815. POP3   MacOS      Mulberry 1.2        clnt yes  Cyrusoft www.cyrusoft.com 7/14/
  816. 97
  817. IMAP41 MacOS      Mulberry 1.2        clnt yes  Cyrusoft www.cyrusoft.com 7/14/
  818. 97
  819. ?      ?          Mulberry 1.3 (fut)  clnt yes  Cyrusoft 9/3/97
  820. IMSP   ?          Mulberry 1.3 (fut)  clnt yes  Cyrusoft 9/3/97
  821. POP23k UnixX      dxmail/mh           clnt ?    DEC
  822. POP3   MacOS      NetAlly             srvr na   Delphic (www.delphic.com) 11/17
  823. /95
  824. POP3   WIN95      Windis32            srvr na   Demon Internet 6/6/96 (www.demo
  825. n.co.uk)
  826. POP3r  NT         MAILbus Internet(b) srvr na   Digital 2/20/96 (www.digital.co
  827. m)
  828. POP3r  DEC UNIX   MAILbus Internet(b) srvr na   Digital 2/20/96 (www.digital.co
  829. m)
  830. POP3   NT         MAILbus Internet    srvr na   Digital 2/20/96 (www.digital.co
  831. m)
  832. POP3   DEC UNIX   MAILbus Internet    srvr na   Digital 2/20/96 (www.digital.co
  833. m)
  834. IMAP?  ?          ?                   srvr ?    Digital 2/20/97
  835. IMAP?  ?          Altavista Mail Srv  srvr ?    Digital altavista.digital.com 4
  836. /4/97
  837. IMAP2b Unix       imapperl-0.6        clnt ?    dnpap.et.tudelft.nl 2/6/96
  838. IMAP   WIN?       ?                   clnt ?    Email connection 12/8/95
  839. POP3   NT         sendmail/POP3       srvr na   emwac.ed.ac.uk 12/5/95 (www.emw
  840. ac.ed.ac.uk)
  841. IMAP4  NT         sendmail/POP3 (fut) srvr ?    emwac.ed.ac.uk 5/21/96 (www.emw
  842. ac.ed.ac.uk)
  843. POP3   OS/2       TCP/2 ADV CLIENT    clnt ?    Essex Systems
  844. DMSP   OS/2       TCP/2               clnt ?    Essex Systems
  845. POP2   OS/2       TCP/2 SERVER PACK   srvr na   Essex Systems
  846. POP3   OS/2       TCP/2 SERVER PACK   srvr na   Essex Systems
  847. DMSP   OS/2       TCP/2 ADV CLIENT    clnt ?    Essex Systems
  848. DMSP   OS/2       TCP/2 SERVER PACK   srvr na   Essex Systems
  849. IMAP2  MS-DOS     ECSMail DOS         clnt yes  ESYS Corp www.esys.ca 12/16/96
  850. IMAP2  Unix/XM    ECSMail Motif       clnt yes  ESYS Corp www.esys.ca 12/16/96
  851. IMAP?  NT         ECSMail             clnt yes  ESYS Corp www.esys.ca 12/16/96
  852. IMAP2b MacOS      ECSMail             clnt yes  ESYS Corp www.esys.ca 12/16/96
  853. IMAP2b MS-WINw    ECSMail             clnt yes  ESYS Corp www.esys.ca 12/16/96
  854. IMAP2b Solaris    ECSMail             clnt yes  ESYS Corp www.esys.ca 12/16/96
  855. IMAP?  OS/2       ECSMail OS/2        clnt yes  ESYS Corp www.esys.ca 12/16/96
  856. IMAP4  ?          SIMEON SERVER       srvr ?    ESYS Corp www.esys.ca 8/1/96
  857. IMAPb4 MacOS      SIMEON 4.1          clnt yes  ESYS Corp www.esys.ca 8/5/96
  858. IMAPb4 Unix/Motif SIMEON 4.1          clnt yes  ESYS Corp www.esys.ca 8/5/96
  859. IMAPb4 MS-WIN     SIMEON 4.1          clnt yes  ESYS Corp www.esys.ca 8/5/96
  860. IMAPb4 WIN32      SIMEON 4.1          clnt yes  ESYS Corp www.esys.ca 8/5/96
  861. IMAPb4 Mac/OT     SIMEON 4.1          clnt yes  ESYS Corp www.esys.ca 8/5/96
  862. IMSP   ?          SIMEON ?            clent yes ESYS Corp www.esys.ca 9/3/97
  863. POP23  MS-WINnpo  Super-TCP for W e.0 clnt yes  Frontier Technologies 6/10/94
  864. POP?   MS-WINnpo  Super-TCP for W e.0 srvr yes  Frontier Technologies 7/12/94
  865. POP3   WIN3/95/NT SuperHghwy Access 2 clnt yes  Frontier Technologies 7/29/96
  866. POP3t  MS-DOSnpo  PC/TCP              clnt ?    FTP Software
  867. POP2   MS-DOS     PC/TCP              clnt ?    FTP Software
  868. DMSP   OS/2       PC/TCP              clnt ?    FTP Software
  869. POP2   OS/2       PC/TCP for OS/2     clnt ?    FTP Software 11/2/93
  870. POP3   OS/2       PC/TCP for OS/2     clnt ?    FTP Software 11/2/93
  871. POP?   WIN32      Mail OnNet (OnNet32)clnt yes  FTP Software 5/3/96 (www.ftp.co
  872. m)
  873. DMSP   PC         PC/TCP 2.3          clnt ?    FTP Software 8/4/94
  874. IMAP24 MacOS      Mailstrom 1.05      clnt no   ftp-camis.stanford.edu 5/21/96
  875. IMAP1  Unix       imapd 3.2 (obs)     srvr na   ftp-camis.stanford.edu 7/13/95
  876. IMAP2b Unix/XM    ML 1.3.1            clnt yes  ftp-camis.stanford.edu 7/13/95
  877. POP3r  OS/2       popsrv10.zip        srvr na   ftp-os2.mnsu.edu 3/15/96
  878. ?      OS/2       lamailpop           ?    ?    ftp-so2.cdrom.com
  879. POP3   MS-DOSp    NUPop 2.02          clnt no   ftp.acns.nwu.edu 1/18/94
  880. POP3   MS-DOSp    NUPop 1.03          clnt no   ftp.acns.nwu.edu 11/5/93
  881. POP3   MS-DOSp    NUPop 2.10 (alpha)  clnt yes  ftp.acns.nwu.edu 6/10/94
  882. IMAP41 Unix       Cyrus 1.5           srvr yes  ftp.andrew.cmu.edu 3/21/97
  883. IMAP   Unix       Cyrus 1.1           srvr ?    ftp.andrew.cmu.edu 3/21/97
  884. KPOP   Unix       Cyrus 1.5           srvr na   ftp.andrew.cmu.edu 3/21/97
  885. KPOP   Unix       Cyrus 1.5.2         srvr na   ftp.andrew.cmu.edu 3/21/97
  886. POP3k  Unix       Cyrus 1.5           srvr na   ftp.andrew.cmu.edu 3/21/97
  887. POP3k  Unix       Cyrus 1.5.2         srvr na   ftp.andrew.cmu.edu 3/21/97
  888. POP3   Unix       Cyrus 1.4           srvr na   ftp.andrew.cmu.edu 3/21/97
  889. IMAP   Unix       Cyrus 1.4           srvr yes  ftp.andrew.cmu.edu 3/21/97
  890. KPOP   Unix       Cyrus 1.4           srvr na   ftp.andrew.cmu.edu 3/21/97
  891. IMAP41 Unix       Cyrus 1.5.2         srvr yes  ftp.andrew.cmu.edu 3/21/97
  892. POP3k  Unix       popper-1.831k       srvr na   ftp.brown.edu 4/11/97
  893. POP3k  MacOS      Eudora 1.3a8k       clnt ?    ftp.brown.edu 8/19/94
  894. IMAP24 Unix       Pine 3.91           clnt yes  ftp.cac.washington.edu 10/14/94
  895. IMAP24 MS-DOSl+   PC-Pine 3.91        clnt yes  ftp.cac.washington.edu 10/14/94
  896. IMAP4  ?          imap-4              srvr yes  ftp.cac.washington.edu 10/25/96
  897. POP3u  ?          imap-4              srvr na   ftp.cac.washington.edu 10/25/96
  898. POP3u  ?          imap-4.1 ALPHA      srvr na   ftp.cac.washington.edu 10/25/96
  899. IMAP4  ?          imap-4.1 ALPHA      srvr yes  ftp.cac.washington.edu 10/25/96
  900. IMAP?  Unix       MS                  clnt no   ftp.cac.washington.edu 11/7/93
  901. POP3   NeXT       EasyMail            clnt yes  ftp.cac.washington.edu 11/7/93
  902. IMAP2  NeXT       MailManager         srvr yes  ftp.cac.washington.edu 11/7/93
  903. POP2   Unix       imapd/ipop2d 3.4    srvr na   ftp.cac.washington.edu 12/13/94
  904. POP3   Unix       imapd/ipop3d 3.4    srvr na   ftp.cac.washington.edu 12/13/94
  905. IMAP2b Unix       imapd 3.4/UW        srvr ?    ftp.cac.washington.edu 12/13/94
  906. POP23  Unix       imap kit            srvr na   ftp.cac.washington.edu 2/1/94
  907. IMAP2  Unix       imap kit            srvr na   ftp.cac.washington.edu 2/1/94
  908. POP23  Unix       IPOP                srvr na   ftp.cac.washington.edu 2/23/96
  909. IMAP2b Unix       imapd 3.6.BETA      srvr ?    ftp.cac.washington.edu 4/25/95
  910. IMAP2b Unix       imapd 3.5/UW        srvr ?    ftp.cac.washington.edu 4/25/95
  911. IMAP4  Unix       imap4 kit (alpha)   srvr na   ftp.cac.washington.edu 5/31/95
  912. IMAP24 Unix       Pine 4.0 (future)   clnt yes  ftp.cac.washington.edu 7/30/96
  913. IMAP2b Unix       Pine 3.95           clnt yes  ftp.cac.washington.edu 7/30/96
  914. IMAP24 Unix       Pine 3.90           clnt yes  ftp.cac.washington.edu 9/23/94
  915. IMAP24 MS-DOSl+   PC-Pine 3.90        clnt yes  ftp.cac.washington.edu 9/23/94
  916. POP3   MacOS      MacPOP (Berkeley)   clnt ?    ftp.cc.berkeley.edu
  917. POP3   Unix       popper-1.831        srvr na   ftp.cc.berkeley.edu 4/11/97
  918. POP?   Unix       popmail             clnt ?    ftp.cic.net 2/9/96
  919. POP3   MS-WINp    wnqvtnet 3.0        clnt ?    ftp.cica.indiana.edu
  920. POP3   MS-WINp    wnqvtnet 3.9        clnt ?    ftp.cica.indiana.edu 2/1/94
  921. POP    NeXT OS    BlitzMail           srvr na   ftp.dartmouth.edu 10/23/95
  922. POP    AIX        BlitzMail (in dev)  srvr na   ftp.dartmouth.edu 10/23/95
  923. POP    DEC OSF/1  BlitzMail           srvr na   ftp.dartmouth.edu 10/23/95
  924. POP3   ?          PopGate             gway na   ftp.esi sys.com 1/19/96
  925. POP23k Unix       mh-6.8 (UCI RandMH) both yes  ftp.ics.uci.edu 8/30/94
  926. POP23krUnix       mh-6.8.3 (UCI RndMH)both yes  ftp.ics.uci.edu 9/27/94
  927. POP?   Unix       popc                clnt ?    ftp.imag.fr 2/9/96
  928. POP3   VMS        IUPOP3 v1.8-1       srvr na   ftp.indiana.edu 7/25/94
  929. POP3   VMS        IUPOP3 v1.7-CMU-TEK srvr na   ftp.indiana.edu 7/25/94
  930. POP3   VMS        IUPOP3 v1.7         srvr na   ftp.indiana.edu 7/25/94
  931. POP3   MS-DOS     POP3 0.9            clnt na   ftp.indiana.edu 7/25/94
  932. POP?   Unix       gwpop               clnt ?    ftp.pasteur.fr 2/9/96
  933. POP23  MS-WINw    Trumpet             clnt no   ftp.psychol.utas.edu.au 7/7/94
  934. POP3u  Unix       qpopper 2.1.4-r3    srvr na   ftp.qualcomm.com 4/11/97
  935. POP3u  Unix       qpopper 2.1.3-r5    srvr na   ftp.qualcomm.com 4/11/97
  936. POP3u  Unix       qpopper 2.2         srvr na   ftp.qualcomm.com 4/11/97
  937. POP3   Unix       popperQC3           srvr na   ftp.qualcomm.com 4/11/97
  938. POP3u  Unix       qpopper 2.1.4-r1    srvr na   ftp.qualcomm.com 4/11/97
  939. POP3   MS-WINw    Eudora 1.4.4        clnt yes  ftp.qualcomm.com 6/23/95
  940. POP3   Macintosh6 Eudora 1.3.1        clnt no   ftp.qualcomm.com 7/14/94
  941. POP3   Unix       popper.rs2          srvr na   ftp.qualcomm.com 8/4/95
  942. POP3   MS-WINw    Eudora 1.5.2b1      clnt yes  ftp.qualcomm.com 8/4/95
  943. POP3r  MacOS      MailShare 1.0fc6    srvr na   ftp.qualcomm.com 8/4/95
  944. POP3   Mac7/PM7   Eudora 1.5.3        clnt yes  ftp.qualcomm.com 8/4/95
  945. POP3   MS-WIN     Pceudora            clnt ?    ftp.qualcomm.com 9/24/93
  946. POP?   MS-WIN     RFD Mail 1.22       clnt ?    ftp.std.com 7/19/94
  947. POP?   MS-WIN     RFD Mail 1.23       clnt ?    ftp.std.com 9/16/94
  948. POP3   Unix       UMT (beta)          clnt ?    ftp.topaz.kiev.ua 12/29/95 (www
  949. .topaz.kiev.ua)
  950. POP?   MS-DOS     UCDmail             clnt ?    ftp.ucdavis.edu 10/24/94
  951. POP2   Unix       pop2d 1.001         srvr na   ftp.ucdavis.edu 12/3/93
  952. POP3   Unix       pop3d 1.004         srvr na   ftp.ucdavis.edu 12/3/93
  953. POP?   Unix/XO    SXMail 0.9.74a (b)  clnt ?    ftp.uni-stuttgart.de 10/12/95
  954. POP23  Unix/EMACS vm                  clnt no   ftp.uu.net 8/2/95
  955. IMAP?  Windows    Winbox 3.1 Beta 1   clnt ?    ftp.uv.es 12/13/96
  956. POP?   Windows    Winbox 3.1 Beta 1   clnt ?    ftp.uv.es 12/13/96
  957. IMAP   AIX        imap server         srvr ?    ftp.wu-wien.ac.at 4/5/95
  958. POP23k Unix       popmaild            srvr na   ftp.wu-wien.ac.at 4/5/95
  959. POP23k UnixX      xmh                 clnt ?    ftp.x.org 2/15/94
  960. POP3   Unix       perl popper         srvr na   ftp.xensei.com/users/ccrlphr 9/
  961. 1/95
  962. POP23  Win95/NT   TeamWARE Embla 2.0+ clnt yes  Fujitsu www.teamware.us.com 7/1
  963. 4/97
  964. IMAP41 Win95/NT   TeamWARE Embla 2.0+ clnt yes  Fujitsu www.teamware.us.com 7/1
  965. 4/97
  966. POP3r  MacOS      MailShare 1.0(beta) srvr na   glenn.anderson@stonebow.otago.a
  967. c.nz 8/16/94
  968. IMAP4  Java?      A Good Mail Srvr(a) srvr ?    goodserver.com www.goodserver.c
  969. om 9/5/97
  970. POP3   Java?      A Good Mail Srvr(a) srvr ?    goodserver.com www.goodserver.c
  971. om 9/5/97
  972. POP?   Unix       movemail            clnt ?    GNU 2/9/96
  973. POP3a  Unix       Ishmail             clnt yes  H&L Software 7/14/97
  974. IMAP4  Unix       Ishmail             clnt yes  H&L Software 7/14/97
  975. POP?   OS/2       popsrv99.zip        srvr ?    hobbes.nmsu.edu 2/15/96
  976. POP3   OS/2       POP3D 14B           srvr yes  hobbes.nmsu.edu 4/5/96
  977. POP3   OS/2       POP3D 12            srvr yes  hobbes.nmsu.edu 6/2/95
  978. POP3   OS/2       PMMail 11           clnt yes  hobbes.nmsu.edu 6/2/95
  979. POP3   OS/2       POP3D 14A           srvr yes  hobbes.nmsu.edu 9/12/95
  980. IMAP   DOSWINMac  OpenMail (future)   clnt ?    HP 3/29/96 http://www.openmail.
  981. external.hp.com
  982. POP3   DOSWINMac  OpenMail (future)   clnt ?    HP 3/29/96 http://www.openmail.
  983. external.hp.com
  984. POP3   DSWNMcUnx  OpenMail 4.10       clnt yes  HP www.eco.hp.com 3/13/97
  985. ?POP3  NT         NT MAIL             ?    ?    http://bhs.com 1/26/96
  986. POP3   ?          WIG v2.0            gway ?    http://www.demon.co.uk/ 4/19/96
  987. POP3   MS-WIN     Mi'Mail             clnt yes  http://www.irisoft.be 6/30/95
  988. POP3   ?          Mailcoach V1.0      srvr na   http://www.multi.se/ymex/mailco
  989. ach.htm 6/14/96
  990. POP3r  NT         SLmailNT            srvr na   http://www.seattlelab.com/ 3/29
  991. /96
  992. POP3r  WIN95      SLmail95            srvr na   http://www.seattlelab.com/ 5/14
  993. /96
  994. POP3u  NT         Exchpop(?) 1.0      gway yes  http://www.sts.co.il/pop3.htm 6
  995. /14/96
  996. POP2   VM         FAL                 srvr na   IBM
  997. POP2   MS-WIN     IBM TCP/IP for DOS  clnt no   IBM 7/7/94
  998. IMAP?  MS-WIN     EMBLA               ?    ?    ICL ProSystems 9/20/94
  999. IMAP4  ?          Intrnt Msging Srvr  srvr ?    ICL TeamWare 9/8/1
  1000. POP3   ?          Intrnt Msging Srvr  srvr ?    ICL TeamWare 9/8/1
  1001. POP3   NetWare4   Connect2SMTP        srvr ?    Infinite Technologies 3/29/96
  1002. POP3   DOS        C2SMTP              srvr na   Infinite Technologies 6/11/96
  1003. POP3   WIN95/NT   ExpressIT! 2000     clnt ?    Infinite Technologies www.ihub.
  1004. com 1/14/97
  1005. IMAP   WIN95/NT   ExpressIT! 2000     clnt ?    Infinite Technologies www.ihub.
  1006. com 1/14/97
  1007. IMAP?  NT         InterChange         srvr ?    Infinite Technologies www.ihub.
  1008. com 4/4/97
  1009. POP3   Unix       PMDF E-mail Interc  srvr ?    Innosoft 3/13/97 www.innosoft.c
  1010. om
  1011. IMAP4  Unix       PMDF E-mail Interc  srvr ?    Innosoft 3/13/97 www.innosoft.c
  1012. om
  1013. IMAP?  MacOS      PMDF E-mail Interc  clnt ?    Innosoft 3/2/94 www.innosoft.co
  1014. m
  1015. IMAP?  MS-DOS     PMDF E-mail Interc  clnt ?    Innosoft 3/2/94 www.innosoft.co
  1016. m
  1017. IMAP?  VMS        Pine in PMDF 4.3    clnt ?    Innosoft 4/1/94
  1018. IMAP?  VMS        PMDF E-mail Interc  ?    ?    Innosoft 6/24/96 www.innosoft.c
  1019. om
  1020. POP?   VMS        PMDF E-mail Interc  ?    ?    Innosoft 6/24/96 www.innosoft.c
  1021. om
  1022. IMAP?  OpenVMS    PMDF 5.1            srvr ?    Innosoft 9/24/96 www.innosoft.c
  1023. om
  1024. POP3r  VMS        PMDF popstore       clnt ?    Innosoft 9/24/96 www.innosoft.c
  1025. om
  1026. POP3   OpenVMS    PMDF 5.1            srvr na   Innosoft 9/24/96 www.innosoft.c
  1027. om
  1028. POP3   VMS        PMDF 5.1            srvr na   Innosoft 9/24/96 www.innosoft.c
  1029. om
  1030. IMAP?  Solaris    PMDF 5.1            srvr ?    Innosoft 9/24/96 www.innosoft.c
  1031. om
  1032. POP3   DigUNIX    PMDF 5.1            srvr na   Innosoft 9/24/96 www.innosoft.c
  1033. om
  1034. IMAP?  DigUNIX    PMDF 5.1            srvr ?    Innosoft 9/24/96 www.innosoft.c
  1035. om
  1036. IMAP?  VMS        PMDF 5.1            srvr ?    Innosoft 9/24/96 www.innosoft.c
  1037. om
  1038. POP3   Solaris    PMDF 5.1            srvr na   Innosoft 9/24/96 www.innosoft.c
  1039. om
  1040. POP3   MacOS      TCP/Connect II      clnt ?    InterCon Systems Corp
  1041. POP3   MS-WIN     TCP/Connect II f W  clnt yes  InterCon Systems Corp 7/8/94
  1042. IMAP4  NT         NTMail 3.02         srvr ?    Internet Shopper www.ntmail.co.
  1043. uk 7/2/97
  1044. POP3   NT         NTMail 3.02         srvr ?    Internet Shopper www.ntmail.co.
  1045. uk 7/2/97
  1046. POP3   MS-WIN?    IMAIL               both ?    Ipswitch 7/12/94
  1047. POP3   MS-WINw    IMail               srvr na   Ipswitch 7/15/94
  1048. POP3   MS-WINw    IMAIL               srvr na   Ipswitch 9/16/94
  1049. POP3   NT         IMail Srvr f NT 3.0 srvr na   Ipswitch www.ipswitch.com 3/13/
  1050. 97
  1051. IMAP4  NT         IMail Server 4.0    srvr ?    Ipswitch www.ipswitch.com 5/7/9
  1052. 7
  1053. POP3   NT         IMail Server 4.0    srvr ?    Ipswitch www.ipswitch.com 7/2/9
  1054. 7
  1055. POP3   NT         N-Plex SMTP         srvr ?    ISOCOR www.isocor.com 9/26/97
  1056. IMAP41 NT         N-Plex SMTP         srvr ?    ISOCOR www.isocor.com 9/26/97
  1057. POP3   MacOS      MacMH               clnt ?    jessica.stanford.edu/info
  1058. POP3   OS/2       ? (in testing)      srvr no   kf5mg@computek.net 11/28/95
  1059. POP3r  Java       shareware Java cls  clnt ?    Koehn Consulting 8/2/96
  1060. IMAP?  MacOS      Mailstrom           clnt ?    lindy.stanford.edu 9/22/95
  1061. POP3   MS-WINs    winelm              clnt ?    lister.cc.ic.ac.uk 1/25/94
  1062. POP3   MS-DOSs    pcelm               clnt ?    lister.cc.ic.ac.uk 1/25/94
  1063. POP?   MS-WINw    Windows ELM         clnt ?    lister.cc.ic.ac.uk 7/12/94
  1064. POP3   ?          Lotus Notes 4.5 srv srvr ?    Lotus 10/17/97
  1065. POP3   WIN3/95/NT Lotus Nts ml cl 4.0 clnt yes  Lotus www.lotus.com 3/13/97
  1066. POP3   Unix       Lotus Nts ml cl 4.0 clnt yes  Lotus www.lotus.com 3/13/97
  1067. POP3   OS/2       Lotus Nts ml cl 4.0 clnt yes  Lotus www.lotus.com 3/13/97
  1068. POP3   MacOS      Lotus Nts ml cl 4.0 clnt yes  Lotus www.lotus.com 3/13/97
  1069. POP3   ?          cc:Mail 8.0         srvr ?    Lotus www.lotus.com 5/13/97
  1070. IMAP4  ?          cc:Mail 8.0         srvr ?    Lotus www.lotus.com 5/13/97
  1071. POP3   ?          cc:Mail 8.0         clnt ?    Lotus www.lotus.com 5/28/97
  1072. IMAP4  ?          cc:Mail 8.0         clnt ?    Lotus www.lotus.com 5/28/97
  1073. POP23  Unix       servers w Mail-IT   srvr na   mail-it@unipalm.co.uk 12/16/94
  1074. POP23  MS-WINw    Mail-IT 2           clnt yes  mail-it@unipalm.co.uk 7/12/94
  1075. POP23  Unix       Mail-IT 2           clnt yes  mail-it@unipalm.co.uk 9/9/94
  1076. POP3   MUSIC/SP   POPD 1.0            srvr na   McGill Univ. Sys. Inc. 01/11/95
  1077. POP3   NT         Sendmail w POP3 1.1 srvr na   MetaInfo www.metainfo.com 3/13/
  1078. 97
  1079. POP3   WIN95/NT   Calypso             clnt yes  Micro Computer www.mcsdallas.co
  1080. m 3/13/97
  1081. IMAP4  WIN95/NT   Calypso             clnt yes  Micro Computer www.mcsdallas.co
  1082. m 3/13/97
  1083. POP3   MS-?       Exchange Server 5.0 srvr ?    Microsoft 1/14/97
  1084. POP?   MS-?       Exchange            clnt ?    Microsoft 10/24/95
  1085. IMAP4  MS-?       Exch Server (maybe) srvr ?    Microsoft 6/21/96
  1086. POP3   MS-?       Inter. Mail Service gway ?    Microsoft 6/4/96 (www.microsoft
  1087. .com)
  1088. POP3   MS-?       Inter. Mail & News  clnt yes  Microsoft 6/4/96 (www.microsoft
  1089. .com)
  1090. POP3   MS-?       Exchange Server (f) srvr yes  Microsoft 9/11/96
  1091. IMAP4  ?          Internet Expl 4.0   clnt ?    Microsoft www.microsoft.com 3/1
  1092. 8/97
  1093. POP3   ?          Internet Expl 4.0   clnt ?    Microsoft www.microsoft.com 5/2
  1094. 1/97
  1095. POP3   Win95/NT   Outlook Express     clnt yes  Microsoft www.microsoft.com 7/1
  1096. 4/97
  1097. IMAP4  Win95/NT   Outlook Express     clnt yes  Microsoft www.microsoft.com 9/5
  1098. /97
  1099. POP3   Win95/NT   Outlook 97          clnt yes  Microsoft www.microsoft.com 7/1
  1100. 4/97
  1101. POP?   NT         MailSrv from Res K. srvr na   Microsoft?
  1102. POP23  MS-DOSp    Minuet 1.0b18a(beta)clnt no   minuet.micro.umn.edu 9/1/95
  1103. IMAP?  MacOS      Mulberry (beta)     clnt no   mulberry@dial.pipex.com 7/30/96
  1104. POP?   Unix       zpop                srvr na   NCD 9/1/95
  1105. POP?   Unix       zync ?              clnt ?    NCD 9/23/94 (www.ncd.com)
  1106. POP3k  MacOS      TechMail 2.0        clnt ?    net-dist.mit.edu
  1107. POP3   MS-WINl    TechMail for Wind.  clnt ?    net-dist.mit.edu 2/25/94
  1108. POP3   OS/2l      TechMail for Wind.  clnt ?    net-dist.mit.edu 2/25/94
  1109. POP3   Java       DartMail            clnt yes  NetAccent www.netaccent.com 2/1
  1110. 4/97
  1111. IMAP4  Java       DartMail            clnt yes  NetAccent www.netaccent.com 2/1
  1112. 4/97
  1113. IMAP4  Win3/95/NT DART Mail 1.0       clnt yes  NetAccent www.netaccent.com 7/1
  1114. 4/97
  1115. IMAP4  OS/2       DART Mail 1.0       clnt yes  NetAccent www.netaccent.com 7/1
  1116. 4/97
  1117. POP3   Win3/95/NT DART Mail 1.0       clnt yes  NetAccent www.netaccent.com 7/1
  1118. 4/97
  1119. POP3   OS/2       DART Mail 1.0       clnt yes  NetAccent www.netaccent.com 7/1
  1120. 4/97
  1121. POP3   Unix       DART Mail 1.0       clnt yes  NetAccent www.netaccent.com 7/1
  1122. 4/97
  1123. IMAP4  MacOS      DART Mail 1.0       clnt yes  NetAccent www.netaccent.com 7/1
  1124. 4/97
  1125. IMAP4  Unix       DART Mail 1.0       clnt yes  NetAccent www.netaccent.com 7/1
  1126. 4/97
  1127. POP3   MacOS      DART Mail 1.0       clnt yes  NetAccent www.netaccent.com 7/1
  1128. 4/97
  1129. POP23  MS-DOSni   Chameleon beta      clnt yes  NetManage
  1130. POP23  NT         Chameleon V5.0 f NT both ?    NetManage 11/28/95
  1131. IMAP?  Windows?   Chameleon (future)  clnt ?    NetManage 3/19/96
  1132. POP23  MS-WINw    Internet Chameleon  clnt yes  NetManage 7/12/94
  1133. POP3   WIN3/NT/95 JetMail             clnt yes  NetManage 7/29/96
  1134. IMAP4  WIN3/NT/95 JetMail             clnt yes  NetManage 7/29/96
  1135. POP3   NT         Post.Office         srvr na   NetManage 8/22/96 www.netmanage
  1136. .com
  1137. POP3   Solaris    Post.Office         srvr na   NetManage 8/22/96 www.netmanage
  1138. .com
  1139. POP3   Unix       Z-Pop 1.0           srvr na   NetManage 8/22/96 www.netmanage
  1140. .com
  1141. POP3   SunOS      Post.Office         srvr na   NetManage 8/22/96 www.netmanage
  1142. .com
  1143. POP3   WIN3/95/NT Z-Mail 4.0.1        clnt yes  NetManage 8/23/96 www.netmanage
  1144. .com
  1145. POP3   Unix/line  Z-Mail Lite 3.2     clnt yes  NetManage 8/23/96 www.netmanage
  1146. .com
  1147. POP3   Unix/curs  Z-Mail Lite 3.2     clnt yes  NetManage 8/23/96 www.netmanage
  1148. .com
  1149. POP3   Unix/XM    Z-Mail Motif 3.2.1  clnt yes  NetManage 8/23/96 www.netmanage
  1150. .com
  1151. POP23  MS-DOSni   ChameleonNFS        both ?    NetManage 8/4/94
  1152. IMAP4  Unix       post.office         srvr yes  NetManage www.netmanage.com 3/1
  1153. 3/97
  1154. POP3   Unix       post.office         srvr na   NetManage www.netmanage.com 3/1
  1155. 3/97
  1156. IMAP4  WIN3/95/NT Z-Mail Pro 6.1      clnt yes  NetManage www.netmanage.com 4/1
  1157. 1/97
  1158. POP3   WIN3/95/NT Z-Mail Pro 6.1      clnt yes  NetManage www.netmanage.com 4/1
  1159. 1/97
  1160. POP3   MacOS      Z-Mail Mac 3.3.1    clnt yes  NetManage www.netmanage.com 7/1
  1161. 4/97
  1162. POP3   Unix       Z-Mail Unix 4.0     clnt yes  NetManage www.netmanage.com 7/1
  1163. 4/97
  1164. POP3   NT         Netscape Mail Srvr  srvr na   Netscape 12/18/95 (info@netscap
  1165. e.com)
  1166. POP3   Solaris    Netscape Mail Srvr  srvr na   Netscape 12/18/95 (info@netscap
  1167. e.com)
  1168. POP3   SunOS      Netscape Mail Srvr  srvr na   Netscape 12/18/95 (info@netscap
  1169. e.com)
  1170. IMAP4  ?          SuiteSpot M S       srvr ?    Netscape www.netscape.com 2/20/
  1171. 97
  1172. IMAP4  NT         Netscape M S 2.0(f) srvr ?    Netscape www.netscape.com 6/21/
  1173. 96
  1174. POP?   Solaris    Navigator 3.0b4(fut)clnt ?    Netscape www.netscape.com 6/25/
  1175. 96
  1176. POP3u  Win3/95/NT Navigator 2.x       clnt yes  Netscape www.netscape.com 7/29/
  1177. 96
  1178. IMAP4  NT         Netscape M S 2.02   srvr ?    Netscape www.netscape.com 4/4/9
  1179. 7
  1180. IMAP4  OS/2       Communicator PR 2   clnt yes  Netscape www.netscape.com 7/1/9
  1181. 7
  1182. IMAP4  MacOS      Communicator PR 2   clnt yes  Netscape www.netscape.com 7/1/9
  1183. 7
  1184. POP3   MacOS      Communicator PR 2   clnt yes  Netscape www.netscape.com 7/1/9
  1185. 7
  1186. POP3   Unix       Communicator PR 2   clnt yes  Netscape www.netscape.com 7/1/9
  1187. 7
  1188. IMAP4  Unix       Communicator PR 2   clnt yes  Netscape www.netscape.com 7/1/9
  1189. 7
  1190. POP3   WIN95/NT   Communicator PR 2   clnt yes  Netscape www.netscape.com 7/1/9
  1191. 7
  1192. POP3   OS/2       Communicator PR 2   clnt yes  Netscape www.netscape.com 7/1/9
  1193. 7
  1194. IMAP4  WIN95/NT   Communicator PR 2   clnt yes  Netscape www.netscape.com 7/1/9
  1195. 7
  1196. POP3   NetWare 4  LAN WorkGroup 5     ???? na   Novell www.novell.com 1/1/96
  1197. POP3   Java       Novita Mail         clnt ?    Novita Comm 12/10/96
  1198. IMAP?  Java       Novita Mail         clnt ?    Novita Comm 12/10/96
  1199. POP3   DOSWINMac  DaVinci SMTP eMAIL  clnt yes  On Technology 4/24/96
  1200. POP3   WIN95/NT   InterOffice 4.1     clnt no   Oracle www.oracle.com 7/14/97
  1201. IMAP4  WIN95/NT   InterOffice 4.1     clnt no   Oracle www.oracle.com 7/14/97
  1202. IMAP?  Windows?   pcMail (future)     clnt ?    OzMail 3/19/96
  1203. POP3   MS-WIN     Open Systems Mail   clnt ?    Pine Software
  1204. POP?   MS-WINls   TCPMail             clnt ?    Pinesoft (pinesoft@net.com)
  1205. POP3   OpenVMS    TCPware Internet Sr srvr na   Process Software 12/20/95 (info
  1206. @process.com)
  1207. POP3   NetWare34  SoftNet WEBserv     srvr na   Puzzle Systems 12/15/95 (info@p
  1208. uzzle.com)
  1209. POP3x  MS-WIN     WinQVT (2.1)        clnt ?    QPC Software (shareware) 7/12/9
  1210. 4
  1211. POP3r  Unix       Vers of qpopper     srvr na   QualComm 1/26/96
  1212. POP3   WIN32      Eudora Pro 2.2b8    clnt yes  Qualcomm www.qualcomm.com 12/5/
  1213. 95
  1214. POP3   Mac        Eudora Light 3.1    clnt ?    Qualcomm www.qualcomm.com 4/11/
  1215. 97
  1216. POP3   Mac        Eudora Pro 3.1      clnt yes  Qualcomm www.qualcomm.com 4/11/
  1217. 97
  1218. IMAP4  ?          Eudora Worldmail    srvr ?    Qualcomm www.qualcomm.com 4/4/9
  1219. 7
  1220. POP3   ?          Eudora Worldmail    srvr ?    Qualcomm www.qualcomm.com 4/4/9
  1221. 7
  1222. POP3mr Macintosh7 Eudora 2.0.2        clnt yes  Qualcomm www.qualcomm.com 5/10/
  1223. 94
  1224. POP3u  Unix       qpopper 2.1.4-r4    srvr na   QualComm 5/16/95
  1225. POP3   WIN3/95/NT Eudora Pro ?        clnt yes  Qualcomm www.qualcomm.com 7/29/
  1226. 96
  1227. POP3   Mac        Eudora Pro 3.0      clnt yes  Qualcomm www.qualcomm.com 8/14/
  1228. 96
  1229. POP3mrkMac7/PM7   Eudora 2.1.1        clnt yes  Qualcomm www.qualcomm.com 8/4/9
  1230. 5
  1231. POP3   MS-WINw    Eudora 2.1.1        clnt yes  Qualcomm www.qualcomm.com 8/4/9
  1232. 5
  1233. POP3mrkMac7/PM7   Eudora 2.1.3        clnt yes  Qualcomm www.qualcomm.com 8/4/9
  1234. 5
  1235. POP3mrkMac7/PM7   Eudora 2.1.2        clnt yes  Qualcomm www.qualcomm.com 8/4/9
  1236. 5
  1237. POP3mr Mac7/PM7   Eudora 2.0.3        clnt yes  Qualcomm www.qualcomm.com 9/13/
  1238. 94
  1239. POP3mrkMac7/PM7   Eudora 2.1          clnt yes  Qualcomm www.qualcomm.com 9/13/
  1240. 94
  1241. POP3   MS-WINw    Eudora 2.0.3        clnt yes  Qualcomm www.qualcomm.com 9/13/
  1242. 94
  1243. IMAPb4 Unix       popclient x.x (rep) clnt no   Renamed 'fetchmail' 10/7/96
  1244. POP23r Unix       popclient x.x (rep) clnt no   Renamed 'fetchmail' 10/7/96
  1245. POP3   MS-DOS     Pegasus/DOS 3.22    clnt ?    risc.ua.edu 3/6/97
  1246. POP3t  NetWare34  Mercury 1.3.1       srvr na   risc.ua.edu 3/6/97
  1247. POP3   MS-Windows Pegasus/Win 2.2(r3) clnt ?    risc.ua.edu 3/6/97
  1248. POP3   MS-W32     Pegasus/W32 2.5(r2) clnt yes  risc.ua.edu 3/6/97
  1249. POP3t  WIN32      Mercury32 099(b)    srvr na   risc.ua.edu 3/6/97
  1250. POP3   MacOS      Pegasus/MAC 2.1.2   clnt no   risc.ua.edu 3/6/97
  1251. POP3   MS-DOS     Pegasus/DOS 3.11    clnt ?    risc.ua.edu 3/6/97
  1252. POP3   MS-Windows Pegasus/Win 2.5(r3) clnt yes  risc.ua.edu 3/6/97
  1253. POP3   MS-DOS     Pegasus/DOS 3.31    clnt ?    risc.ua.edu 3/6/97
  1254. POP3   MS-DOS     Pegasus/DOS 3.40    clnt yes  risc.ua.edu 3/6/97
  1255. POP3t  NetWare34  Mercury 1.3.0       srvr na   risc.ua.edu 3/6/97
  1256. POP3   MS-DOSl    PMPOP (Pmail gw)    clnt ?    risc.ua.edu 4/1/94
  1257. POP3   MS-DOSp    POPgate (Pmail gw)  clnt ?    risc.ua.edu 4/1/94
  1258. POP?   Unix       ucbmail clone       clnt ?    rtfm.mit.edu 12/16/94
  1259. POP3   MS-WIN     WinSmtp             srvr na   Seattle Labs, http://wildside.k
  1260. wnet.on.ca/winsmtp.html 11/3/95
  1261. POP3   OS/2       ? (future)          srvr na   Secant 1/23/96
  1262. ?      Unix       Siren Mail          srvr ?    Siren Software 12/28/95
  1263. IMAP2  NTclient   Siren Mail          clnt yes  Siren Software 12/28/95
  1264. POP3   NTclient   Siren Mail          clnt yes  Siren Software 12/28/95
  1265. IMAP2  WIN95      Siren Mail          clnt yes  Siren Software 12/28/95
  1266. IMAP2  MS-WIN     Siren Mail          clnt yes  Siren Software 12/28/95
  1267. POP3   WIN95      Siren Mail          clnt yes  Siren Software 12/28/95
  1268. POP3   MS-WIN     Siren Mail          clnt yes  Siren Software 12/28/95
  1269. IMAP?  Windows?   Siren Mail 3.0      clnt yes  Siren Software 3/19/96
  1270. POP3   ?          Siren Mail Server   srvr ?    Siren Software 8/1/96
  1271. IMAP2  ?          Siren Mail Server   srvr ?    Siren Software 8/1/96
  1272. IMAP4  WIN3/95/NT Siren Mail 3.1      clnt yes  Siren Software www.siren.com 3/
  1273. 13/97
  1274. POP3   WIN3/95/NT Siren Mail 3.1      clnt yes  Siren Software www.siren.com 3/
  1275. 13/97
  1276. POP3   MacOS      Siren Mail 3.1      clnt yes  Siren Software www.siren.com 3/
  1277. 13/97
  1278. IMAP4  MacOS      Siren Mail 3.1      clnt yes  Siren Software www.siren.com 3/
  1279. 13/97
  1280. POP3   ?          FC '97 (future)     srvr yes  SOFTARC www.softarc.com 4/11/97
  1281. IMAP4  ?          FC '97 (future)     srvr yes  SOFTARC www.softarc.com 4/11/97
  1282. POP3   NT         Post.Office 2.0     srvr na   Software.com, Inc. www.software
  1283. .com 3/13/97
  1284. POP3   Solaris    Post.Office 2.0     srvr na   Software.com, Inc. www.software
  1285. .com 3/13/97
  1286. POP3   NT         Post.Office 3.1     srvr na   Software.com, Inc. www.software
  1287. .com 7/2/97
  1288. POP3   MS-WIN     Air Series 2.06     clnt no   Spry 7/7/94
  1289. POP3   MacOS      POPGate 1.1         gway ?    Stalker www.stalker.com 3/25/96
  1290. IMAP41 MacOS      CommuniGate IMAP    gway ?    Stalker www.stalker.com 7/29/97
  1291. IMAP24 Unix/XM    ML 2.0 (future)     clnt yes  Stanford 7/13/95
  1292. IMAP?  Xrx Lsp Mc Yes-Way             clnt yes  Stanford U 11/7/93
  1293. POP3   OS/2       SIDIS/2             srvr na   stargate.rz.fh-offenburg.de 6/4
  1294. /96
  1295. POP3   MacOS      Quarterdeck Mail    srvr yes  StarNine www.starnine.com 5/7/9
  1296. 7
  1297. POP3   MacOS      Mail*Link UUCP      gway yes  StarNine www.starnine.com 5/7/9
  1298. 7
  1299. POP3   MacOS      Mail*Link SMTP      clnt yes  StarNine www.starnine.com 5/7/9
  1300. 7
  1301. POP3   MacOS      ListSTAR            both yes  StarNine www.starnine.com 5/7/9
  1302. 7
  1303. IMAP24 MacOS      Mailstrom 1.04      clnt no   sumex-aim.stanford.edu* 11/7/93
  1304. IMAP1  MacOS      MacMS 2.2.1 (obs)   clnt no   sumex-aim.stanford.edu* 7/13/95
  1305. IMAP?  Windows?   Roam (Future)       clnt ?    Sun 3/19/96
  1306. IMAP4  SolarisX   imapd (Future)      clnt ?    Sun 9/26/95
  1307. IMAP4  SolarisX   Roam (Future)       clnt ?    Sun 9/26/95
  1308. POP23  MS-DOS     SelectMail 2.1      clnt ?    SunSelect 1/25/94
  1309. POP2   MS-DOS     LifeLine Mail 2.0   clnt ?    SunSelect 12/7/93
  1310. POP3   Linux      miniclient          clnt ?    sunsite.unc.edu 8/30/94
  1311. POP?   Unix       pop-perl-1.0        clnt ?    sunsite.unc.edu 9/13/94
  1312. IMAP4  Win95      SOlstice 2.0        clnt ?    SunSoft 1/31/97
  1313. IMAP4  Solaris    Solstice IMS2.0 (f) srvr yes  SunSoft 10/17/96 http://www.sun
  1314. .com
  1315. POP3   Solaris    Solstice IMS1.0     srvr yes  SunSoft 10/17/96 http://www.sun
  1316. .com
  1317. IMAP4  Solaris    Solstice IMS1.0     srvr yes  SunSoft 10/17/96 http://www.sun
  1318. .com
  1319. POP3   Solaris    Solstice IMS2.0 (f) srvr yes  SunSoft 10/17/96 http://www.sun
  1320. .com
  1321. IMAP4  MS-WIN3.11 Solstice IMC? (fut) clnt yes  SunSoft 4/5/96 http://www.sun.c
  1322. om
  1323. IMAP4  NT         Solstice IMC0.9     clnt yes  SunSoft 4/5/96 http://www.sun.c
  1324. om
  1325. IMAP4  MS-WIN95   Solstice IMC0.9     clnt yes  SunSoft 4/5/96 http://www.sun.c
  1326. om
  1327. IMAP4  NT         Solstice IMC? (fut) clnt yes  SunSoft 4/5/96 http://www.sun.c
  1328. om
  1329. IMAP4  MS-WIN3.11 Solstice IMC0.9     clnt yes  SunSoft 4/5/96 http://www.sun.c
  1330. om
  1331. IMAP4  Solaris    Solstice IMC? (fut) clnt yes  SunSoft 4/5/96 http://www.sun.c
  1332. om
  1333. IMAP4  MS-WIN95   Solstice IMC? (fut) clnt yes  SunSoft 4/5/96 http://www.sun.c
  1334. om
  1335. IMAP4  Solaris    Solstice IMC0.9     clnt yes  SunSoft 4/5/96 http://www.sun.c
  1336. om
  1337. POP3   MacOS      VersaTerm Link      clnt ?    Synergy Software 10/8/93
  1338. POP2   VM         ?                   srvr na   Texas Tech University
  1339. POP2   OpenVMS    MultiNet            srvr na   Process Software www.process.co
  1340. m 8/5/97
  1341. POP3   OpenVMS    MultiNet            both na   Process Software www.process.co
  1342. m 8/5/97
  1343. IMAP2  MS-WIN     PathWay             clnt no   The Wollongong Group 2/25/94
  1344. IMAP2  MacOS      PathWay             clnt no   The Wollongong Group 2/25/94
  1345. IMAP2  Unix/X     PathWay             clnt no   The Wollongong Group 2/25/94
  1346. POP3   MacOS      PathWay             clnt no   The Wollongong Group 2/25/94
  1347. POP3   MS-WIN     PathWay             clnt no   The Wollongong Group 2/25/94
  1348. POP3   Unix/X     PathWay             clnt no   The Wollongong Group 2/25/94
  1349. POP?   MS-WIN     PathWay Access 3.0  clnt ?    The Wollongong Group 8/4/94
  1350. IMAP24 MacOS      Mailstrom 2(beta)   clnt yes  Tree Star Inc. www.treestar.com
  1351.  12/18/96
  1352. IMAP24 MacOS      Mailstrom 2.02      clnt yes  Tree Star Inc. www.treestar.com
  1353.  7/29/97
  1354. POP?   VM         ?                   srvr na   TTUVM1
  1355. POP23  MS-WINw    Turnpike            clnt yes  Turnpike Ltd, http:www.turnpike
  1356. .com 8/11/95
  1357. POP2   MS-DOS     MD/DOS-IP           clnt ?    U Maryland
  1358. IMAP?  Unix       imapd 8.0(124)      srvr ?    U Wash 1/31/97
  1359. IMAP?  Unix       imapd 9.0(161)      srvr ?    U Wash 1/31/97
  1360. IMAP41 Unix       imapd v10.164       srvr ?    U Wash 2/14/97
  1361. IMAP2b Unix       imapd 7.8(100)      srvr ?    U Wash 2/14/97
  1362. IMAP2b Unix       imapd 4.0/UW (fut)  srvr ?    U Wash 4/25/95
  1363. POP3k  Unix       hacked ucbmail      clnt no   UCSC 6/29/95
  1364. POP3k  Unix       hacked pine         clnt yes  UCSC 6/29/95
  1365. POP2   MS-DOSk    ?                   srvr na   ucsd.edu
  1366. IMAP?  Unix       UMAIL               clnt no   umail@umail.umd.edu 11/7/93
  1367. IMAP?  Unix/X     Palm (in dev)       clnt ?    UMiami 11/7/93
  1368. POP3   VM         vmpop3.200          srvr na   uriacc.uri.edu 1/10/95
  1369. IMAP2  Amiga      Pine 3.8x (in dev)  clnt yes  UWashington 11/7/93
  1370. POP23  NT         Mail Serv f W NT    srvr ?    Vintra www.vintra.com 8/19/97
  1371. IMAP4  NT         Mail Serv f W NT    srvr ?    Vintra www.vintra.com 8/19/97
  1372. POP?   VM         ?POPD               srvr na   vmd.cso.uiuc.edu 2/4/94
  1373. IMAP2  VMS        ImapD port          srvr yes  vms.huji.ac.il 4/12/94
  1374. IMAP2  VMS        Pine 3.88 port      clnt yes  vms.huji.ac.il 4/12/94
  1375. POP3   NIN95/NT   Rumba Mail          clnt yes  Wall Data www.walldata.com 7/14
  1376. /97
  1377. POP3   WIN16/32   Virtual Access      clnt yes  www.ashmount.com 8/9/96
  1378. POP3   Be         BeMail              clnt ?    www.be.com 11/25/96
  1379. POP3s  Unix       fetchmail 4.2.9     clnt no   www.ccil.org/~esr 9/30/97
  1380. IMAP2b Unix       fetchmail 4.2.9     clnt no   www.ccil.org/~esr 9/30/97
  1381. POP3u  Unix       fetchmail 4.2.9     clnt no   www.ccil.org/~esr 9/30/97
  1382. POP23r Unix       fetchmail 4.2.9     clnt no   www.ccil.org/~esr 9/30/97
  1383. POP3k  Unix       fetchmail 4.2.9     clnt no   www.ccil.org/~esr 9/30/97
  1384. IMAP41 Unix       fetchmail 4.2.9     clnt no   www.ccil.org/~esr 9/30/97
  1385. IMAP?  Unix       TkRat               clnt ?    www.dtek.chalmers.se/~maf/ratat
  1386. osk 6/24/96
  1387. POP?   Unix       TkRat               clnt ?    www.dtek.chalmers.se/~maf/ratat
  1388. osk 6/24/96
  1389. POP3   ?          gcMail 081b (beta)  clnt ?    www.greencedars.com 8/9/96
  1390. IMAP?  ?          ELM patches         clnt ?    www.math.fu-berlin.de/~guckes/e
  1391. lm/patches 7/16/96
  1392. POP3   Java Aplt  Yamp                clnt ?    www.mcs.net/~faisal/Yamp/yampix
  1393. .html 5/24/96
  1394. POP?   NT         NTMail              clnt ?    www.mortimer.com 2/9/96
  1395. POP3   NT         NT Mail             gway ?    www.net-shopper.co.uk 5/31/96
  1396. POP3rutOS/2       POP3s v1.01         srvr ?    www.secant.com 5/14/96
  1397. ------ ---------- ------------------- ---- ---- -------------------------------
  1398.  
  1399.    
  1400.      _________________________________________________________________
  1401.    
  1402. Some other packages for desktop systems
  1403.  
  1404.  
  1405. ------ ---------- ------------------- ---- ---- -------------------------------
  1406. uucp   MS-DOS     waffle              peer ?    ? dell@vox.darkside.com 10/24/9
  1407. 4
  1408. uucp   MS-DOS     UUPC                peer ?    ? help@kew.com 10/24/94
  1409. MAPI   MS-WIN     Air Mail            ?    ?    AIR Co. Ltd 10/7/94
  1410. ?      MacOS      PowerMail           clnt ?    Apple 2/18/94
  1411. MHS/G  DOSWIN     BeyondMail          clnt yes  Banyan (beyondmail.banyan.com)
  1412. 2/6/96
  1413. SMTP   MS-WINw    ws_gmail            peer ?    buckshot.usma.edu 5/26/94
  1414. ?      DOS        QuickMail 3.0       clnt ?    CE Software 6/6/96
  1415. ?      MacOS      QuickMail 4.0 (fut) clnt ?    CE Software 6/6/96
  1416. ?      MacOS      QuickMail 3.6       clnt ?    CE Software 6/6/96
  1417. ?      MS-WIN     QuickMail 3.5       clnt ?    CE Software 6/6/96
  1418. ?      ?          QuickMail ?         clnt yes  CE Software 7/15/96
  1419. SMTP   MacOS      LeeMail 2.0.2 (shw) peer ?    chs.cusd.claremont.edu 10/12/93
  1420. ?      MS-DOSs    CMM                 peer ?    Cinetic Systems 1/25/94
  1421. PSS    MS-DOS     pMail 3.0           clnt no   CommTouch 9/27/94
  1422. PSS    MS-Win     pMail 3.0           clnt no   CommTouch 9/27/94
  1423. ?      DOSMac     MailWorks           clnt ?    DEC 3/2/94
  1424. uucp   MacOS      UUPC                peer ?    dplatt@snulbug.mtview.ca.us
  1425. ?      DOSOS/2    Higgins Mail        clnt ?    Enable Software 1/26/95
  1426. MAPI   MS-WIN     SIMEON 4.1          clnt ?    ESYS Corp 222.esys.ca 12/16/96
  1427. MAPI   ?          ECSmail             clnt ?    ESYS Corp www.esys.ca 12/16/96
  1428. VIM    ?          ECSmail             clnt ?    ESYS Corp www.esys.ca 12/16/96
  1429. SMTP   OS/2       PC/TCP v1.3         peer ?    FTP Software 2/18/94
  1430. ?      MS-WINw    Panda               ?    ?    ftp.cica.indiana.edu 7/12/94
  1431. PROP   MacOS      BlitzMail           clnt no   ftp.dartmouth.edu 10/23/95
  1432. PROP   AIX        BlitzMail (in dev)  srvr no   ftp.dartmouth.edu 10/23/95
  1433. PROP   NeXT OS    BlitzMail           srvr no   ftp.dartmouth.edu 10/23/95
  1434. PROP   DEC OSF/1  BlitzMail           srvr no   ftp.dartmouth.edu 10/23/95
  1435. Waffle MS-WIN     Boxer               clnt ?    ftp.halcyon.com 12/3/93
  1436. prop   MacOS      MacPost             both ?    ftp.lu.se 10/19/93
  1437. uucp   MacOS      Eudora >1.3.1       peer yes  ftp.qualcomm.com 5/10/94
  1438. ?      MS-WIN     Team                clnt ?    Futurus 1/26/95
  1439. P7uucp DOSWINMac  OpenMail            clnt ?    HP 3/2/94
  1440. SMTP   MS-WINw    Internt Ex for cc:m gway yes  IMA 1/31/94
  1441. MAPI   WIN95/NT   ExpressIT! 2000     clnt ?    Infinite Technologies www.ihub.
  1442. com 1/14/97
  1443. VIM    WIN95/NT   ExpressIT! 2000     clnt ?    Infinite Technologies www.ihub.
  1444. com 1/14/97
  1445. MHS    WIN95/NT   ExpressIT! 2000     clnt ?    Infinite Technologies www.ihub.
  1446. com 1/14/97
  1447. ?      DOSWIN     ExpressIT!          clnt ?    Infinite Technologies www.ihub.
  1448. com 1/26/95
  1449. uucp   MacOS      gnuucp              peer ?    jim@fpr.com
  1450. ?      MS-?       elm-pc              clnt ?    lister.cc.ic.ac.uk 12/3/93
  1451. VIM    DOSWINMac  cc:mail             clnt ?    Lotus 3/15/94
  1452. ?      DOSWINMac  Lotus Notes         clnt ?    Lotus 3/15/94
  1453. SMTP   MS-WINw    Mail-IT 2           peer yes  mail-it@unipalm.co.uk 7/12/94
  1454. MAPI   MS-WINw    Mail-IT 2           clnt yes  mail-it@unipalm.co.uk 7/12/94
  1455. ?      MacOS      Microsoft Mail      clnt ?    Microsoft 3/15/94
  1456. MAPI   MS-DOS?    Microsoft Mail      clnt ?    Microsoft 3/2/94
  1457. SMTP   MS-DOSni   ChameleonNFS        peer ?    NetManage 2/25/94
  1458. MAPI   WIN3/95/NT Z-Mail 4.0.1        clnt yes  NetManage 8/22/96 www.netmanage
  1459. .com
  1460. ?      ?          GroupWise           cnlt ?    Novell 1/26/95
  1461. ?      MS-DOSs    WinMail 1.1a        peer ?    Obsolete
  1462. MHS/G  DOSWINMac  DaVinci eMAIL       clnt ?    On Technology 4/24/96
  1463. MAPI   WIN3/95/NT Eudora Pro ?        clnt yes  Qualcomm 7/29/96
  1464. SMTP   MS-DOS     Charon              gway ?    risc.ua.edu 10/15/93
  1465. fshare MS-DOS     Pegasus/DOS 3.31    clnt ?    risc.ua.edu 3/6/97
  1466. fshare MacOS      Pegasus/MAC 2.1.2   clnt no   risc.ua.edu 3/6/97
  1467. fshare MS-Windows Pegasus/Win 2.2(r3) clnt ?    risc.ua.edu 3/6/97
  1468. fshare MS-W32     Pegasus/W32 2.5(r2) clnt yes  risc.ua.edu 3/6/97
  1469. fshare MS-DOS     Pegasus/DOS 2.35    clnt ?    risc.ua.edu 3/6/97
  1470. fshare MS-DOS     Pegasus/DOS 3.22    clnt ?    risc.ua.edu 3/6/97
  1471. SMTP   NetWare34  Mercury 1.3.0       gway ?    risc.ua.edu 3/6/97
  1472. fshare MS-DOS     Pegasus/DOS 3.11    clnt ?    risc.ua.edu 3/6/97
  1473. fshare MS-Windows Pegasus/Win 2.5(r3) clnt yes  risc.ua.edu 3/6/97
  1474. fshare MS-DOS     Pegasus/DOS 3.40    clnt yes  risc.ua.edu 3/6/97
  1475. SMTP   NetWare34  Mercury 1.3.1       gway ?    risc.ua.edu 3/6/97
  1476. SMTP   WIN32      Mercury32 099(b)    gway ?    risc.ua.edu 3/6/97
  1477. uucp   MacOS      FernMail            peer ?    Shareware, dplatt@snulbug.mtvie
  1478. w.ca.us
  1479. SMTP   MacOS      LeeMail 1.2.4       peer ?    Shareware, laf@mitre.org
  1480. ?      MS-?       pcelm               clnt ?    simtel 12/3/93
  1481. MAPIs  MS-WIN     Siren Mail          ?    ?    Siren Software 12/28/95
  1482. MAPIs  WIN95      Siren Mail          ?    ?    Siren Software 12/28/95
  1483. MAPIs  NTclient   Siren Mail          ?    ?    Siren Software 12/28/95
  1484. FCP    MacOS      FirstClass 2.5      srvr no   SoftArc 7/12/94
  1485. FCP    MS-WIN     FirstClass 2.5      clnt no   SoftArc 7/12/94
  1486. FCP    MacOS      FirstClass 2.5      clnt no   SoftArc 7/12/94
  1487. MHS    MacOS      FirstClass/MHS      gway no   SoftArc 7/12/94
  1488. UUCP   MacOS      FirstClass/UUCP     gway no   SoftArc 7/12/94
  1489. FCP    MacOS      FirstClass 3.5      clnt no   SOFTARC www.softarc.com 4/11/97
  1490. FCP    DOS        FirstClass 3.5      clnt no   SOFTARC www.softarc.com 4/11/97
  1491. FCP    WIN95/NT   FirstClass 3.5      clnt no   SOFTARC www.softarc.com 4/11/97
  1492. SMPT   MacOS      SMTPGate            gway ?    Stalker www.stalker.com 3/25/96
  1493. UUCP   MacOS      UUCPGate            gway ?    Stalker www.stalker.com 3/25/96
  1494. PROP   MacOS      CommuniGate         both ?    Stalker www.stalker.com 5/21/96
  1495. PROP   MacOS      Quarterdeck Mail    both yes  StarNine www.starnine.com 5/9/9
  1496. 7
  1497. PROP   ?          FreeMail            ?    ?    whttp://www.montana.com/freemai
  1498. l 95/12/8
  1499. ?      DOSWINMac  WordPerfect Office  clnt ?    WordPerfect Corp. 3/15/94
  1500. ------ ---------- ------------------- ---- ---- -------------------------------
  1501.  
  1502.    
  1503.      _________________________________________________________________
  1504.    
  1505. Key and Other Issues
  1506.  
  1507.  
  1508. (a) What are the common extensions to POP3 and which clients/servers
  1509.  support them?
  1510. POP3k - Kerberos
  1511. POP3a - AFS Kerberos
  1512. POP3x - ?
  1513. POP3t - xtnd xmit facility--allows client to send mail through additional
  1514.  POP commands, thus allowing server to verify/log source of mail.
  1515. POP3r - APOP
  1516. POP3s - RPOP
  1517. POP3m - ?
  1518. POP3u - with UIDL command.
  1519. (b) What DOS protocol stacks are supported?
  1520. MS-DOSm - Lan Manager
  1521. MS-DOSn - NDIS Drivers
  1522. MS-DOSl - Lan Workplace for Dos
  1523. MS-DOSs - Sun PCNFS
  1524. MS-DOSp - Packet Drivers
  1525. MS-DOSo - ODI Drivers
  1526. MS-DOSi - IPXLink
  1527. MS-DOSf - FTP Software PC/TCP
  1528. MS-DOSk - KA9Q I think
  1529. MS-WIN? - similar
  1530. MS-WINw - WinSock compliant
  1531. MS-WIN5 - Windows 95
  1532. WIN3 - Windows 3.x winsock
  1533. WIN3/95/NT - Windows 3.x Winsock, Windows 95 and Windows NT
  1534. WIN3/95 - Windows 3.x Winsock and WIndows 95
  1535. NetWare3 - NetWare 3.x
  1536. NetWare4 - NetWare 4.x
  1537. NetWare34 - NetWare 3.x and 4.x
  1538. (c) Other notes
  1539. IMAP1 - Original IMAP: I've heard that MacMS actually uses a unique
  1540.         dialect of it.  Definitely obselete, unsupported, discouraged.
  1541. IMAP2b - IMAP2bis: name applied to various improved versions of IMAP2.
  1542.  This development effort culminated in IMAP4.
  1543. IMAP24 - IMAP2 or IMAP4
  1544. fshare - uses file sharing.
  1545. IMAPb4 - IMAP2, IMAP2bis, or IMAP4.
  1546. IMAP41 - IMAP4rev1
  1547. MAPI - Microsoft's Messaging API
  1548. MAPIs - Simple MAPI.
  1549. VIM - Lotus's Vendor Independent Messaging API
  1550. CMC - XAPIA's Common Message Calls API
  1551. AOCE - Apple Open Collaborative Environment
  1552. PROP - System-specific proprietary protocol
  1553. FCP - SOFTARC's proprietary client-server protocol.
  1554. Unix/X - X Windows based
  1555. Unix/XM - Motif based
  1556. Unix/XO - OpenWindows based
  1557. PSS - PROFS Screen Scraper
  1558. sumex-aim.stanford.edu* - almost dead as of 7/13/95, to be replaced by
  1559.  info-mac.org.
  1560. Metamail - a package with which MIME messages can be processed from
  1561.  basically any Unix-based mail client.
  1562. POPGate (Stalker Software) - gateway to/from Stalker's CommuniGate
  1563.  system:  enables both use of POP3 to get software from a POP3 server
  1564.  for use within a CommuniGate community, and to allow POP3 clients to
  1565.  retrieve mail from a CommuniGate server.
  1566. DigUNIX - Digital Unix
  1567. Solaris - Solaris 2.x
  1568. peer - peer-to-peer mail system
  1569. gtwy - e-mail gateway of some kind: a system that moves e-mail between two
  1570.  different systems/areas.  Among other things, a add-on to a
  1571.  proprietary mail server that made it act as a POP or IMAP server or
  1572.  that made it exchange e-mail using SMTP could be called a gateway.
  1573. (d) IMAP/MAPI adaptors:
  1574. Wollongong's Pathway Access 7/12/94
  1575. mail-it@unipalm.co.uk's Mail-IT 7/12/94
  1576. (e) IMAP/POP3 adaptors:
  1577. Included with NCD Z-mail 4.0 for Windows 9/14/95
  1578. ------ ----------- ------------------- ------- -------------------------------
  1579.  
  1580. Posted Thu Oct  9 08:32:55 EDT 1997
  1581.