Allegro CL imap interface

copyright (c) 1999 Franz Inc.

 

imap is a client-server protocol for processing electronic mail boxes.  imap is the successor to the pop protocol.   It is not an upward compatible successor.

This document and interface is based on the Imap4rev1 protocol described in rfc2060.   Where this document is describing the actions of the imap commands it should be considered a secondary source of information about those command and rfc2060 should be considered the primary source.

The advantages of imap over pop are:

  1. imap can work with multiple mailboxes (pop works with a single mailbox)

  2. With imap you're encouraged to leave mail in mailboxes on the server machine, thus it can be read from any machine on the network.    With pop you're encouraged to download the mail to the client machine's disk, and it thus becomes inaccessible to all other client machines.

  3. imap parses the headers of messages thus allowing easier analysis of mail messages by the client program.

  4. imap supports searching messages for data and sorting by date.

  5. imap supports annotating messages with flags, thus making subsequent searching easier.

 

Mailboxes

Mailboxes are repositories for messages.   Mailboxes are named by Lisp strings.  The mailbox "inbox" always exists and it is the mailbox in which new messages are stored.   New mailboxes can be created.     They can have simple names, like "foo" or they can have hierarchical names (like "clients/california/widgetco").   After connecting to an imap server you can determine what string of characters you must use between simple names to create a hierarchical name (in this example "/" was the separator character).

Each mailbox has an associated unique number called its uidvalidity.     This number won't change as long as only imap is the only program used to manipulate the mailbox.   In fact if you see that the number has changed then that means that some other program has done something to the mailbox that destroyed the information that imap had been keeping about the mailbox.    In particular you can't now retrieve messages by their unique ids that you had used before.

Messages

Messages in a mailbox can be denoted in one of two ways:  message sequence number or  unique id.  

The message sequence number is the normal way.  The messages in a mailbox are numbered from 1 to N where N is the number of messages in the mailbox.    There are never any gaps in the sequence numbers.  If you tell imap to delete messages 3,4 and 5 then it will return a value telling you the it has deleted messages 3,3 and 3.  This is because when you deleted message 3, message 4 became the new message 3 just before it was deleted and then message 5 became message 3 just before it was deleted.

A unique id of a message is a number associated with a message that is unique only within a mailbox.   As long as the uidvalidity value of a mailbox doesn't change, the unique ids used in deleted messages will never be reused for new messages. 

Flags

A flag is a symbol denoting that a message or mailbox has a certain property.   We use keywords in Lisp to denote flags.   There are two kinds of flags - System and User flags.  System flags begin with the backslash character, which is an unfortunate design decision  since that means that in Lisp we have to remember to use two backslashes (e.g.  :\\deleted).    A subset of the flags can be stored permanently in the mailbox with the messages.  When a connection is made to an imap server it will return the list of flags and permanent flags (and these are stored in the mailbox object returned for access by the program).   If the list of permanent flags includes :\\* then the program can create its own flag names (not beginning with a backslash) and can store them permanently in messages.

Some of the important system flags are:

 

Connecting to the server

 

(make-imap-connection host &key user password port timeout)

This creates a connection to the imap server on machine host and logs in as user with password password.   The port argument defaults to143, which is the port on which the imap server normally listens.    The timeout argument defaults to 30 (seconds) and this value is used to limit the amount of time this imap interface code will wait for a response from the server before giving up.    In certain circumstances the server may get so busy that you see timeout errors signaled in this code.  In that case you should specify a larger timeout when connecting.

The make-imap-connection function returns a mailbox object which is then passed to other functions in this interface.   From this one connection you can access all of the mailboxes owned by user.

After  the connection is  established a mailbox is not selected.   In this state attempting to execute message access functions may result in cryptic error messages from the imap server that won't tell you what you need to know -- that a mailbox is not selected.   Therefore be sure to select a mailbox using select-mailbox shortly after connecting.

 

 

(close-imap-connection mailbox)

This sends a logout command to the imap server and then closes the socket that's communicating with the imap server.    mailbox is the object returned by make-imap-connection.    This does not close the currently select mailbox before logging out, thus messages marked to be deleted in the currently selected mailbox will not be removed from the  mailbox.  Use close-mailbox or expunge-mailbox before calling this close-imap-connection to ensure that messages to be deleted are deleted.

 

 

Mailbox manipulation

These functions work on mailboxes as a whole.    The mailbox argument to the functions is is the object returned by make-imap-connection.   If a return value isn't specified for a function then the return value isn't important - if something goes wrong an error will be signaled.

 

(select-mailbox mailbox name)

makes the mailbox named by the string name be the current mailbox and store statistics about that mailbox in the mailbox object where they can be retrieved by the accessors described below.     The selected mailbox is the source for all message manipulation functions.

 

(create-mailbox mailbox name)

creates a new mailbox with the given name.   It is an error if the mailbox already exists.  If you want to create a mailbox in a hierarchy then you should be sure that it uses the correct hierarchy separator character string (see mailbox-separator).   You do not   have to create intermediate levels of the hierarchy yourself -- just provide the complete name and the imap server will create all necessary levels.

 

(delete-mailbox mailbox name)

deletes the mailbox with the given name.

 

(rename-mailbox mailbox  old-name new-name)

changes the name of mailbox old-name to new-name.   It's an error if new-name already exists.  There's a special behavior if old-name is "inbox".  In this case all of the messages in "inbox" are moved to new-name mailbox, but the "inbox" mailbox continues to exist.   Note: The imap server supplied with Linux does not support this special behavior of renaming "inbox".

 

(mailbox-list mailbox &key reference pattern)

returns a list of items describing the mailboxes that match the arguments.      The reference is the root of the hierarchy to scan.  By default is is the empty string (from which all mailboxes are reachable).     The pattern is a string matched against all mailbox names reachable from reference. There are two special characters allowed in the pattern:  Asterisk (*) matches all characters including hierarchy delimiters.   Percent (%) matches all characters but not the hierarchy delimiter.  Thus

(mailbox-list mailbox :pattern "*")

returns a list of all mailboxes at all depths in the hierarchy.   

The value returned is a list of lists, but we've created the mailbox-list struct definition in order to make accessing the parts of the inner lists   easier.   The accessors for that structure are:

 

(mailbox-list-flags mailbox-list) 

returns the flags describing this entry.   The most important flag to check is :\\noselect as this specifies that this is not a mailbox but instead just a directory in the hierarchy of mailboxes.   The flag :\\noinferiors specifies that you can't create a hierarchical mailbox name with this as a prefix.    This flag is often associated with the special mailbox "inbox".

 

(mailbox-list-separator mailbox-list)

returns a string containing the characters used to separate names in a hierarchical name.

 

(mailbox-list-name mailbox-list)

returns the name of the mailbox or directory (see mailbox-list-flags to determine which it is).

 

Message manipulation

These functions work with the messages in the currently selected mailbox.     The mailbox argument is the object returned by make-imap-connection.   The messages argument is either a number (denoting a single message), or is the list (:seq N M) denoting messages N through M, or is a list of numbers and :seq forms denoting the messages specified in the list.

 

(alter-flags mailbox messages &key flags add-flags remove-flags silent uid)

changes the flags of the messages in the specified way.  Exactly one of  flags, add-flags, and remove-flags must  be specified.  flags specifies the complete set of flags to be stores in the messages and the other two add or remove flags.   If uid is true then messages will be interpreted as unique ids rather than message sequence numbers.      Normally alter-flags returns a data structure that describes the state of the flags after the alternation has been done.  This data structure can be examined  with the fetch-field function.    If silent is true then this data structure won't be created thus saving some time and space.

Removing a message from a mailbox is done by adding the :\\deleted flag to the message and then either calling close-mailbox or expunge-mailbox.

 

(close-mailbox mailbox)

permanently removes all messages flagged as :\\deleted from the currently selected mailbox and then un-selects the currently selected mailbox.  After this command has finished there is no currently selected mailbox.

 

(delete-letter mailbox messages &key expunge uid)

Mark the messages for deletion and then remove them permanently (using expunge-mailbox) if expunge is true.    expunge defaults to true.    If uid is true then the message numbers are unique ids instead of messages sequence numbers.

 

(expunge-mailbox mailbox)

permanently removes all messages flagged as :\\deleted from the currently selected mailbox.   The currently selected mailbox stays selected.

 

(fetch-field message part info &key uid)

is used to extract the desired information from the value returned by fetch-letter.     With fetch-letter you can retrieve a variety of information about one or more messages and fetch-field can search though that information and return a  particular piece of information about a particular letter.   message is the message number (it's assumed to be a message sequence number unless uid is true, in which case it's a unique id).   part is the type of information desired.  It is a string just as used in the call to fetch-letter.

 

(fetch-letter mailbox messages parts &key uid)

retrieves the specified parts of the specified messages.    If uid is true then the messages are considered to be unique ids rather than message sequence numbers.      The description of what can be specified for parts is quite complex and has been moved to the section below "Fetching a Letter".

The return value from this function is a structure that can be examined with fetch-field.

When the result returned includes an envelope value the following functions can be used to extract  the parts of the envelope:

 

 

(noop mailbox)

does nothing but  remind the imap server that this client is still active, thus resetting the timers used in the server that will automatically shut down this connection after a period of inactivity.   Like all other commands if messages have been added to the currently selected mailbox, the server will return the new message count as a response to the noop command, and this can be check using mailbox-message-count.   

 

(search-mailbox search-expression &key uid)

return a list of messages in the mailbox that satisfy the search-expression.   If uid is true then unique ids will be returned instead of message sequence numbers.  See the section "Searching for messages" for details on the search-expression.

 

Mailbox Accessors

The mailbox object contains information about the imap server it's connected to as well as the currently selected mailbox.   This information can potentially be updated each time a request is made to the imap server.    The following functions access values from the mailbox object.

(mailbox-flags mailbox)

returns a complete list of flags used in all the messages in this mailbox.

 

(mailbox-permanent-flags mailbox)

returns a list of flags that can be stored permanently in a message.   If the flag :\\* is present then it means that the client can create its own flags.

 

(mailbox-message-count mailbox)

returns the number of messages in the currently selected mailbox

 

(mailbox-recent-messages mailbox)

returns the number of messages have just arrived in the mailbox.

 

(mailbox-separator mailbox)

returns the hierarchy separator string for this imap server.

 

(mailbox-uidnext mailbox)

returns the value predicated to be the  unique id assigned to the next message.

 

(mailbox-uidvalidty mailbox)

returns the uidvalidity value for the currently selected mailbox.

 

 

Fetching a Letter

When using fetch-letter to access letters, you must specify the parts of the messages in which you're interested.   There are a wide variety of specifiers, some redundant and overlapping, described in the imap specification in rfe2060.  We'll describe the most common ones here.   The specification is always a string but it may be specify more than one thing by the use of parentheses in the string, e.g. "(flags envelope)".  

The most common specifiers are:

 

The result of a fetch-letter is a data structure containing all of the requested information.   The fetch-field function is then used to extract the particular information for the particular message.

 

Searching for Messages

.The imap server is able to search for messages matching a search expression.     A search-expression is a predicate or one of these forms:

A predicate is

 

Examples

We show an example of using this interface

 

Connect to the imap server on the machine holding the email:

user(2): (setq mb (mb:make-imap-connection "mailmachine.franz.com" 
                            :user "myacct" 
                            :password "mypasswd"))
#<mailbox::imap-mailbox @ #x2064ca4a>

 

Select the inbox, that's where the incoming mail arrives:

user(3): (mb:select-mailbox mb "inbox")
t

 

Check how many messages are in the mailbox:

user(4): (mb:mailbox-message-count mb)
7

There are seven messages at the moment.   Fetch the whole 4th message

user(5): (setq body (mb:fetch-letter mb 4 "body[]"))
((4
("BODY[]" "Return-Path: <jkfmail@tiger.franz.com>
Received: from tiger.franz.com (jkf@tiger [192.132.95.103])
    by tiger.franz.com (8.8.7/8.8.7) with SMTP id LAA20261
    for <jkfmail@tiger.franz.com>; Mon, 13 Sep 1999 11:36:26 -0700
Date: Mon, 13 Sep 1999 11:36:26 -0700
From: jkf mail tester <jkfmail@tiger.franz.com>
Message-Id: <199909131836.LAA20261@tiger.franz.com>

message number 5
")))

The value was returned inside a data structure designed to hold information about one or more messages.   In order to extract the particular information we want we use fetch-field:

user(6): (mb:fetch-field 4 "body[]" body)
"Return-Path: <jkfmail@tiger.franz.com>
Received: from tiger.franz.com (jkf@tiger [192.132.95.103])
    by tiger.franz.com (8.8.7/8.8.7) with SMTP id LAA20261
    for <jkfmail@tiger.franz.com>; Mon, 13 Sep 1999 11:36:26 -0700
Date: Mon, 13 Sep 1999 11:36:26 -0700
From: jkf mail tester <jkfmail@tiger.franz.com>
Message-Id: <199909131836.LAA20261@tiger.franz.com>

message number 5
"

We use the search function to find all the messages containing the word blitzfig.  It turns out there is only one.  We then extract the contents of that message.

user(7): (mb:search-mailbox mb '(:text "blitzfig"))
(7)
user(8): (mb:fetch-field 7 "body[]" (mb:fetch-letter mb 7 "body[]"))
"Return-Path: <jkf@verada.com>
Received: from main.verada.com (main.verada.com [208.164.216.3])
    by tiger.franz.com (8.8.7/8.8.7) with ESMTP id NAA20541
    for <jkfmail@tiger.franz.com>; Mon, 13 Sep 1999 13:37:24 -0700
Received: from main.verada.com (IDENT:jkf@localhost [127.0.0.1])
    by main.verada.com (8.9.3/8.9.3) with ESMTP id NAA06121
    for <jkfmail@tiger.franz.com>; Mon, 13 Sep 1999 13:36:54 -0700
Message-Id: <199909132036.NAA06121@main.verada.com>
To: jkfmail@tiger.franz.com
Subject: s test
Date: Mon, 13 Sep 1999 13:36:54 -0700
From: jkf <jkf@verada.com>

secret word: blitzfig
ok?
"

We've been using message sequence numbers up to now.    The are the simplest to use but if you're concerned with keeping track of messages when deletions are being done then using unique id's is useful.   Here we do the above search example using uids:

user(9): (mb:search-mailbox mb '(:text "blitzfig") :uid t)
(68)
user(10): (mb:fetch-field 68 "body[]" (mb:fetch-letter mb 68 "body[]" :uid t) :uid t)
"Return-Path: <jkf@verada.com>
Received: from main.verada.com (main.verada.com [208.164.216.3])
    by tiger.franz.com (8.8.7/8.8.7) with ESMTP id NAA20541
    for <jkfmail@tiger.franz.com>; Mon, 13 Sep 1999 13:37:24 -0700
Received: from main.verada.com (IDENT:jkf@localhost [127.0.0.1])
    by main.verada.com (8.9.3/8.9.3) with ESMTP id NAA06121
    for <jkfmail@tiger.franz.com>; Mon, 13 Sep 1999 13:36:54 -0700
Message-Id: <199909132036.NAA06121@main.verada.com>
To: jkfmail@tiger.franz.com
Subject: s test
Date: Mon, 13 Sep 1999 13:36:54 -0700
From: jkf <jkf@verada.com>

secret word: blitzfig
ok?
"

We'll delete that letter with the secret word and then note that we have only six messages in the mailbox.

user(11): (mb:delete-letter mb 68 :uid t)
(7)
user(12): (mb:mailbox-message-count mb)
6

Now we assume that a bit of time has passed and we want to see if any new messages have been delivered into the mailbox.   In order to find out we have to send a command to the imap server since it will only notify us of new messages when it responds to a command.   Since we have nothing to ask the imap server to do we issue the noop command, which does nothing on the server.

user(13): (mb:noop mb)
nil
user(14): (mb:mailbox-message-count mb)
7

The server told us that there are now 7 messages in the inbox, one more than before.  Next we create a new mailbox, copy the messages from the inbox to the new mailbox and then delete them from the inbox.  Note how we use the :seq form to specify a sequence of messages.

user(15): (mb:create-mailbox mb "tempbox")
t
user(18): (let ((count (mb:mailbox-message-count mb)))
(mb:copy-to-mailbox mb `(:seq 1 ,count) "tempbox")
(mb:delete-letter mb `(:seq 1 ,count)))
(1 1 1 1 1 1 1)
user(19): (mb:mailbox-message-count mb)
0

When we're done there are 0 messages in the currently selected mailbox, which is inbox.  We now select the maibox we just created and see that the messages are there.

user(22): (mb:select-mailbox mb "tempbox")
t
user(23): (mb:mailbox-message-count mb)
7

Finally we shut down the connection.   Note that imap servers will automatically shut down a connection that's been idle for too long (usually around 10 minutes).  When that happens, the next time the client tries to use an imap function to access the mailbox an error will occur.   There is nothing that can be done to revive the connection however it is important to call close-imap-connection on the lisp side in order to free up the resources still in use for the now dead connection.

user(24): (mb:close-imap-connection mb)
t