public
Description: POP, IMAP and SMTP client support for Common Lisp
Homepage: http://opensource.franz.com
Clone URL: git://github.com/franzinc/imap.git
Click here to lend your support to: imap and make a donation at www.pledgie.com !
Kevin Layer (author)
Wed Sep 30 13:34:28 -0700 2009
commit  3f4b1cb57bb020a06e32e545d7d65bfa55c1f139
tree    8e34d165093405b5a2f27b18d7daf93d5ae01d33
parent  25a9bbcd77529fbdac213a7a467af8d24b627ac7
imap /
name age message
file .gitignore Thu Mar 05 15:13:03 -0800 2009 add ignore file [Kevin Layer]
file ChangeLog Wed Sep 30 13:31:11 -0700 2009 bug18636 (handle underscore) and rfe9010 (soft ... [Kevin Layer]
file Makefile Fri May 26 21:53:08 -0700 2000 see changelog entry for Fri May 26 22:52:42 PST... [duane]
file README.md Fri Jun 05 16:27:51 -0700 2009 Moving readme to a markdown format. [Elliott Johnson]
file RELNOTES Tue Apr 03 11:45:35 -0700 2007 copy contents from RELNOTES to RELNOTES.81 and ... [layer]
file RELNOTES.81 Tue Apr 03 11:45:35 -0700 2007 copy contents from RELNOTES to RELNOTES.81 and ... [layer]
file imap.cl Wed Mar 25 15:46:02 -0700 2009 2009-03-12 Mikel Bancroft <mikel@gemini> [layer]
file imap.html Thu Jun 08 07:41:00 -0700 2000 minor update [jkf]
file imap.txt Thu Sep 16 14:47:26 -0700 1999 initial storage [jkf]
file load.cl Wed Apr 26 13:53:40 -0700 2000 1.5 [jkf]
file mime-api.cl Wed Sep 30 13:34:28 -0700 2009 fix defpatch [Kevin Layer]
file mime-parse.cl Wed May 21 14:01:56 -0700 2008 2008-04-28 Ahmon Dancy <dancy@dancy> [layer]
file mime-parse.txt Fri Jun 01 09:24:40 -0700 2007 See ChangeLog [dancy]
file mime-transfer-encoding.cl Wed Sep 30 13:31:11 -0700 2009 bug18636 (handle underscore) and rfe9010 (soft ... [Kevin Layer]
file rfc1939.html Thu Mar 05 23:28:41 -0800 2009 fix line endings [Kevin Layer]
file rfc2060.txt Thu Sep 16 14:47:26 -0700 1999 initial storage [jkf]
file rfc2822.cl Mon Sep 24 15:17:45 -0700 2007 2007-09-24 Ahmon Dancy <dancy@dancy> [layer]
file smtp.cl Tue Sep 16 16:22:14 -0700 2008 2008-09-16 Mikel Bancroft <mikel@gemini> [layer]
file t-imap.cl Wed Sep 30 13:31:11 -0700 2009 bug18636 (handle underscore) and rfe9010 (soft ... [Kevin Layer]
README.md

imap: A common lisp library for sending and receiving email.

Table of contents

  • Description
  • Author
  • Author comments
  • Documentation
  • Platforms
  • Dependencies
  • Installation
  • Configuration
  • Licence
  • Notes
  • Examples
  • Open Source

Description

A client library for sending and receiving email.

Author

John Foderaro, Franz Inc.

Author comments

The most popular protocol for accessing a mailbox was the Post Office Protocol (POP) defined in rfc1939. While it is popular, pop has very few features. It doesn't allow you to manage the mail on the server itself, instead you usually just download all mail to your local machine. A much more powerful protocol called the Internet Message Access Protocol (IMAP) was defined in the 1996 document rfc2060. With imap you can work with your mail while it's on the server and can create folders on the server in which to archive your mail. Thus the server itself can be the message store which is useful if you want to access your mail from more than one machine. You are not required to use the server to archive your mail with imap, you can use it like pop and download all the mail to your local machine.

Sending email is done via the Simple Mail Transfer Protocol (SMTP). You can use smtp to send mail directly to the destination but typically this is not done because the destination machine may be down or unreachable at the time you wish to send the mail. Most organizations have a local mail server that is up and reachable all of the time. You can use smtp to send your letter to that local mail server and it will then take over the job of getting the mail to the destination (which may involve queueing the message and retrying to send it over a period of days).

Platforms

Allegro Common Lisp 7.0 and newer on all platforms.

Dependencies

None, but for the test suite, tester is required.

Installation

Start Allegro Common Lisp and load the load.cl file

:ld /path/to/load.cl

Configuration

Set the following variables to true for extra debugging information:

(setq net.post-office::*debug-imap* t 
      net.post-office::*smtp-debug* t)

Documentation

License

The aserve source code is licensed under the terms of the Lisp Lesser GNU Public License, known as the LLGPL. The LLGPL consists of a preamble and the LGPL. Where these conflict, the preamble takes precedence. This project is referenced in the preamble as the LIBRARY.

Notes

For reference please see rfc1939 (pop) and rfc2060 (imap).

Examples and Information

See the first link in the documenation section above for examples.

Franz Inc. Open Source Info

This project's homepage is http://opensource.franz.com. There is an informal community support and development mailing list opensource@franz.com for these open source projects. We encourage you to take advantage by subscribing to the list. Once you're subscribed, email to opensource@franz.com with your questions, comments, suggestions, and patches.