internal.txt
上传用户:ycwykj01
上传日期:2007-01-04
资源大小:1819k
文件大小:112k
源码类别:

网络编程

开发平台:

Unix_Linux

  1.   Documentation of c-client Functions and Interfaces
  2. REVISED: 19 August 1996
  3.   Credits
  4.      The original version of this document was written by Mark Crispin at
  5. the University of Washington, and described the version of c-client that
  6. supported the IMAP2 (RFC 1176) and IMAP2bis (unpublished) protocols.
  7.      This version is a substantial rewrite of that document, and was
  8. written by Mark Crispin with funding from Sun Microsystems, Incorporated.
  9. Sun's generous support of this work is gratefully acknowledged.
  10.  Road Map
  11.      This document is organized into the following sections.  Except as
  12. noted, an implementor of an application that uses c-client needs to be
  13. familiar with all of these sections.  Someone who plans to write a new
  14. mailbox driver for c-client (or otherwise modify it) needs to be familiar
  15. with all sections, no exception.
  16. History
  17. History of how c-client came about.
  18. Overview
  19. Read this before designing an application that uses c-client.
  20. c-client Structures
  21. Documentation of several important c-client structs which are
  22. used in, and returned by, c-client calls.
  23. String Structures
  24. Documentation of the concept of a "string structure", which
  25. provides random access to strings without requiring that the
  26. string be in memory.
  27. c-client Support Functions
  28. Documentation of support functions for c-client; these deal
  29. with c-client functionality.
  30. Only mail_parameters() is of interest to most application
  31. developers.  Advanced application developers, particularly
  32. for limited memory systems, may also need to know about the
  33. readfn_t, mailgets_t, mailcache_t, and tcptimeout_t function
  34. pointer types, and possibly also the mail_valid_net_parse()
  35. function.
  36. Mailbox Access Functions
  37. Documentation of functions which deal with mailboxes;
  38. listing, subscribing, creating, deleting, renaming, status
  39. inquiries, opening, and closing mailboxes.
  40. Handle Functions
  41. Documentation of mail stream handles, which provide protection
  42. for an advanced application which may have multiple pointers to
  43. a single mail stream.  If a stream has a handle on it, closing
  44. the stream does not release its memory, so pointers to it in
  45. the application remain valid.  Freeing the last handle will free
  46. the entire stream.
  47. This is only of interest for advanced application developers.
  48. Message Data Fetching Functions
  49. Documentation on message data fetching in an open mailbox,
  50. including parsed representations of RFC-822 and MIME headers
  51. and message text.  Also how to fetch message attributes (flags,
  52. internal date, sizes).
  53. Message Status Manipulation Functions
  54. Documentation on altering message flags in an open mailbox.
  55. Mailbox Searching
  56. Documentation on searching an open mailbox for messages which
  57. match certain criteria (e.g. "messages sent July 4 from Jones
  58. with text `Paris'").
  59. Miscellaneous Mailbox and Message Functions
  60. Documentation on other operations that would be used by an
  61. application but that don't fit into any of the above categories.
  62. Date/Time Handling Functions
  63. Documentation on functions that deal with date/time strings.
  64. This is only of interest for advanced application developers
  65. and for implementors of new c-client drivers.
  66. Utility Functions
  67. Documentation on internal utility functions.
  68. This is primarily of interest for implementors of new c-client
  69. drivers, but advanced application developers may also use some
  70. of these functions.
  71. Data Structure Instantiation/Destruction functions
  72. Documentation on creating and destroy c-client structures.
  73. This is primarily of interest for implementors of new c-client
  74. drivers.  However, application developers will need some of
  75. these functions to create and destroy structures which are used
  76. as arguments to various application functions.
  77. Authentication Functions
  78. Documentation on support for network protocol authentication
  79. functions.
  80. This is only of interest for implementors of new c-client
  81. drivers which deal with authentication mechanisms.
  82. Network Access Functions
  83. Documentation on creating and destroy c-client structures.
  84. This is primarily of interest for implementors of new c-client
  85. drivers which deal with a network.  However, advanced
  86. application developers may need to use this information if they
  87. wish to insert their own layer into a network session.
  88. Subscription Management Functions
  89. Documentation on managing the local (client-based) subscription
  90. database file.
  91. This is primarily of interest to advanced application developers.
  92. Miscellaneous Utility Functions
  93. Documentation on various useful utility functions, such as "make
  94. a copy of this string."
  95. SMTP Functions
  96. Documentation on posting email messages via SMTP protocol.
  97. NNTP Functions
  98. Documentation on posting netnews messages via NNTP protocol.
  99. RFC 822 Support Functions
  100. Documentation on public RFC-822/MIME functions.
  101. This is primarily of interest for implementors of new c-client
  102. drivers and advanced application developers.
  103. Operating System-Dependent Public Interface
  104. Documentation on OS-dependent functions.  With the exception of
  105. fs_get(), fs_give(), and fs_resize(), which should be called
  106. instead of malloc(), free(), and realloc(), these functions are
  107. primarily of interest for implementors of new c-client drivers.
  108. Main Program Callbacks
  109. Documentation of functions which the main program must provide
  110. as callbacks from c-client.
  111. Driver Interface
  112. Documentation of the driver dispatch vector and the functions
  113. which a driver must supply.
  114. This is primarily of interest for implementors of new c-client
  115. drivers.
  116. Driver Support Functions
  117. Documentation of support functions which are called by drivers.
  118. This is primarily of interest for implementors of new c-client
  119. drivers.
  120.   History
  121.      The c-client API was originally written by Mark Crispin at Stanford
  122. University as a set of routines to support IMAP and SMTP from a main
  123. program which would handle the user interface.  In its original form, it
  124. was written as the low-level routines that were to be used as part of a
  125. Macintosh client.
  126.      The first IMAP client, MM-D (for "MM on Xerox D machines" -- MM was a
  127. popular DEC-20 mail program) was written in Interlisp for Xerox Lisp
  128. machines.  At that time, there was no name for the embryonic Mac client,
  129. but since it was the first one to be written in C instead of Lisp, it was
  130. given a development name of "C client".  This name became "c-client"
  131. because that is the name of the subdirectory on UNIX where the source files
  132. were stored.
  133.      To exercise the routines, a minimal main program which uses c-client,
  134. mtest, was written.  mtest has subsequently been extended so that it runs
  135. on every platform that c-client is ported.
  136.      The real Mac client, was eventually written by Frank Gilmurrary and
  137. Bill Yeager at Stanford using the autumn 1988 version of c-client and named
  138. "MacMS".  In the winter of 1988-89, Mark Crispin, who had changed jobs to
  139. the University of Washington, developed MS as an MM-like text-based program
  140. for UNIX and MailManager as a GUI-based program for NeXT machines.
  141.      The realization sunk in that this API needed its own name.  As early
  142. as spring 1989, there were at least four programs (mtest, MS, MailManager,
  143. and MacMS) that used it.  The name c-client thus became permanent.
  144.      In its history, c-client has undergone two major redesigns, both by
  145. Mark Crispin who is now on the staff at the University of Washington.
  146.      The first major redesign added the following:
  147. 1) ANSI C calling conventions throughout to assist in function
  148.    argument type checking.
  149. 2) Vectoring mail access calls through "driver" methods; thus
  150.    providing transparent access to multiple types of mail
  151.    stores with the same call.
  152. 3) MIME support.
  153.      The second major redesign was part of the IMAP4 project.  Many
  154. c-client functions were extended with additional arguments and options.
  155. The driver interface was also made simpler, with more work done by
  156. driver-independent code.
  157.        Overview
  158.      The most important file for the author of an application using the
  159. c-client is mail.h.  mail.h defines several important structures of
  160. data which are passed between the main program and the c-client.
  161. Although some functions (e.g. mail_fetchtext_body()) return the data
  162. fetched, for certain other data items (e.g. flags) you need to get the
  163. data as a structure reference.  mail.h also defines a large number of
  164. useful constants and structures.
  165.      When a function in mail.h exists to reference data, it MUST be
  166. used instead of referencing the structures directly.  This is because
  167. in some cases the data is not actually fetched until a reference (via
  168. the function call) is made.  For example, although the MESSAGECACHE
  169. element for a message can be obtained by indexing the proper cache
  170. element in the stream, there is no guarantee that the item in fact
  171. exists unless mail_fetchstructure_full() is called for that message.
  172. Less costly functions. also exist to create and load a MESSAGECACHE
  173. element.
  174.      The main program will probably also need to include smtp.h,
  175. misc.h, and osdep.h, but this usage should be solely to receive
  176. function prototypes.  Any other definitions in those files should be
  177. considered private to that module.
  178.      Two important predefined symbols are NIL and T.  NIL is any sort
  179. of "false"; T is any sort of "true".  NIL is also used to null-specify
  180. certain optional arguments.
  181. * * * IMPORTANT * * *
  182.      Any multi-threaded application should test stream->lock prior to
  183. calling any c-client stream functions.  Any attempt to call a
  184. mail_xxx() function while one is already in progress on the same
  185. stream will cause the application to fail in unpredictable ways.
  186.      Note that this check is insufficient in a preemptive-scheduling
  187. multi-tasking application due to the possibility of a timing race.
  188. Such applications must be written so that only one process accesses
  189. the stream, or to have a higher level lock.
  190.      Since MAIL operations will not finish until they are completed, a
  191. single-tasking application does not have to worry about this problem,
  192. except in the callback invoked from MAIL (e.g. mm_exists(), etc.) in which
  193. case the stream is *always* locked.
  194.   c-client Structures
  195.      c-client has a large number of structures which are used for
  196. multiple functions.  The most important of these are described here.
  197.      The MAILSTREAM structure is used to reference open mailboxes.
  198. Applications may reference the following:
  199. char *mailbox; mailbox name
  200. unsigned short use; stream use count, this is incremented
  201. unsigned short sequence; stream sequence, this is incremented
  202.  each time a stream is reused (i.e.
  203.  mail_open() is called to open a
  204.  different mailbox on this stream)
  205. unsigned int rdonly : 1; stream is open read-only
  206. unsigned int anonymous : 1; stream is open with anonymous access
  207. unsigned int halfopen : 1; stream is half-open; it can be
  208.  reopened or used for functions that
  209.  don't need a open mailbox such as
  210.  mail_create() but no message data
  211.  can be fetched
  212. unsigned int perm_seen : 1; Seen flag can be set permanently
  213. unsigned int perm_deleted : 1; Deleted flag can be set permanently
  214. unsigned int perm_flagged : 1; Flagged flag can be set permanently
  215. unsigned int perm_answered :1; Answered flag can be set permanently
  216. unsigned int perm_draft : 1; Draft flag can be set permanently
  217. unsigned int kwd_create : 1; new user flags can be created by
  218.  referencing then in mail_setflag() or
  219.  mail_clearflag().  Note: this can
  220.  change during a session (e.g. if
  221.  there is a limit on the number of
  222.  keywords), so check after creating a
  223.  new flag to see if any more can be
  224.  created before letting the user try
  225.  to do so
  226. unsigned long perm_user_flags; corresponding user flags can be set
  227.  permanently.  This is a bit mask
  228.  which matches the entries in
  229.  stream->user_flags[]
  230. unsigned long gensym; generated unique value.  Always
  231.  referenced with stream->gensys++
  232. unsigned long nmsgs; number of messages in current mailbox
  233. unsigned long recent; number of recent messages in current
  234.  mailbox
  235. unsigned long uid_validity; UID validity value; this is used to
  236.  verify that recorded UIDs match the
  237.  UIDs that the stream has.  If the
  238.  mailbox does not have matching UIDs
  239.  (e.g. the UIDs were lost or not
  240.  recorded) then the UID validity value
  241.  will be different
  242. unsigned long uid_last; highest currently assigned UID in the
  243.  current mailbox; a new UID will be
  244.  assigned with ++stream->uid_last
  245. char *user_flags[NUSERFLAGS]; pointers to user flag names in bit
  246.  order from stream->perm_user_flags or
  247.  elt->user_flags
  248.      The following MAILSTREAM values are only used internally:
  249. DRIVER *dtb; dispatch table for this driver
  250. void *local; pointer to driver local data
  251. unsigned int lock : 1; stream lock flag (an operation is in
  252.  progress; used as a bug trap to
  253.  detect recursion back to c-client
  254.  from callback routines).
  255. unsigned int debug : 1; debugging information should be logged
  256.  via mm_dlog().
  257. unsigned int silent : 1; don't do main program callbacks on
  258.  this stream (used when a stream is
  259.  opened internally)
  260. unsigned int scache : 1; short caching; don't cache information
  261.  in memory
  262.      The following MAILSTREAM values are only used by the cache
  263. manager routine (see the documentation about mailcache_t above):
  264. unsigned long cachesize; size of c-client message cache
  265. union {
  266.   void **c; to get at the cache in general
  267.   MESSAGECACHE **s; message cache array
  268.   LONGCACHE **l; long cache array
  269. } cache;
  270.      The following MAILSTREAM values are for the convenience of
  271. drivers that use short caching and want to be able to garbage collect
  272. any values that they returned:
  273. unsigned long msgno; message number of `current' message
  274. ENVELOPE *env; pointer to `current' message envelope
  275. BODY *body; pointer to `current' message body
  276. char *text; pointer to `current' text
  277.      The MESSAGECACHE structure (commonly called an "elt" as a
  278. nickname for "cache ELemenT") contains information about messages.
  279. Applications may use the following:
  280. unsigned long msgno; message number.  If the elt is locked
  281.  (by elt->lockcount++), then the elt
  282.  pointer can be stored (e.g. with the
  283.  data for a window which draws this
  284.  message) and elt->msgno will change
  285.  automatically whenever expunges are
  286.  done so the window will always view
  287.  the correct message.  If elt->msgno
  288.  becomes 0, then the message has been
  289.  expunged, but the elt won't be freed
  290.  until the elt lock count is
  291.  decremented (by mail_free_elt()).
  292. unsigned long uid; message unique ID
  293. unsigned int hours: 5; internal date hours (0-23)
  294. unsigned int minutes: 6; internal date minutes (0-59)
  295. unsigned int seconds: 6; internal date seconds (0-59)
  296. unsigned int zoccident : 1; non-zero if internal date time zone is
  297.  west of UTC
  298. unsigned int zhours : 4; internal date time zone hours from UTC
  299.  (0-12)
  300. unsigned int zminutes: 6; internal date time zone minutes (0-59)
  301. unsigned int seen : 1; message Seen flag
  302. unsigned int deleted : 1; message Deleted flag
  303. unsigned int flagged : 1;  message Flagged flag
  304. unsigned int answered : 1; message Answered glag
  305. unsigned int draft : 1; message Draft flag
  306. unsigned int valid : 1; flags are valid in this elt; an elt
  307.  that was newly created but never
  308.  loaded with flags won't have this set.
  309. unsigned int recent : 1; message recent flag
  310. unsigned int searched : 1; message matches search criteria in
  311.  most recent mail_search_full() call
  312. unsigned int spare : 1; reserved for application use
  313. unsigned int spare2 : 1; reserved for application use
  314. unsigned int spare3 : 1; reserved for application use
  315. unsigned int lockcount : 8; non-zero if multiple references to
  316.  this elt.  Refer to the msgno member
  317.  for more information.
  318. unsigned int day : 5; internal date day of month (1-31)
  319. unsigned int month : 4; internal date month of year (1-12)
  320. unsigned int year : 7; internal date year since BASEYEAR
  321.  (currently 1970; was 1969 in older
  322.  versions so use BASEYEAR instead of
  323.  having the base year wired in)
  324. unsigned long user_flags; message user flags; this is a bit mask
  325.  which matches the entries in
  326.  stream->user_flags[]
  327. unsigned long rfc822_size; size of message in octets
  328.      The following MESSAGECACHE values are only used internally by
  329. drivers:
  330. unsigned int sequence : 1; message is in sequence from either
  331.  mail_sequence() or mail_uid_sequence()
  332. unsigned long data1; first data item
  333. unsigned long data2; second data item
  334. unsigned long data3; third data item
  335. unsigned long data4; fourth data item
  336.      The ADDRESS structure is a parsed form of a linked list of RFC 822
  337. addresses.  It contains the following information:
  338. char *personal; personal name phrase
  339. char *adl; at-domain-list (also called "source
  340.  route")
  341. char *mailbox; mailbox name
  342. char *host; domain name of mailbox's host
  343. char *error; error in address from smtp_mail(); if
  344.  an error is returned from smtp_mail()
  345.  for one of the recipient addresses
  346.  the SMTP server's error text for that
  347.  recipient can be found here.  If it
  348.  is null then there was no error (or
  349.  an error was found with a prior
  350.  recipient
  351. ADDRESS *next; pointer to next address in list
  352.      The ENVELOPE structure is a parsed form of the RFC 822 header.
  353. Its member names correspond to the RFC 822 field names.  It contains
  354. the following information:
  355. char *remail; remail header if any
  356. ADDRESS *return_path; error return address
  357. char *date; message composition date string
  358. ADDRESS *from; from address list
  359. ADDRESS *sender; sender address list
  360. ADDRESS *reply_to; reply address list
  361. char *subject; message subject string
  362. ADDRESS *to; primary recipient list
  363. ADDRESS *cc; secondary recipient list
  364. ADDRESS *bcc; blind secondary recipient list
  365. char *in_reply_to; replied message ID
  366. char *message_id; message ID
  367. char *newsgroups; USENET newsgroups
  368. char *followup_to; USENET reply newsgroups
  369. char *references; USENET references
  370.      The BODY structure is a parsed form of a linked list of the MIME
  371. structure of a message.  It contains the following information.
  372. unsigned short type; body primary type code.  This is an
  373.  index into the body_types vector of
  374.  body type names.  The following body
  375.  types are pre-defined:
  376. TYPETEXT unformatted text
  377. TYPEMULTIPART multiple part
  378. TYPEMESSAGE encapsulated message
  379. TYPEAPPLICATION application data
  380. TYPEAUDIO audio
  381. TYPEIMAGE static image (GIF, JPEG, etc.)
  382. TYPEVIDEO video
  383. TYPEOTHER unknown
  384. Additional types up to TYPEMAX are
  385.  dynamically defined if they are
  386.  encountered by c-client.
  387. unsigned short encoding; body transfer encoding.  This is an
  388.  index into the body_encodings vector
  389.  of body encoding names.  The
  390.  following body encodings are
  391.  pre-defined:
  392. ENC7BIT 7 bit SMTP semantic data
  393. ENC8BIT 8 bit SMTP semantic data
  394. ENCBINARY 8 bit binary data
  395. ENCBASE64 base-64 encoded data
  396. ENCQUOTEDPRINTABLE human-readable 8-as-7 bit data
  397. ENCOTHER unknown
  398. Additional encodings up to ENCMAX are
  399.  dynamically defined if they are
  400.  encountered by c-client.
  401. char *subtype; body subtype string
  402. PARAMETER *parameter; parameter list
  403. char *id; body content identifier
  404. char *description; body content description
  405. unsigned char *contents.text; when composing a message that is NOT
  406.  of TYPEMULTIPART, non-binary text of
  407.  the content is stored here.  Note that
  408.  this happens even when the text is
  409.  of TYPEMESSAGE.  Text of encoding
  410.  ENC8BIT may be converted to
  411.  ENCQUOTEDPRINTABLE when it is sent.
  412.  This should not be referenced for any
  413.  other reason; in particular, this is
  414.  NOT the way for an application to
  415.  access content data (use
  416.  mail_fetchbody_full() instead).
  417. BINARY *contents.binary; when composing a message that is NOT
  418.  of TYPEMULTIPART, binary content (of
  419.  encoding ENCBINARY) is stored here.
  420.  It will be converted to ENCBASE64 when
  421.  it is sent.
  422.  This should not be referenced for any
  423.  other reason; in particular, this is
  424.  NOT the way for an application to
  425.  access content data (use
  426.  mail_fetchbody_full() instead).
  427. PART *contents.part; for body parts of TYPEMULTIPART, this
  428.  contains the list of body parts in
  429.  this multipart
  430. MESSAGE contents.msg; for body parts of TYPEMESSAGE with
  431.  subtype "RFC822", this contains the
  432.  encapsulated message
  433. unsigned long size.lines; size in lines
  434. unsigned long size.bytes; size in octets.  This MUST be set when
  435. composing a message if the encoding is
  436. ENC8BIT or ENCBINARY.
  437. char *md5; body content MD5 checksum
  438.      The following BODY information is used only by c-client
  439. internally.  The use of this data is driver-specific and it can not be
  440. relied-upon by applications.
  441. unsigned char *contents.text; drivers can store a pointer to the
  442.  body contents as text here.
  443. unsigned long size.ibytes; internal size of the body content (prior
  444.  to newline conversion, etc.) in octets
  445.      The MESSAGE structure is a parsed form of a MESSAGE/RFC822 MIME
  446. body part.  It contains the following information:
  447. ENVELOPE *env; encapsulated message RFC 822 header
  448. BODY *body; encapsulated message MIME structure
  449.      The following MESSAGE information is used only by c-client
  450. internally.  The use of this data is driver-specific and it can not be
  451. relied-upon by applications.
  452. char *hdr; encapsulated message header
  453. unsigned long hdrsize; message header size
  454. char *text; message in RFC 822 form
  455. unsigned long offset; offset of text from header
  456.      The PARAMETER structure is a parsed form of a linked list of
  457. attribute/value pairs.  It contains the following information:
  458. char *attribute; attribute name
  459. char *value; value
  460. PARAMETER *next; next parameter in list
  461.      The PART structure is a parsed form of a linked list of MIME body
  462. parts.  It contains the following information:
  463. BODY body; body information for this part
  464. PART *next; next body part
  465.      The following PART information is used only by c-client
  466. internally.  The use of this data is driver-specific and it can not be
  467. relied-upon by applications.
  468. unsigned long offset; offset from body origin
  469.     The NETMBX structure is a parsed form of a network mailbox name:
  470. char host[NETMAXHOST]; remote host name
  471. char user[NETMAXUSER]; remote user name if specified
  472. char mailbox[NETMAXMBX]; remote mailbox name
  473. char service[NETMAXSRV]; remote service name (IMAP4, NNTP, etc.)
  474. unsigned long port; TCP/IP port number if specified
  475. unsigned int anoflag : 1; anonymous access requested
  476. unsigned int dbgflag : 1; protocol debugging telemetry, via
  477.  mm_dlog(), requested
  478.      The STRINGLIST structure is a list of strings (which may have
  479. embedded NULs) and their lengths:
  480. char *text; string text
  481. unsigned long size; string length
  482. STRINGLIST *next; next string in list
  483.   String Structures
  484.      A string structure is analogous to a char*, and is used in some
  485. functions as an input argument.  It represents a string of data in a
  486. way that does not necessarily require the entire string to be in
  487. memory at once.  This is essential for small machines with
  488. highly-restricted memory limits (e.g. DOS).
  489.        String Structure Access
  490.      To use a string structure, the caller needs to know a string
  491. driver and needs to know the driver-dependent data used by that string
  492. structure.  A simple string driver is mail_string, a string driver
  493. that takes an in-memory char* string as the driver-dependent data.
  494. The DOS port uses string drivers that take a struct holding a file
  495. descriptor and a file offset.  Often the user of a string driver is
  496. the same module that defined it, so usually the programmer knows about
  497. its conventions.
  498.      The following calls are used to access a string structure:
  499. void INIT (STRING *s,STRINGDRIVER *d,void *data,unsigned long size);
  500. s pointer to the string structure to be initialized
  501. d pointer to the string driver
  502. data pointer to driver-dependent data, from which the
  503.  driver can determine string data
  504. size size of the string
  505.  This call initializes the string stucture.
  506. unsigned long SIZE (STRING *s);
  507. s pointer to the string structure
  508.  This call returns the number of characters remaining in the string
  509. after the current string character pointer.
  510. char CHR (STRING *s);
  511. s pointer to the string structure
  512.  This call returns the character at the current string character
  513. pointer.
  514. char SNX (STRING *s);
  515. s pointer to the string structure
  516.  This call returns the character at the current string character
  517. pointer, and increments the string character pointer.
  518. unsigned long GETPOS (STRING *s);
  519. s pointer to the string structure
  520. i new string pointer value
  521.  This returns the value of the current string character pointer.
  522. void SETPOS (STRING *s,unsigned long i);
  523. s pointer to the string structure
  524. i new string pointer value
  525.  This method sets the string character pointer to the given value.
  526.       String Structure Internals
  527.      A string structure holds the following data:
  528. void *data; used by the string driver as it likes
  529. unsigned long data1; used by the string driver as it likes
  530. unsigned long size; static, holds the total length of the string
  531.  from the INIT call
  532. char *chunk; current chunk of in-memory data; this is used
  533.  for buffering to avoid unnecessary calls to
  534.  the string driver's next method.
  535. unsigned long chunksize; size of an in-memory data chunk
  536. unsigned long offset; position of first character of the chunk in
  537.  the overall string
  538. char *curpos; current position; this is what CHR() will
  539.  access
  540. unsigned long cursize; number of characters remaining in the current
  541.  string
  542. STRINGDRIVER *dtb; the string driver for this string structure
  543.      A string structure is manipulated by a string driver, which has
  544. the following access methods:
  545. void (*init) (STRING *s,void *data,unsigned long size);
  546. s pointer to the string structure to be initialized
  547. data pointer to driver-dependent data, from which the
  548.  driver can determine string data
  549. size size of the string
  550.  This method initializes the string stucture.  It can use the data,
  551. data1, and chunksize values as it likes.  The remaining values must be
  552. set up as follows:
  553. size static, copied from the size argument
  554. chunk pointer to a buffer loaded with initial data
  555. chunksize size of the buffer
  556. offset 0
  557. curpos copied from chunk
  558. cursize copied from chunksize
  559. dtb STRINGDRIVER identity pointer
  560. char (*next) (STRING *s);
  561. s pointer to the string structure
  562.  This method returns the character at the current string character
  563. pointer, and increments the string character pointer.  This method
  564. is likely to call the setpos method if the desired character is not in
  565. the current chunk.
  566. void (*setpos) (STRING *s,unsigned long i);
  567. s pointer to the string structure
  568. i new string pointer value
  569.  This method sets the string character pointer to the given value.  If
  570. the pointer is not in the current chunk, then a new chunk is loaded
  571. and the associated values (chunk, offset, curpos, cursize) are
  572. adjusted accordingly.
  573.       c-client Support Functions
  574. void mail_string_init (STRING *s,void *data,unsigned long size);
  575. char mail_string_next (STRING *s);
  576. void mail_string_setpos (STRING *s,unsigned long i);
  577.      These three functions are the init, next, and setpos string
  578. structure access methods for the build-in mail_string string driver.
  579. mail_string is a basic string driver for a char* string.  See the
  580. documentation below on "String Structions" for more information.
  581. void mail_link (DRIVER *driver);
  582. driver pointer to the driver to be added
  583.      This function adds the specified driver to the list of mailbox
  584. drivers.  Initially there are no drivers lunk, so all programs which
  585. intend to use c-client need to have at least one call to this function.
  586.      A function which uses IMAP4 would have a statement such as:
  587. mail_link (&imapdriver); /* link in IMAP driver */
  588. early in the program's initialization.  Normally, this is done by the
  589. statement
  590. #include "linkage.c"
  591. which will include the "system standard driver linkage" defined when
  592. c-client was built.  By using linkage.c instead of explicit mail_link()
  593. calls, you are guaranteed that you will have a consistant linkage among
  594. all software built on this system.
  595. void auth_link (AUTHENTICATOR *auth);
  596. auth pointer to the authenticator to be added
  597.      This function adds the specified authenticator to the list of
  598. authenticators.  Initially there are no authenticators lunk.  Normally,
  599. this is done by linkage.c so you don't need to call this routine
  600. explicitly.
  601. void *mail_parameters (MAILSTREAM *stream,long function,void *value);
  602. stream stream to poll or NIL
  603. function function code
  604. value new value for function codes that change a parameter
  605.      This function fetches or changes the settings of various c-client
  606. operational parameters depending upon the function.  If the stream is
  607. specified, only the action for the underlying driver for that stream is
  608. taken; however, the scope of the operational parameters is global so
  609. there is generally no reason for the stream argument ever to be
  610. non-NIL.
  611.      The function codes ENABLE_DRIVER and DISABLE_DRIVER take a driver
  612. pointer as a value.  These functions enable and disable mailbox
  613. processing by that driver.  By default, all drivers are enabled.
  614.      The remaining the function codes are in a pair named GET_xxx to
  615. fetch an operational parameter and SET_xxx to set the parameter:
  616.  GET_DRIVERS / SET_DRIVERS
  617.  The list of currently lunk drivers.
  618.  GET_GETS / SET_GETS
  619.  If non-NIL, points to a function for reading message text.
  620. Defaults to NIL.
  621.  This function is called with three arguments; a function
  622. pointer to a "reading function", a stream for the reading
  623. function, and a size in octets.  The reading function is
  624. in turn called with the stream, a size in octets, and a
  625. pointer to a readin buffer.
  626.  This function returns with a char* string, which will be
  627. returned by the mail_fetchheader(), mail_fetchtext(), or
  628. mail_fetchbody() function which triggered the message text
  629. reading.
  630.  The purpose is to permit reading of large strings, without
  631. requiring an in-memory buffer for the entire string.  The idea
  632. is that this function can store the data in some form other
  633. than a char* (e.g. a temporary file) and the main program will
  634. recognize that it should get the text from there instead of
  635. from the results from mail_fetch....().
  636.  This is only supported on DOS and Win16; on other platforms it
  637. is inconsistant whether or not it works.
  638.  GET_CACHE / SET_CACHE
  639.  Points to the c-client cache manager function.  Defaults to
  640. mm_cache().
  641.  GET_SMTPVERBOSE / SET_SMTPVERBOSE
  642.  If non-NIL, points to a function that accepts a char* string.
  643. This function is called any time the SMTP routines receive a
  644. response code less than 100.  The argument is the text of the
  645. response code
  646.  GET_RFC822OUTPUT / SET_RFC822OUTPUT
  647.  If non-NIL, points to an alternate rfc822_output() function.
  648. rfc822_output() will call this function and return instead of
  649. doing its normal action.  See the description of
  650. rfc822_output() for more information.
  651.  GET_USERNAME / SET_USERNAME
  652.  The logged-in user name.
  653.  GET_HOMEDIR / SET_HOMEDIR
  654.  The home directory path name.
  655.  GET_LOCALHOST / SET_LOCALHOST
  656.  The local host name.
  657.  GET_SYSINBOX / SET_SYSINBOX
  658.  The "system INBOX" (where mail is delivered) path name.
  659.  GET_OPENTIMEOUT / SET_OPENTIMEOUT
  660.  TCP/IP open timeout in seconds.  Defaults to 0 (system
  661. default timeout, usually 75 seconds on Unix).
  662.  GET_READTIMEOUT / SET_READTIMEOUT
  663.  TCP/IP read timeout in seconds.  Defaults to 0 (no timeout).
  664.  GET_WRITETIMEOUT / SET_WRITETIMEOUT
  665.  TCP/IP write timeout in seconds.  Defaults to 0 (no timeout).
  666.  GET_CLOSETIMEOUT / SET_CLOSETIMEOUT
  667.  TCP/IP close timeout in seconds.  Defaults to 0 (no timeout).
  668.  GET_TIMEOUT / SET_TIMEOUT
  669.  If non-NIL, points to the function called when a TCP/IP
  670. timeout occurs.  This function is called with the number of
  671. seconds since the start of the TCP operation.  If it returns
  672. non-zero, the TCP/IP operation is continued; if it returns
  673. non-zero, the TCP/IP connection is aborted.
  674.  GET_RSHTIMEOUT / SET_RSHTIMEOUT
  675.  rsh connection timeout in seconds.  Defaults to 15 seconds.
  676.  GET_MAXLOGINTRIALS / SET_MAXLOGINTRIALS
  677.  The maximum number of login attempts permitted in an IMAP or
  678. POP connection.  Defaults to 3.
  679.  GET_LOOKAHEAD / SET_LOOKAHEAD
  680.  The number of subsequent envelopes prefetched in IMAP when an
  681. envelope is fetched.  Defaults to 20.
  682.  GET_IMAPPORT / SET_IMAPPORT
  683.  The IMAP port number.  Defaults to 143.
  684.  GET_PREFETCH / SET_PREFETCH
  685.  The number of envelopes prefetched in IMAP from the results
  686. of a SEARCH.  Defaults to 20.
  687.  GET_CLOSEONERROR / SET_CLOSEONERROR
  688.  If non-NIL, close an opening IMAP connection if the SELECT
  689. command fails instead of returning a half-open stream.
  690. Defaults to NIL.
  691.  GET_POP3PORT / SET_POP3PORT
  692.  The POP3 port number.  Defaults to 110.
  693.  GET_UIDLOOKAHEAD / SET_UIDLOOKAHEAD
  694.  The number of UIDs premapped when a message number is
  695. translated to a UID.  Defaults to 1000.
  696.  GET_MBXPROTECTION / SET_MBXPROTECTION
  697.  Default file protection for newly created mailboxes.
  698. Defaults to 0600.
  699.  GET_DIRPROTECTION / SET_DIRPROTECTION
  700.  Default file protection for newly created directories.
  701. Defaults to 0700.
  702.  GET_LOCKPROTECTION / SET_LOCKPROTECTION
  703.  Default file protection for locks.  Defaults to 0666.
  704. WARNING: don't blithely change this.  If other processes
  705. can't get access to a lock then they will have trouble in
  706. locking properly.
  707.  GET_FROMWIDGET / SET_FROMWIDGET
  708.  If non-NIL, APPEND in the Unix mbox format will insert a
  709. ">" character in front of all lines which begin with the
  710. string "From ".  If NIL, it will only do so if the entire
  711. line looks like a message delimiter (that is, the date is
  712. also in correct format).  Defaults to T.
  713.  GET_NEWSACTIVE / SET_NEWSACTIVE
  714.  Netnews active file path name.
  715.  GET_NEWSSPOOL / SET_NEWSSPOOL
  716.  Netnews spool directory path name.
  717.  GET_NEWSRC / SET_NEWSRC
  718.  Netnews newsgroup reading status file (.newsrc) path name.
  719.  GET_EXTENSION / SET_EXTENSION
  720.  If non-NIL, points to a string holding the extension for all
  721. mailbox files.  This is only supported on DOS and Win16.
  722.  GET_DISABLEFCNTLLOCK / SET_DISABLEFCNTLLOCK
  723.  If non-NIL, disables fcntl() locking on SVR4.  This is done
  724. if fcntl() tends to hang for no good reason.  Now that the
  725. fcntl() code checks for NFS files and no-ops the locking,
  726. this problem usually doesn't happen much any more.  Defaults
  727. to NIL.
  728.  GET_LOCKEACCESERROR / SET_LOCKEACCESERROR
  729.  If non-NIL, give a warning if an attempt to create a .lock
  730. file gets an EACCES ("Permission denied") error.  This usually
  731. means that somebody protected the system inbox directory (e.g.
  732. /var/mail) instead of making it public-write with the sticky
  733. bit.  Defaults to non-NIL, since this is usually bad news.
  734.  GET_LISTMAXLEVEL / SET_LISTMAXLEVEL
  735.  The maximum depth of recusion that LIST will go on a *
  736. wildcard.  Defaults to 20.
  737.  GET_ANONYMOUSHOME / SET_ANONYMOUSHOME
  738.  The anonymous use home directory name.
  739. typedef long (*readfn_t) (void *stream,unsigned long size,char *buffer);
  740. stream a designator suitable
  741. size a number of octets to read
  742. buffer a buffer of at least size octets for readin
  743.      This function reads the given number of octets into the buffer,
  744. using the given stream.  What sort of object the stream is depends upon
  745. the function and its caller, so you must make sure that the readfn is
  746. suitable for the caller's purpose.  Common uses include support of the
  747. mailgets function (see below) and of reading from local files on systems
  748. with limited address apce.
  749. typedef char *(*mailgets_t) (readfn_t f,void *stream,unsigned long size);
  750. f the readfn to use
  751. stream stream argument for the readfn
  752. size total number of octets to read
  753.      This is the argument to the SET_GETS mail_parameter() call.  This
  754. function must read size octets from the stream, using the readfn f.  It
  755. may call f multiple times to accomplish this; this will read the data in
  756. a serial fashion.  So, for example, if size is a megabyte and there is
  757. only 4K of available buffer space, it can call f 256 times to satisfy
  758. the request.  There is no way to back up in the reading, so any
  759. processing or saving of the data must be done when it is read.
  760.      The function mm_gets() in mail.c is a sample mailgets function; it
  761. reads the first MAXMESSAGESIZE of data into memory and discards the
  762. rest.
  763. typedef void *(*mailcache_t) (MAILSTREAM *stream,unsigned long msgno,long op);
  764. stream stream to cache manage
  765. msgno message to cache manage in the stream
  766. op cache management operation
  767.      This function manages the c-client cache.  Normally, a program will
  768. use the default c-client cache manager routine mm_cache().  However, a
  769. main program may want to supply its own cache manager, e.g. it may want
  770. to store the data on a disk file instead of in memory on DOS and Win16
  771. where memory is tight.
  772.      If you write your own cache manager, you need to examine the
  773. default mm_cache() manager closely, as well as paying close attention to
  774. what goes into an elt (a MESSAGECACHE element).  It is highly likely
  775. that if you roll elts out to disk, you will want to set stream->scache
  776. and *NOT* use long elts (because long elts have ENVELOPE and BODY
  777. pointers that you would have to know how to write to disk and read back).
  778.      The cache management functions are one of the following:
  779.  CH_INIT  Initialize the entire cache for the stream.  This is
  780. called only when creating a new stream or when freeing
  781. it.  The msgno argument is ignored.
  782.  CH_SIZE  Make sure that the cache is at least large enough to
  783. support msgno.  This is a request to grow the cache if
  784. necessary, not shrink it.
  785.  CH_MAKELELT  Return a long elt for msgno, creating it if necessary.
  786. This is the underlying support function for mail_lelt().
  787.  CH_LELT  Return the long elt for msgno, or NIL if it does not
  788. already exist.
  789.  CH_MAKEELT  Return an elt for msgno, creating it if necessary.
  790. This is the underlying support function for mail_elt().
  791.  CH_ELT  Return the elt for msgno, or NIL if it does not already
  792. exist.
  793.  CH_FREE  Free the [l]elt for msgno.
  794.  CH_EXPUNGE  Free the [l]elt for msgno, and reclaim its position.
  795. All subsequent elts are renumbered with their elt->msgno
  796. decremented by 1.  [Hence msgno+1 becomes msgno, etc.]
  797. This supports message expunging from the cache.
  798. typedef long (*tcptimeout_t) (long time);
  799. time total time spent since TCP operation started
  800.      This function is called when a TCP operation times out.  It is set
  801. by the SET_TIMEOUT mail_parameter().  The function can return non-zero
  802. to continue the TCP operation (e.g. after outputting a "do you still
  803. want to wait" prompt) or zero if it wants the TCP operation to abort and
  804. close.  If the TCP operation aborts, it will likely cause the upper
  805. level IMAP, SMTP, etc. stream to abort and close as well.
  806. DRIVER *mail_valid (MAILSTREAM *stream,char *mailbox,char *purpose);
  807. stream if non-NIL, stream to use for validation
  808. mailbox mailbox name to validate
  809. purpose filled in as xxx in "Can't xxx" in error messages
  810.      This function validates the given mailbox name.  It successful, it
  811. returns the driver that can open that name if successful, otherwise it
  812. returns NIL.  If stream is non-NIL, the mailbox name must be valid for
  813. the type of mailbox associated with that stream (e.g. an NNTP name can
  814. not be used with an IMAP stream).  If purpose is non-NIL, an error
  815. message is passed via mm_log() when an error occurs.
  816. DRIVER *mail_valid_net (char *name,DRIVER *drv,char *host,char *mailbox);
  817. name mailbox name to validate
  818. drv driver name to validate against
  819. host buffer to return host name if non-NIL
  820. mailbox buffer to return remote mailbox name if non-NIL
  821.      This function is an alternative to mail_valid_net_parse().  It
  822. validates the given mailbox name as a network name and makes sure that
  823. its service name is the same as the driver in drv.  If successful, it
  824. returns drv, and copies the host and mailbox strings as needed.
  825. Otherwise it returns NIL.
  826. long mail_valid_net_parse (char *name,NETMBX *mb);
  827. name mailbox name to parse
  828. mb pointer to NETMBX structure to return
  829.      This function parses a network mailbox name.  If the name is a
  830. network mailbox name, it returns non-NIL, with the NETMBX structure
  831. loaded with the results form the parse.
  832.        Mailbox Access Functions
  833. void mail_list (MAILSTREAM *stream,char *ref,char *pat);
  834. void mail_scan (MAILSTREAM *stream,char *ref,char *pat,char *contents);
  835. stream if non-NIL, stream to use
  836. ref mailbox reference string
  837. pat mailbox pattern string
  838. contents contents to search
  839.      This function returns a list of mailboxes via the mm_list()
  840. callback.  The reference is applied to the pattern in an implementation
  841. dependent fashion, and the resulting string is used to search for
  842. matching mailbox names.  "*" is a wildcard which matches zero or more
  843. characters; "%" is a variant which does not descend a hierarchy level.
  844. Read the IMAP specification for more information.
  845.      mail_scan() is a variant which takes a string to search for in the
  846. text of the mailbox.  The string is a free-text string, without regard
  847. for message boundaries, and thus the choice of strings must be made
  848. with care.
  849. void mail_lsub (MAILSTREAM *stream,char *ref,char *pat);
  850. stream if non-NIL, stream to use
  851. ref mailbox reference string
  852. pat mailbox pattern string
  853.      This function returns a list of subscribed mailboxes via the
  854. mm_lsub() callback.  The reference is applied to the pattern in an
  855. implementation dependent fashion, and the resulting string is used to
  856. search for matching mailbox names in the subscription list.  "*" is a
  857. wildcard which matches zero or more characters; "%" is a variant which
  858. does not descend a hierarchy level.  Read the IMAP specification for
  859. more information.
  860. long mail_subscribe (MAILSTREAM *stream,char *mailbox);
  861. stream if non-NIL, stream to use
  862. mailbox mailbox name
  863.      This function adds the given name to the subscription list.  It
  864. returns T if successful, NIL if unsuccessful.  If unsuccessful, an
  865. error message is returned via the mm_log() callback.
  866. long mail_unsubscribe (MAILSTREAM *stream,char *mailbox);
  867. stream if non-NIL, stream to use
  868. mailbox mailbox name
  869.      This function removes the given name from the subscription list.
  870. It returns T if successful, NIL if unsuccessful.  If unsuccessful, an
  871. error message is returned via the mm_log() callback.
  872. long mail_create (MAILSTREAM *stream,char *mailbox);
  873. stream if non-NIL, stream to use
  874. mailbox mailbox name
  875.      This function creates a mailbox with the given name.  It returns T
  876. if successful, NIL if unsuccessful.  If unsuccessful, an error message
  877. is returned via the mm_log() callback.
  878.      It is an error to create INBOX or a mailbox name which already
  879. exists.
  880. long mail_delete (MAILSTREAM *stream,char *mailbox);
  881. stream if non-NIL, stream to use
  882. mailbox mailbox name
  883.      This function deletes the named mailbox.  It returns T if
  884. successful, NIL if unsuccessful.  If unsuccessful, an error message is
  885. returned via the mm_log() callback.
  886.      It is an error to delete INBOX or a mailbox name which does not
  887. already exist.
  888. long mail_rename (MAILSTREAM *stream,char *old,char *newname);
  889. stream if non-NIL, stream to use
  890. old existing mailbox name
  891. newname new (not yet existing) mailbox name
  892.      This function renames the old mailbox to the new mailbox name.
  893. It returns T if successful, NIL if unsuccessful.  If unsuccessful, an
  894. error message is returned via the mm_log() callback.
  895.      It is an error to reanme a mailbox that does not exist, or rename
  896. a mailbox to a name that already exists.  It is permitted to rename
  897. INBOX; a new empty INBOX is created in its place.
  898. long mail_status (MAILSTREAM *stream,char *mbx,long flags);
  899. stream if non-NIL, stream to use
  900. mbx mailbox name
  901. flags option flags
  902.      This function returns the status of the given mailbox name via the
  903. mm_status() callback.  It returns T if successful, NIL if unsuccessful.
  904. If unsuccessful, an error message is returned via the mm_log()
  905. callback.
  906.      The options are a bit mask with one or more of the following,
  907. indicating the data which should be returned.
  908. SA_MESSAGES number of messages in the mailbox
  909. SA_RECENT number of recent messages in the mailbox
  910. SA_UNSEEN number of unseen messages in the mailbox
  911. SA_UIDNEXT next UID value to be assigned
  912. SA_UIDVALIDITY UID validity value
  913.      Note that, depending upon implementation, some of these values may
  914. be more costly to get than others.  For example, calculating the
  915. number of unseen messages may require opening the mailbox and scanning
  916. all of the message flags.  A mail_status() call should thus be used
  917. with option flags specifying only the data that is actually needed.
  918. MAILSTREAM *mail_open (MAILSTREAM *oldstream,char *name,long options);
  919. oldstream if non-NIL, stream to recycle
  920. name mailbox name to open
  921. options option flags.
  922.      This function opens the mailbox and if successful returns a stream
  923. suitable for use by the other MAIL functions.
  924.      If oldstream is non-NIL, an attempt is made to reuse oldstream as
  925. the stream for this mailbox; this is useful when you want to open
  926. another mailbox to the same IMAP or NNTP server without having to open
  927. a new connection.  Doing this will close the previously open mailbox.
  928.      The options are a bit mask with one or more of the following:
  929. OP_DEBUG Log IMAP protocol telemetry through mm_debug()
  930. OP_READONLY Open mailbox read-only.
  931. OP_ANONYMOUS Don't use or update a .newsrc file for news.
  932. OP_SHORTCACHE Don't cache envelopes or body structures
  933. OP_SILENT Don't pass mailbox events (internal use only)
  934. OP_PROTOTYPE Return the "prototype stream" for the driver
  935.  associated with this mailbox instead of
  936.  opening the stream
  937. OP_HALFOPEN For IMAP and NNTP names, open a connection
  938.  to the server but don't open a mailbox.
  939. OP_EXPUNGE Silently expunge the oldstream before recycling
  940.  NIL is returned if this function fails for any reason.
  941. MAILSTREAM *mail_close (MAILSTREAM *stream);
  942. MAILSTREAM *mail_close_full (MAILSTREAM *stream,long options);
  943. stream stream to close
  944. options option flags
  945.      This function closes the MAIL stream and frees all resources
  946. associated with it that it may have created (subject to any handles
  947. existing).
  948.      The options for mail_close_full() are a bit mask with one or more
  949. of the following:
  950. CL_EXPUNGE Silently expunge before closing
  951.      This function always returns NIL, so it can be used as:
  952. stream = mail_close (stream);
  953.    Handle Functions
  954.      Handles are used when an entity that wishes to access the stream
  955. may survive the stream without knowing that it outlived it.  For
  956. example, an object reading a message may have a handle to a stream,
  957. but the message selection object that spawned it (and which owns the
  958. stream) may have gone away.  A stream can be closed or recycled while
  959. handles are pointing at it, but it is not completely freed until all
  960. handles are gone.  A stream may have an arbitrary number of handles.
  961. MAILHANDLE *mail_makehandle (MAILSTREAM *stream);
  962. stream stream to make handle to
  963.      This function creates and returns a handle to the stream.
  964. void mail_free_handle (MAILHANDLE **handle);
  965. handle pointer to handle to release
  966.      This function frees the handle and notifies the stream that it has
  967. one fewer handle.  If this is the last handle on the stream and the
  968. stream has been closed, then the stream is freed.
  969. MAILSTREAM *mail_stream (MAILHANDLE *handle);
  970. handle handle to look up
  971.      This function returns the stream associated with the handle if and
  972. only if the stream still represents the same MAIL connection associated
  973. with the handle.  Otherwise, NIL is returned (meaning that there is no
  974. active stream associated with this handle).
  975.     Message Data Fetching Functions
  976. [Note!!  There is an important difference between a "sequence" and a
  977.  "msgno".  A sequence is a string representing one or more messages in
  978.  IMAP4-style sequence format ("n", "n:m", or combination of these
  979.  delimited by commas), whereas a msgno is an int representing a single
  980.  message.] 
  981. void mail_fetchfast (MAILSTREAM *stream,char *sequence);
  982. void mail_fetchfast_full (MAILSTREAM *stream,char *sequence,long flags);
  983. stream stream to fetch on
  984. sequence IMAP-format set of message sequence numbers
  985. flags option flags
  986.      This function causes a cache load of all the "fast" information
  987. (internal date, RFC 822 size, and flags) for the given sequence.  Since
  988. all this information is also fetched by mail_fetchstructure(), this
  989. function is generally not used unless the OP_SHORTCACHE option in the
  990. mail_open() call is used.
  991.      The options for mail_fetchfast_full() are a bit mask with one or
  992. more of the following:
  993. FT_UID The sequence argument contains UIDs instead of
  994.  sequence numbers
  995. void mail_fetchflags (MAILSTREAM *stream,char *sequence);
  996. void mail_fetchflags_full (MAILSTREAM *stream,char *sequence,long flags);
  997.      This function causes a fetch of the flags for the given sequence.
  998. This main reason for using this function is to update the flags in the
  999. local cache in case some other process changed the flags (multiple
  1000. simultaneous write access is allowed to the flags) as part of a "check
  1001. entire mailbox" (as opposed to "check for new messages") operation.
  1002.  The options for mail_fetchflags_full() are a bit mask with one or more
  1003. of the following:
  1004. FT_UID The sequence argument contains UIDs instead of
  1005.  sequence numbers
  1006. ENVELOPE *mail_fetchenvelope (MAILSTREAM *stream,unsigned long msgno);
  1007. ENVELOPE *mail_fetchstructure (MAILSTREAM *stream,unsigned long msgno,
  1008.        BODY **body);
  1009. ENVELOPE *mail_fetchstructure_full (MAILSTREAM *stream,unsigned long msgno,
  1010.     BODY **body,long flags);
  1011. stream stream to fetch on
  1012. msgno message sequence number
  1013. body pointer to where to return BODY structure if non-NIL
  1014. flags option flags
  1015.      This function causes a fetch of all the structured information
  1016. (envelope, internal date, RFC 822 size, flags, and body structure) for
  1017. the given msgno and, in the case of IMAP, up to MAPLOOKAHEAD (a
  1018. parameter in IMAP2.H) subsequent messages which are not yet in the
  1019. cache.  No fetch is done if the envelope for the given msgno is already
  1020. in the cache.  The ENVELOPE and the BODY for this msgno is returned.
  1021. It is possible for the BODY to be NIL, in which case no information is
  1022. available about the structure of the message body.
  1023.      The options for mail_fetchstructure_full() are a bit mask with one
  1024. or more of the following:
  1025. FT_UID The msgno argument is a UID 
  1026.      This is the primary function for fetching non-text information
  1027. about messages, and should be called before any attempt to reference
  1028. cache information about this message via mail_elt().
  1029. char *mail_fetchheader (MAILSTREAM *stream,unsigned long msgno);
  1030. char *mail_fetchheader_full (MAILSTREAM *stream,unsigned long msgno,
  1031.      STRINGLIST *lines,unsigned long *len,long flags);
  1032. stream stream to fetch on
  1033. msgno message sequence number
  1034. lines list of header lines to fetch
  1035. len returned length in octets
  1036. flags option flags
  1037.      This function causes a fetch of the complete, unfiltered RFC 822
  1038. format header of the specified message as a text string and returns
  1039. that text string.
  1040.      If the lines argument is non-NIL, it contains a list of header
  1041. field names to use in subsetting the header text.  Only those lines
  1042. which have that header field name are returned, unless FT_NOT is set in
  1043. which case only those lines which do not have that header field name
  1044. are returned.
  1045.      If the len argument is non-NIL, it holds a pointer in which the
  1046. length of the string in octets is returned.  This is useful in cases
  1047. where there may be an embedded null in the string.
  1048.      This function always returns a valid string pointer; if no header
  1049. exists or if it can not be fetched (e.g. by a deceased IMAP stream) an
  1050. empty string is returned.
  1051.      The options for mail_fetchheader_full() are a bit mask with one or
  1052. more of the following:
  1053. FT_UID The msgno argument is a UID 
  1054. FT_NOT The returned header lines are those that are
  1055.  not in the lines argument
  1056. FT_INTERNAL The return string is in "internal" format,
  1057.  without any attempt to canonicalize to CRLF
  1058.   newlines
  1059. FT_PREFETCHTEXT The RFC822.TEXT should be pre-fetched at the
  1060.  same time.  This avoids an extra RTT on an
  1061.  IMAP connection if a full message text is
  1062.  desired (e.g. in a "save to local file"
  1063.  operation)
  1064.  
  1065. char *mail_fetchtext (MAILSTREAM *stream,unsigned long msgno);
  1066. char *mail_fetchtext_full (MAILSTREAM *stream,unsigned long msgno,
  1067.    unsigned long *len,long flags);
  1068. stream stream to fetch on
  1069. msgno message sequence number
  1070. len returned length in octets
  1071. flags option flags
  1072.      This function causes a fetch of the non-header text of the
  1073. specified message as a text string and returns that text string.  No
  1074. attempt is made to segregate individual body parts.
  1075.      If the len argument is non-NIL, it holds a pointer in which the
  1076. length of the string in octets is returned.  This is useful in cases
  1077. where there may be an embedded null in the string.
  1078.      This function always returns a valid string pointer; if no header
  1079. exists or if it can not be fetched (e.g. by a deceased IMAP stream) an
  1080. empty string is returned.
  1081.       The options for mail_fetchtext_full() are a bit mask with one or
  1082. more of the following:
  1083. FT_UID The msgno argument is a UID 
  1084. FT_PEEK Do not set the Seen flag if it not already set
  1085. FT_INTERNAL The return string is in "internal" format,
  1086.  without any attempt to canonicalize to CRLF
  1087.   newlines
  1088. char *mail_fetchbody (MAILSTREAM *stream,unsigned long msgno,char *sec,
  1089.       unsigned long *len);
  1090. char *mail_fetchbody_full (MAILSTREAM *stream,unsigned long msgno,char *sec,
  1091.    unsigned long *len,long flags);
  1092. stream stream to fetch on
  1093. msgno message sequence number
  1094. sec section specifier
  1095. len returned length in octets
  1096. flags option flags
  1097.       This function causes a fetch of the particular section of the
  1098. body of the specified message as a text string and returns that text
  1099. string.  The section specification is a string of integers delimited by
  1100. period which index into a body part list as per the IMAP4
  1101. specification.  Body parts are not decoded by this function; see
  1102. rfc822_base64() and rfc822_quotedprintable().
  1103.      If the len argument is non-NIL, it holds a pointer in which the
  1104. length of the string in octets is returned.  This is useful in cases
  1105. where there may be an embedded null in the string.
  1106.       This function may return NIL on error.
  1107.       The options for mail_fetchbody_full() are a bit mask with one or
  1108. more of the following:
  1109. FT_UID The msgno argument is a UID 
  1110. FT_PEEK Do not set the Seen flag if it not already set
  1111. FT_INTERNAL The return string is in "internal" format,
  1112.  without any attempt to canonicalize to CRLF
  1113.   newlines
  1114. unsigned long mail_uid (MAILSTREAM *stream,unsigned long msgno);
  1115. stream stream to fetch on
  1116. msgno message sequence number
  1117.       This function returns the UID for the given message sequence
  1118. number.
  1119. void mail_fetchfrom (char *s,MAILSTREAM *stream,unsigned long msgno,
  1120.      long length);
  1121. s destination string
  1122. stream stream to fetch on
  1123. msgno message sequence number
  1124. length maximum field length
  1125.      This function writes a "from" string of the specified length for
  1126. the specified message, suitable for display to the user in a menu line,
  1127. into the string pointed to by s.
  1128.       If the personal name of the first address in the envelope's from
  1129. item is non-NIL, it is used; otherwise a string is created by appending
  1130. the mailbox of the first address, an "@", and the host of the first
  1131. address.  The string is trimmed or padded with trailing spaces as
  1132. necessary to make its length match the length argument.
  1133. void mail_fetchsubject (char *s,MAILSTREAM *stream,unsigned long msgno,
  1134. long length);
  1135. s destination string
  1136. stream stream to fetch on
  1137. msgno message sequence number
  1138. length maximum field length
  1139.       This function returns a "subject" string of the specified length
  1140. for the specified message, suitable for display to the user in a menu
  1141. line.
  1142.        The envelope's subject item is copied and trimmed as necessary
  1143. to make its length be no more what the caller requested.  Unlike
  1144. mail_fetchfrom(), this function can return a string of shorter length
  1145. than what the caller requested.
  1146. LONGCACHE *mail_lelt (MAILSTREAM *stream,unsigned long msgno);
  1147. MESSAGECACHE *mail_elt (MAILSTREAM *stream,unsigned long msgno);
  1148. stream stream to access
  1149. msgno message sequence number
  1150.      This function returns the cache entry for the specified message.
  1151. Although it will create a cache entry if it does not already exist,
  1152. that functionality is for internal use only.  This function should
  1153. never be called without having first called mail_fetchfast() or
  1154. mail_fetchstructure() on the message first.
  1155.      A cache entry holds the internal date/time, flags, and RFC 822
  1156. size of a message.  It holds other data as well, but that is for
  1157. internal use only.
  1158.      mail_lelt() is a variant that returns a `long' cache entry, which
  1159. consists of an cache entry (as a structure, not a pointer), an envelope
  1160. pointer, and a body pointer.  This is used in conjunction with the elt
  1161. lock count functionality, to allow an application to associate the
  1162. cached envelope and body of a message with an open window even if the
  1163. message is subsequently expunged or if the stream is closed.
  1164.      Unless your application wants to look at cached envelopes and
  1165. bodies even after the message is expunged or the stream is closed, it
  1166. should not use mail_lelt().  Instead, it should use a returned elt from
  1167. mail_elt() and use the elt->msgsno as the argument to
  1168. mail_fetchstructure().
  1169. BEWARE: the behavior of mail_lelt() is undefined if the
  1170. stream is open with OP_SHORTCACHE.  mail_lelt() is extremely
  1171. special purpose, and should only be used in sophisticated
  1172. special purpose applications after discussing its use with
  1173. the c-client author.  If you think you need this function,
  1174. you are probably mistaken.  In almost all cases, you should
  1175. use mail_elt() and mail_fetchstructure() instead.
  1176.  Message Status Manipulation Functions
  1177. void mail_setflag (MAILSTREAM *stream,char *sequence,char *flag);
  1178. void mail_setflag_full (MAILSTREAM *stream,char *sequence,char *flag,
  1179. long flags);
  1180. stream stream to use
  1181. sequence IMAP-format set of message sequence numbers
  1182. flag IMAP-format flag string
  1183. flags option flags
  1184.     This function causes a store to add the specified flag to the flags
  1185. set for the messages in the specified sequence.  If there is any
  1186. problem in setting flags, a message will be passed to the application
  1187. via the mm_log() facility.
  1188.      The options for mail_setflag_full() are a bit mask with one or
  1189. more of the following:
  1190. ST_UID The sequence argument contains UIDs instead of
  1191.  sequence numbers
  1192. ST_SILENT Do not update the local cache with the new
  1193.  value of the flags.  This is useful to save
  1194.  network bandwidth, at the cost of invalidating
  1195.  the cache.
  1196. void mail_clearflag (MAILSTREAM *stream,char *sequence,char *flag);
  1197. void mail_clearflag_full (MAILSTREAM *stream,char *sequence,char *flag,
  1198.   long flags);
  1199. stream stream to use
  1200. sequence IMAP-format set of message sequence numbers
  1201. flag IMAP-format flag string
  1202. flags option flags
  1203.      This function causes a store to delete the specified flag from the
  1204. flags set for the messages in the specified sequence.  If there is any
  1205. problem in clearing flags, a message will be passed to the application
  1206. via the mm_log() facility.
  1207.      The options for mail_setflag_full() are a bit mask with one or
  1208. more of the following:
  1209. ST_UID The sequence argument contains UIDs instead of
  1210.  sequence numbers
  1211. ST_SILENT Do not update the local cache with the new
  1212.  value of the flags.  This is useful to save
  1213.  network bandwidth, at the cost of invalidating
  1214.  the cache.
  1215.    Mailbox Searching
  1216. void mail_search (MAILSTREAM *stream,char *criteria);
  1217. void mail_search_full (MAILSTREAM *stream,char *charset,SEARCHPGM *pgm,
  1218.        long flags);
  1219. stream stream to search
  1220. charset MIME character set to use when searching strings
  1221. pgm search program
  1222. flags option flags
  1223.      This function causes a mailbox search, using the given MIME
  1224. charset (NIL means the default, US-ASCII) and the given search program.
  1225. A search program is a structure that holds the following data:
  1226. SEARCHSET *msgno; a set of message sequence numbers
  1227. SEARCHSET *uid; a set of unique identifiers
  1228. SEARCHOR *or; OR result of two search programs
  1229. SEARCHPGMLIST *not; AND result of list of NOT'ed search programs
  1230. SEARCHHEADER *header; message headers
  1231. STRINGLIST *bcc; string(s) appear in bcc list
  1232. STRINGLIST *body; string(s) appear in message body text
  1233. STRINGLIST *cc; string(s) appear in cc list
  1234. STRINGLIST *from; string(s) appear in from
  1235. STRINGLIST *keyword; user flag string(s) set
  1236. STRINGLIST *unkeyword; user flag strings() not set
  1237. STRINGLIST *subject; string(s) appear in subject
  1238. STRINGLIST *text; string(s) appear in message header or body
  1239. STRINGLIST *to; string(s) appear in to list
  1240. unsigned long larger; larger than this many octets
  1241. unsigned long smaller; smaller than this many octes
  1242. The following dates are in form:
  1243. ((year - BASEYEAR) << 9) + (month << 5) + day
  1244. unsigned short sentbefore;
  1245. sent before this date
  1246. unsigned short senton; sent on this date
  1247. unsigned short sentsince;
  1248. sent since this date
  1249. unsigned short before; received before this date
  1250. unsigned short on; received on this date
  1251. unsigned short since; received since this date
  1252. unsigned int answered : 1;
  1253. message answered
  1254. unsigned int unanswered : 1;
  1255. message not answered
  1256. unsigned int deleted : 1;
  1257. message deleted
  1258. unsigned int undeleted : 1;
  1259. message not deleted
  1260. unsigned int draft : 1; message is a draft
  1261. unsigned int undraft : 1;
  1262. message is not a draft
  1263. unsigned int flagged : 1;
  1264. message flagged as urgent
  1265. unsigned int unflagged : 1;
  1266. message not flagged as urgent
  1267. unsigned int recent : 1;
  1268. message recent since last parse of mailbox
  1269. unsigned int old : 1; message not recent since last parse of mailbox
  1270. unsigned int seen : 1; message read
  1271. unsigned int unseen : 1;
  1272. message not read
  1273.      The following auxillary structures are used by search programs:
  1274. SEARCHHEADER: header line searching
  1275. char *line; header line field name
  1276. char *text; text header line
  1277. SEARCHHEADER *next; next SEARCHHEADER in list (AND'ed)
  1278. SEARCHSET: message number set
  1279. unsigned long first; first number in set
  1280. unsigned long last; if non-zero, last number in set
  1281. SEARCHSET *next; next SEARCHSET in list (AND'ed)
  1282. SEARCHOR: two search programs, OR'ed together
  1283. SEARCHPGM *first; first program
  1284. SEARCHPGM *second; second program
  1285. SEARCHOR *next; next SEARCHOR in list
  1286. SEARCHPGMLIST: list of search programs
  1287. SEARCHPGM *pgm; search program (AND'd with others in list)
  1288. SEARCHPGMLIST *next; next SEARCHPGM in list
  1289.      mail_search(), the older interface, accepts a search criteria
  1290. argument as a character string in IMAP2 (RFC-1176) format.  Do not try
  1291. to use any IMAP4 search criteria with this interface.
  1292.      The application's mm_searched() function is called for each
  1293. message that matches the search criteria.  In addition, after the
  1294. search is completed, the "fast" information (see mail_fetchfast_full()
  1295. and envelopes of the searched messages are fetched (this is called
  1296. pre-fetching).
  1297.      If there is any problem in searching, a message will be passed to
  1298. the application via the mm_log() facility.
  1299.      The flags for mail_search_full() are a bit mask with one or more
  1300. of the following:
  1301. SE_UID Return UIDs instead of sequence numbers
  1302. SE_FREE Return the search program to free storage after
  1303.  finishing
  1304. SE_NOPREFETCH Don't prefetch searched messages.
  1305. unsigned long *mail_sort (MAILSTREAM *stream,char *charset,SEARCHPGM *spg,
  1306.   SORTPGM *pgm,long flags);
  1307. stream stream to sort
  1308. charset MIME character set to use when sorting strings
  1309. spg search program
  1310. pgm sort program
  1311. flags option flags
  1312.      This function is a variant of mail_search_full().  It accepts an
  1313. additional argument, a sort program, which specifies one or more sort
  1314. rules to be applied to the result.  If the searching and sorting are
  1315. successful, it returns a 0-terminated vector of message sequence
  1316. numbers (or UIDs if SE_UID is set).  This vector is created out of
  1317. free storage, and must be freed with fs_give() when finished with it.
  1318.      A sort program is a structure that holds the following data:
  1319. unsigned int reverse : 1;
  1320. reverse sorting of this key
  1321. short function; sort rule, one of the following:
  1322. SORTDATE message Date
  1323. SORTARRIVAL arrival date
  1324. SORTFROM mailbox in first From address
  1325. SORTSUBJECT message Subject
  1326. SORTTO mailbox in first To address 
  1327. SORTCC mailbox in first cc address 
  1328. SORTSIZE size of message in octets
  1329. SORTPGM *next; next sort program to be applied if two or more
  1330.  messages collate identically with this rule
  1331.      The flags for mail_search_full() are a bit mask with one or more
  1332. of the following:
  1333. SE_UID Return UIDs instead of sequence numbers
  1334. SE_FREE Return the search program to free storage after
  1335.  finishing
  1336. SE_NOPREFETCH Don't prefetch searched messages.
  1337. SO_FREE Return the sort program to free storage after
  1338.  finishing
  1339.       Miscellaneous Mailbox and Message Functions
  1340. long mail_ping (MAILSTREAM *stream);
  1341. stream string to ping
  1342.      The function pings the stream to see if it is still active.  It may
  1343. discover new mail; this is the preferred method for a periodic "new mail
  1344. check" as well as a "keep alive" for servers which have an inactivity
  1345. timeout.  It returns T if the stream is still alive, NIL otherwise.
  1346.      If new mail is found, the application's mm_exists() function is
  1347. called with the newly-determined number of messages in the mailbox.
  1348. void mail_check (MAILSTREAM *stream);
  1349. stream stream to checkpoint
  1350.       This function causes a mailstore-defined checkpoint of the
  1351. mailbox.  This may include such things as a writeback to disk, a check
  1352. for flag changes in a shared mailbox, etc.  It is not a "check for new
  1353. mail"; mail_ping() performs this function (as potentially does any other
  1354. function).  The status of the check is passed to the application via the
  1355. mm_log() facility.
  1356. void mail_expunge (MAILSTREAM *stream);
  1357. stream string to expunge
  1358.      This function causes an expunge (permanent removal of messages
  1359. which are marked as deleted) of the mailbox.  The application's
  1360. mm_expunged() function is called for each message that has been
  1361. expunged.  The application's mm_exists() function is called at the start
  1362. and end of the expunge to ensure synchronization.  The status of the
  1363. expunge is passed to the application via the mm_log() facility.
  1364.       Note that the decrementing of msgno's for subsequent messages
  1365. happens immediately; for example, if three consequtive messages starting
  1366. at msgno 5 are expunged, mm_expunged() will be called with a msgno of 5
  1367. three times.
  1368. long mail_copy (MAILSTREAM *stream,char *sequence,char *mailbox);
  1369. long mail_move (MAILSTREAM *stream,char *sequence,char *mailbox);
  1370. long mail_copy_full (MAILSTREAM *stream,char *sequence,char *mailbox,
  1371.      long options);
  1372. stream stream to copy
  1373. sequence IMAP-format set of message numbers
  1374. mailbox destination mailbox name
  1375. options option flags
  1376.      This function causes the messages in the specified sequence to be
  1377. copied to the specified mailbox.  T is returned if the copy is
  1378. successful.  mail_move() is equivalent to setting CP_MOVE in the options.
  1379.      If there is any problem in copying, a message will be passed to
  1380. the application via the mm_log() facility and the function returns NIL.
  1381. No copying is actually done in this case.
  1382.       Note that the mailbox must be on the same host as the stream and
  1383. is a mailbox of the type of the source mailbox only.
  1384.      The flags for mail_search_full() are a bit mask with one or more
  1385. of the following:
  1386. CP_UID The sequence argument contains UIDs instead of
  1387.  sequence numbers
  1388. CP_MOVE Delete the messages from the current mailbox
  1389.  after copying to the destination.
  1390. long mail_append (MAILSTREAM *stream,char *mailbox,STRING *message);
  1391. long mail_append_full (MAILSTREAM *stream,char *mailbox,char *flags,char *date,
  1392.        STRING *message);
  1393. stream stream to use if non-NIL (in the IMAP case)
  1394. mailbox destination mailbox name
  1395. flags flags to set on message if non-NIL
  1396. date internal date (received date) to set on message if non-NIL
  1397. message string structure of message to write
  1398.      This function writes the message in the string structure to the
  1399. destination mailbox, along with the flags and date if specified.  This
  1400. is useful in those cases where you can't use mail_copy(), e.g. when
  1401. copying from one server to another; you can always fetch the message
  1402. and then mail_append() it to the destination.  It may also be useful
  1403. for maintaining an outbox of your outgoing mail.
  1404. void mail_gc (MAILSTREAM *stream,long gcflags);
  1405. stream stream to GC if non-NIL (else GC's all streams)
  1406. flags option flags
  1407.       This function garbage collects (purges) the cache of entries of
  1408. a specific type.  Some drivers do not allow purging of particular
  1409. cache types, and an attempt to do so is ignored.
  1410.       The flags for mail_gc() are a bit mask with one or more of the
  1411. following:
  1412. GC_ELT message cache elements
  1413. GC_ENV ENVELOPEs and BODYs
  1414. GC_TEXTS cached texts
  1415.      Date/Time Handling Functions
  1416. char *mail_date (char *string,MESSAGECACHE *elt);
  1417. string destination string
  1418. elt message cache element containing date
  1419.       This function accepts a message cache element that contains date
  1420. information, and writes an IMAP-4 date string, that is, one in form:
  1421. dd-mmm-yyyy hh:mm:ss +zzzz
  1422. based upon the data in the elt.  The destination string must be large
  1423. enough to hold this string.
  1424. char *mail_cdate (char *string,MESSAGECACHE *elt);
  1425. string destination string
  1426. elt message cache element containing date
  1427.       This function accepts a message cache element that contains date
  1428. information, and writes a ctime() format date string, that is, one in
  1429. form:
  1430. www mmm dd hh:mm:ss yyyyn
  1431. based upon the data in the elt.  The destination string must be large
  1432. enough to hold this string.
  1433. long mail_parse_date (MESSAGECACHE *elt,char *string);
  1434. elt message cache element to store parsed date
  1435. string source date string
  1436.       This function parses the date/time stored in the given string,
  1437. in format:
  1438. [www,] date [[hh:mm[:ss][-zzz| +zzzz]
  1439. where the date can be any of:
  1440. mm/dd/yy, mm/dd/yyyy, dd-mmm-yy, dd-mmm-yyyy, dd mmm yy, dd mmm yyyy
  1441. and stores the result of the parse in the elt.  If the parse is
  1442. successful, T is returned, else NIL.
  1443. unsigned long mail_longdate (MESSAGECACHE *elt);
  1444. elt message cache element containing date.
  1445.       This function accepts a message cache element that contains date
  1446. information, and returns the number of days since the base time of the
  1447. imap-4 toolkit.  At present, this is the same as the Unix time() value
  1448. for that date/time, and hence can be used for functions such as utime().
  1449.   Utility Functions
  1450. void mail_debug (MAILSTREAM *stream);
  1451. stream stream to debug
  1452.       This function enables telemetry logging for this stream.  All
  1453. telemetry is passed to the application via the mm_dlog() facility.
  1454. void mail_nodebug (MAILSTREAM *stream);
  1455. stream stream to disable debugging
  1456.      This function disables telemetry logging for this stream.
  1457. long mail_sequence (MAILSTREAM *stream,char *sequence);
  1458. stream stream to set the sequence bits
  1459. sequence IMAP-format message set string
  1460.      This function parses the given sequence string for message
  1461. numbers, sets the sequence bit in the stream's message cache element
  1462. of all messages in the sequence (and turns it off in all other message
  1463. cache elements).  If the parse is successful, T is returned, else NIL.
  1464. long mail_uid_sequence (MAILSTREAM *stream,char *sequence);
  1465. stream stream to set the sequence bits
  1466. sequence IMAP-format message set string
  1467.      This function parses the given sequence string for unique
  1468. identifiers, sets the sequence bit in the stream's message cache
  1469. element of all messages in the sequence (and turns it off in all other
  1470. message cache elements).  If the parse is successful, T is returned,
  1471. else NIL.
  1472. long mail_parse_flags (MAILSTREAM *stream,char *flag,unsigned long *uf);
  1473. stream stream (used to get user flags)
  1474. flag IMAP-format flag string to parse
  1475. uf returned location of user flags
  1476.      The function parses the given flag string, and returns the system
  1477. flags as its return value and the user flags in the location pointed
  1478. to by the uf argument.  If there is an error in parse, a log message
  1479. is issued via mm_log() and this function returns NIL.
  1480. unsigned long mail_filter (char *text,unsigned long len,STRINGLIST *lines,
  1481.    long flags);
  1482. text RFC 822 text to filter
  1483. len length in octets in the text argument
  1484. lines string list of header file names to filter
  1485. flags option flags
  1486.      This function supports the header lines filtering function of
  1487. mail_fetchheader_full().  The lines argument contains a list of header
  1488. field names to use in subsetting the header text.  Only those lines
  1489. which have that header field name are returned, unless FT_NOT is set
  1490. in which case only those lines which do not have that header field
  1491. name are returned.
  1492.      The options for mail_filter() are a bit mask with one or more of
  1493. the following:
  1494. FT_NOT The returned header lines are those that are
  1495.  not in the lines argument
  1496. long mail_search_msg (MAILSTREAM *stream,unsigned long msgno,char *charset,
  1497.       SEARCHPGM *pgm);
  1498. stream stream to search
  1499. msgno message number of message to inspect
  1500. charset character set of search strings
  1501. pgm search program to test
  1502.      This function implements mail_search_full() locally in cases when
  1503. it is not done by a server (e.g. local mail files, NNTP/POP).  It
  1504. inspects the given message on that stream to see if it matches the
  1505. criteria or not.  If it matches, T is returned, else NIL.
  1506. SEARCHPGM *mail_criteria (char *criteria);
  1507. criteria IMAP2-format search criteria string
  1508.      This function accepts an IMAP2-format search criteria string and
  1509. parses it.  If the parse is successful, it returns a search program
  1510. suitable for use in mail_search_full().
  1511. WARNING: This function does not accept IMAP4 search criteria.
  1512. The source string must be writeable (this restriction was also
  1513. in the old IMAP2 c-client).
  1514.    Data Structure Instantiation/Destruction functions
  1515.      These functions are used to obtain structures from free storage and
  1516. to release them.
  1517. ENVELOPE *mail_newenvelope (void);
  1518. ADDRESS *mail_newaddr (void);
  1519. BODY *mail_newbody (void);
  1520. BODY *mail_initbody (BODY *body);
  1521. PARAMETER *mail_newbody_parameter (void);
  1522. PART *mail_newbody_part (void);
  1523. STRINGLIST *mail_newstringlist (void);
  1524. SEARCHPGM *mail_newsearchpgm (void);
  1525. SEARCHHEADER *mail_newsearchheader (char *line);
  1526. SEARCHSET *mail_newsearchset (void);
  1527. SEARCHOR *mail_newsearchor (void);
  1528. SEARCHPGMLIST *mail_newsearchpgmlist (void);
  1529. SORTPGM *mail_newsortpgm (void);
  1530.      These functions, all named mail_new...(), create a new structure of
  1531. the given type and initialize all of its elements to zero or empty.
  1532. void mail_free_body (BODY **body);
  1533. void mail_free_body_parameter (PARAMETER **parameter);
  1534. void mail_free_body_part (PART **part);
  1535. void mail_free_cache (MAILSTREAM *stream);
  1536. void mail_free_elt (MESSAGECACHE **elt);
  1537. void mail_free_lelt (LONGCACHE **lelt);
  1538. void mail_free_envelope (ENVELOPE **env);
  1539. void mail_free_address (ADDRESS **address);
  1540. void mail_free_stringlist (STRINGLIST **string);
  1541. void mail_free_searchpgm (SEARCHPGM **pgm);
  1542. void mail_free_searchheader (SEARCHHEADER **hdr);
  1543. void mail_free_searchset (SEARCHSET **set);
  1544. void mail_free_searchor (SEARCHOR **orl);
  1545. void mail_free_searchpgmlist (SEARCHPGMLIST **pgl);
  1546. void mail_free_sortpgm (SORTPGM **pgm);
  1547.      These functions, all named mail_free_...(), take a pointer to a
  1548. structure pointer, free all contained strings and structures within the
  1549. structure, and finally free the structure itself and set its pointer to
  1550. NIL.  For example, mail_free_envelope() frees all the ADDRESS structures
  1551. contained in the envelope.
  1552.      Normally, mail_free_elt() and mail_free_lelt() are used only if the
  1553. main program has a private pointer to cache elements.  If so, it is
  1554. expected to increment the cache element's lockcount when it makes a
  1555. private pointer, and to call this function when it is finished with it.
  1556.        Authentication Functions
  1557. char *mail_auth (char *mechanism,authresponse_t resp,int argc,char *argv[]);
  1558. mechanism authentication mechanism name
  1559. resp callback function for providing responses
  1560. argc main() function argc value
  1561. argv main() function argv value
  1562.      This server function searches the list of authenticators that was
  1563. established by auth_link() for an authenticator with the given name.  If
  1564. an authenticator is found, authentication is initialized.  The function
  1565. pointed to by resp is called as the authenticator requires responses.
  1566. AUTHENTICATOR *mail_lookup_auth (unsigned int i);
  1567. i position in authenticator list
  1568.      This function returns the nth authenticator in the list, where n is
  1569. the value of it.
  1570. unsigned int mail_lookup_auth_name (char *mechanism);
  1571. mechanism authentication mechanism name
  1572.      This function searches the list of authenticators for an
  1573. authenticator with the given name, and returns its position in the
  1574. authenticator list.
  1575.      The functions below are provided by c-client client drivers or by
  1576. servers to support the protocol-dependent parts of authentication.
  1577. typedef void *(*authchallenge_t) (void *stream,unsigned long *len);
  1578. stream stream to read challenge
  1579. len pointer to returned length in octets
  1580.      This driver function is called by an authenticator to read a
  1581. challenge from the given protocol stream in a protocol-dependent way.
  1582. It returns that challenge in binary and its length in octets to the
  1583. authenticator.
  1584. typedef long (*authrespond_t) (void *stream,char *s,unsigned long size);
  1585. stream stream to send response
  1586. s response string
  1587. size length of response string in octets
  1588.      This driver function is called by an authenticator to send a
  1589. challenge response to the given stream in a protocol-dependent way.
  1590. It returns T if successful, NIL if failure.
  1591. typedef char *(*authresponse_t) (void *challenge,unsigned long clen,
  1592.  unsigned long *rlen);
  1593. challenge challenge string
  1594. clen length of challenge string in octets
  1595. rlen pointer to returned length of response string
  1596.      This server function is called with a challenge string of clen
  1597. octets.  It sends, according to whatever protocol (IMAP, POP, etc.) it
  1598. uses, and returns the received response and response length in octets.
  1599. typedef long (*authclient_t) (authchallenge_t challenger,
  1600.       authrespond_t responder,NETMBX *mb,void *s,
  1601.       unsigned long trial);
  1602. challenger pointer to protocol-dependent challenge reader function
  1603. responder pointer to protocol-dependent response sender function
  1604. mb NETMBX struct of the mailbox desired to open
  1605. s stream for protocol-dependent routines to use
  1606. trial number of authentication attempts remaining
  1607.      This client authenticator function negotiates reading challenges
  1608. and sending responses for a particular authenticator (Kerberos, etc.)
  1609. over the protocol, and returns T if authenticated or NIL if failed.
  1610. typedef char *(*authserver_t) (authresponse_t responder,int argc,char *argv[]);
  1611. responder pointer to protocol-dependent responder function
  1612. argc main() function argc value
  1613. argv main() function argv value
  1614.     This server authenticator function negotiates sending challenges and
  1615. reading responses for a particular authenticator (Kerberos, etc.), and
  1616. returns either the authenticated user name or NIL if authentication
  1617. failed.
  1618.        Network Access Functions
  1619.      These functions provide a layer of indirection between the TCP
  1620. routines and upper level routines.  This makes it possible to insert
  1621. additional code (e.g. privacy or checksum handling).
  1622. NETSTREAM *net_open (char *host,char *service,unsigned long port);
  1623. host host name
  1624. service contact service name
  1625. port contact port number
  1626.      This function opens a TCP connection to the given host and service
  1627. or port.
  1628. NETSTREAM *net_aopen (NETMBX *mb,char *service,char *usrbuf);
  1629. NETMBX parsed mailbox specification
  1630. service stream to open (at present, only /etc/rimapd is used)
  1631. usrbuf buffer to return login user name
  1632.      This function attempts to open a preauthenticated connection to the
  1633. given mailbox and service.  It will return the login user name of the
  1634. preauthenticated connection, as well as an open network stream, if
  1635. successful.
  1636. char *net_getline (NETSTREAM *stream);
  1637. stream network stream to read
  1638.      This routine reads a text line from the stream.  It calls
  1639. stream->dtb->getline, which normally points to tcp_getline() but can be
  1640. set to some other function.
  1641. long net_getbuffer (void *stream,unsigned long size,char *buffer);
  1642. stream network stream to read
  1643. size length of data in octets
  1644. buffer buffer of at least size octets
  1645.      This routine reads data from the stream.  It calls
  1646. stream->dtb->getbuffer, which normally points to tcp_getbuffer() but can
  1647. be set to some other function.
  1648. long net_soutr (NETSTREAM *stream,char *string);
  1649. stream network stream to write
  1650. string null-terminated string to output
  1651.      This routine writes a null-terminated string to the stream.  It
  1652. calls stream->dtb->soutr, which normally points to tcp_soutr() but can
  1653. be set to some other function.
  1654. long net_sout (NETSTREAM *stream,char *string,unsigned long size);
  1655. stream network stream to write
  1656. string string to output
  1657. size length of string in octets
  1658.      This routine writes a string of length size to the stream.  It
  1659. calls stream->dtb->sout, which normally points to tcp_sout() but can be
  1660. set to some other function.
  1661. void net_close (NETSTREAM *stream);
  1662. stream stream to close
  1663.      This routine closes the stream.  It calls stream->dtb->close, which
  1664. normally points to tcp_close() but can point to some other function.
  1665. char *net_host (NETSTREAM *stream);
  1666. stream stream to inspect
  1667.      This routine returns the remote host name of the stream.  It calls
  1668. stream->dtb->host, which normally points to tcp_host() but can point
  1669. to some other function.
  1670. unsigned long net_port (NETSTREAM *stream);
  1671. stream stream to inspect
  1672.      This routine returns the remote port number of the stream.  It calls
  1673. stream->dtb->port, which normally points to tcp_port() but can point
  1674. to some other function.
  1675. char *net_localhost (NETSTREAM *stream);
  1676. stream stream to inspect
  1677.      This routine returns the local host name of the stream.  It calls
  1678. stream->dtb->localhost, which normally points to tcp_localhost() but can
  1679. point to some other function.
  1680.   Subscription Management Functions
  1681. long sm_subscribe (char *mailbox);
  1682. mailbox mailbox name to subscribe
  1683.      This function adds the given mailbox name to the local subscription
  1684. list, and returns T if successful, NIL if failure.
  1685. long sm_unsubscribe (char *mailbox);
  1686. mailbox mailbox name to unsubscribe
  1687.      This function removes the given mailbox name from the local
  1688. subscription list, and returns T if successful, NIL if failure.
  1689. char *sm_read (void **sdb);
  1690. sdb data to use in subsequent calls, or NIL if first call
  1691.      This function returns the local subscription list as null
  1692. terminated strings.  Each call returns the next element in the list.
  1693. The first call should be with sdb pointing to a NIL pointer; this will
  1694. be filled in for subsequent calls.  At the last call, NIL will be
  1695. returned.
  1696.     Miscellaneous Utility Functions
  1697. char *ucase (char *string);
  1698. string string to convert
  1699.      This function converts each lowercase character of the specified
  1700. string to uppercase and returns the string.
  1701. char *lcase (char *string);
  1702. string string to convert
  1703.      This function converts each uppercase character of the specified
  1704. string to lowercase and returns the string.
  1705. char *cpystr (char *string);
  1706. string string to copy
  1707.  This function makes a copy of the string from free storage and returns
  1708. the copy.
  1709. long find_rightmost_bit (long *valptr);
  1710. valptr pointer to value to search
  1711.       This function returns -1 if the 32-bit value pointed to by valptr
  1712. is non-zero, otherwise it returns the bit number (0 = LSB, 31 = MSB) of
  1713. the right-most bit in that value.  This is used to convert from the bits
  1714. in the cache's userflags item to an index into the stream's userFlags
  1715. array of flag texts.
  1716. long min (long i,long j);
  1717. i first argument
  1718. j second argument
  1719.       This function returns the minimum of the two integers.
  1720. long max (long i,long j);
  1721. i first argument
  1722. j second argument
  1723.      This function returns the maximum of the two integers.
  1724. long search (char *s,long c,char *pat,long patc);
  1725. s string to search
  1726. c size of string
  1727. pat pattern to search in string
  1728. patc size of pattern
  1729.       This function does a fast case-independent search for the given
  1730. pattern in pat (length patc) in base string s, and returns T if the
  1731. pattern is found in the string.
  1732. long pmatch (char *s,char *pat,delim);
  1733. long pmatch_full (char *s,char *pat,delim);
  1734. s string to match
  1735. pat wildcard (* and %) to match in pattern
  1736. delim hierarchy delimiter
  1737.       This function returns T if the given wildcard pattern matches the
  1738. string in s with hierarchy delimiter delim.  Otherwise NIL is returned.
  1739. long dmatch (char *s,char *pat,char delim);
  1740. s string to match
  1741. pat wildcard (* and %) to match in pattern
  1742. delim hierarchy delimiter
  1743.      This function returns T if the given wildcard pattern matches the
  1744. directory.  If not, then none of the elements in the directory are
  1745. considered for recursive checking with pmatch_full().
  1746.      SMTP Functions
  1747. SMTPSTREAM *smtp_open (char **hostlist,long debug);
  1748. hostlist vector of SMTP server host names to try
  1749. debug non-zero if want protocol telemetry debugging
  1750.       This function opens an SMTP connection to a one of the hosts in the
  1751. host list and if successful returns a stream suitable for use by the
  1752. other SMTP functions.  The hosts are tried in order until a connection is
  1753. successfully opened.  If debug is non-NIL, protocol telemetry is logged
  1754. via mm_dlog().  NIL is returned if this function fails to open a
  1755. connection to any of the hosts in the list.
  1756. void smtp_close (SMTPSTREAM *stream);
  1757. stream stream to close
  1758.      This function closes the SMTP stream and frees all resources
  1759. associated with it that it may have created.
  1760. long smtp_mail (SMTPSTREAM *stream,char *type,ENVELOPE *msg,BODY *body);
  1761. stream stream to transmit mail
  1762. type mail type (MAIL, SEND, SAML, SOML)
  1763. msg message envelope
  1764. body message body
  1765.       This function negotiates an SMTP transaction of the specified type
  1766. (one of "MAIL", "SEND", "SAML", or "SOML") to deliver the specified
  1767. message.  This function returns T if success or NIL if there is any
  1768. failure.  The text reason for the failure is in stream->reply item; if
  1769. it is associated with a recipient it is also in that address'
  1770. address->error item.
  1771. void smtp_debug (SMTPSTREAM *stream);
  1772. stream stream to enable debugging telemetry
  1773.       This function enables SMTP protocol telemetry logging for this
  1774. stream.  All SMTP protocol operations are passed to the application via
  1775. the mm_dlog() facility.
  1776. void smtp_nodebug (SMTPSTREAM *stream);
  1777. stream stream to disable debugging telemetry
  1778.       This function disables SMTP protocol telemetry logging for this
  1779. stream.
  1780. typedef void (*smtpverbose_t) (char *buffer);
  1781. buffer pointer to verbose reply buffer
  1782.      This is the argument to the SET_SMTPVERBOSE mail_parmameter() call.
  1783. If this function pointer is non-NIL, then if a verbose SMTP response
  1784. (with SMTP code less than 100) is received, this function is called with
  1785. that response text as its argument.
  1786.      NNTP Functions
  1787. NNTPSTREAM *nntp_open (char **hostlist,long debug);
  1788. hostlist vector of NNTP server host names to try
  1789. debug non-zero if want protocol telemetry debugging
  1790.       This function opens an NNTP connection to a one of the hosts in the
  1791. host list and if successful returns a stream suitable for use by the
  1792. other MTP functions.  The hosts are tried in order until a connection is
  1793. successfully opened.  If debug is non-NIL, protocol telemetry is logged
  1794. via mm_dlog().  NIL is returned if this function fails to open a
  1795. connection to any of the hosts in the list.
  1796. void nntp_close (NNTPSTREAM *stream);
  1797. stream stream to close
  1798.      This function closes the NNTP stream and frees all resources
  1799. associated with it that it may have created.
  1800. long nntp_mail (NNTPSTREAM *stream,ENVELOPE *msg,BODY *body);
  1801. stream stream to transmit mail
  1802. msg message envelope
  1803. body message body
  1804.       This function negotiates an NNTP posting transaction to deliver
  1805. the specified news message.  This function returns T if success or NIL
  1806. if there is any failure.  The text reason for the failure is in
  1807. stream->reply item; if it is associated with a recipient it is also in
  1808. that address' address->error item.
  1809.       RFC 822 Support Functions
  1810.      Although rfc822.c contains several additional functions besides
  1811. these, only the functions documented here should be used by
  1812. applications.  The other functions are for internal use only.
  1813. void rfc822_header (char *header,ENVELOPE *env,BODY *body);
  1814. header buffer to write RFC 822 header
  1815. env message ENVELOPE (used to obtain RFC 822 information)
  1816. body message BODY (used to obtain MIME information)
  1817.      This function writes an RFC 822 format header into header based
  1818. on the information in the envelope and body.  The header buffer must
  1819. be large enough to contain the full text of the resulting header.
  1820. void rfc822_write_address (char *dest,ADDRESS *adr);
  1821. dest buffer to write address list
  1822. adr RFC 822 ADDRESS list
  1823.      This function writes an RFC 822 format address list into dest
  1824. based on the information in adr.  The dest buffer must be large enough
  1825. to contain the full text of the resulting address list.
  1826. void rfc822_parse_msg (ENVELOPE **en,BODY **bdy,char *s,unsigned long i,
  1827.        STRING *b,char *host,char *tmp);
  1828. en destination pointer where message ENVELOPE will be stored
  1829. bdy destination pointer where message BODY will be stored
  1830. s RFC 822 header to parse (character string)
  1831. i length of RFC 822 header
  1832. b stringstruct of message body
  1833. host default host name if an address lacks an @host.
  1834. temp scratch buffer, must be long enough to hold unwound
  1835.  header lines (a buffer that is i octets long is OK)
  1836.      This function parses the RFC 822 header pointed to by s with body
  1837. pointed to by string structure b into the specified destination
  1838. envelope and body pointers, using host as the default host name and
  1839. tmp as a scratch buffer.  New ENVELOPE and BODY structures are
  1840. created; when finished with them the application must free them with
  1841. mail_free_envelope() and mail_free_body().  Any parsing errors are
  1842. noted via the mm_log() mechanism using log type PARSE.
  1843. void rfc822_parse_adrlist (ADDRESS **lst,char *string,char *host);
  1844. lst destination pointer where ADDRESS will be stored
  1845. string string of addresses to parse
  1846. host default host name if an address lacks an @host.
  1847.      This function parses the address list in the given string into an
  1848. address list in lst.  Any addresses missing a host name are have the
  1849. host name defaulted from the host argument.  If the destination list
  1850. is non-empty it appends the new addresses to the list.  Any parsing
  1851. errors are noted via the mm_log() mechanism using log type PARSE.
  1852. long rfc822_output (char *t,ENVELOPE *env,BODY *body,soutr_t f,void *s,
  1853.     long ok8bit);
  1854. t scratch buffer, large enough to hold message header
  1855. env message ENVELOPE
  1856. body message BODY
  1857. f I/O function to write to
  1858. s stream for I/O function f
  1859. ok8bit non-zero if OK to output 8-bit data
  1860.      This function writes the message described with the given
  1861. envelope and body.  Any body part contents of type ENCBINARY is
  1862. converted to ENCBASE64 before sending.  If ok8bit is NIL, any message
  1863. data of type ENC8BIT is converted to ENCQUOTEDPRINTABLE before
  1864. sending; if ok8bit is non-NIL then ENC8BIT data is sent as-is.  T is
  1865. returned if the function succeeds, else NIL is returned.
  1866.      The function f is typically net_soutr(), but it can be any
  1867. function which matches
  1868.   typedef long (*soutr_t) (void *stream,char *string);
  1869. where stream holds sufficient information to enable the output routine
  1870. to know where to output to, and the string is a null-terminated string
  1871. to output.  This function returns either T or NIL, and that value is
  1872. passed up to rfc822_output() for its return.
  1873. void *rfc822_base64 (char *src,unsigned long srcl,unsigned long *len);
  1874. src source string
  1875. srcl size of source string in octets
  1876. len pointer to where destination string length in octets
  1877.  will be returned
  1878.      This function decodes a BASE64 body part given a source string
  1879. and its length.  The decoded body part as a sequence of binary octets
  1880. is returned, and its length is returned in len.
  1881. char *rfc822_qprint (char *src,unsigned long srcl,unsigned long *len);
  1882. src source string
  1883. srcl size of source string in octets
  1884. len pointer to where destination string length in octets
  1885.  will be returned
  1886.      This function decodes a QUOTED-PRINTABLE body part given a source
  1887. string and its length.  The decoded body part as an 8-bit character
  1888. string is returned, and its length is returned in len.
  1889.      Operating System-Dependent Public Interface
  1890.      These functions are in OS-dependent code, and are rewritten each
  1891. time c-client is ported to a new operating system.
  1892. void rfc822_date (char *date);
  1893. date buffer to write the date, must be large enough
  1894.      This function is called to get the current date and time in an
  1895. RFC 822 format string into the given buffer.
  1896. void *fs_get (size_t size);
  1897. size number of octets requested
  1898.       This function allocates and returns a block of free storage of
  1899. the specified size.  Unlike malloc(), there is no failure return; this
  1900. function must return with the requested storage.
  1901. void fs_resize (void **block,size_t size);
  1902. block pointer to pointer to block to be resized
  1903. size new size in octets
  1904.      This function resizes the free storage block, updating the
  1905. pointer if necessary.  Unlike realloc(), there is no failure return;
  1906. this function must return with the requested storage.
  1907. void fs_give (void **block);
  1908. block pointer to pointer to block to free
  1909.       This function releases a block of free storage allocated by
  1910. fs_get().  It also erases the block pointer, so it isn't necessary to
  1911. do this in the application.
  1912. void fatal (char *string);
  1913. string message string
  1914.       This function is called when an "impossible" error is detected
  1915. and the client wishes to crash.  The string should contain a reason.
  1916. char *strcrlfcpy (char **dst,long *dstl,char *src,long srcl);
  1917. dst pointer to destination string pointer
  1918. dstl pointer to destination string size
  1919. src source strin
  1920. srcl source string size
  1921.       This function is called to copy into a destination string dst of
  1922. size dstl (resized if necessary), a CRLF newline form string from
  1923. local format string src of size srcl.
  1924. TCPSTREAM *tcp_open (char *host,long port);
  1925. TCPSTREAM *tcp_aopen (char *host,char *service);
  1926. char *tcp_getline (TCPSTREAM *stream);
  1927. long tcp_getbuffer (TCPSTREAM *stream,long size,char *buffer);
  1928. long tcp_soutr (TCPSTREAM *stream,char *string);
  1929. void tcp_close (TCPSTREAM *stream);
  1930. char *tcp_host (TCPSTREAM *stream);
  1931. unsigned long tcp_port (TCPSTREAM *stream);
  1932. char *tcp_localhost (TCPSTREAM *stream);
  1933.      These functions are TCP-specific versions of the more general
  1934. net_xxx() functions.  These should not be called directly by
  1935. applications.
  1936. char *tcp_clienthost (char *dst);
  1937. dst destination string buffer
  1938.      This function should be called only by a server called by inetd
  1939. or similar mechanism which maps standard input to a network socket.
  1940. It returns the host name of the other end (e.g. the client of a
  1941. server) using the given string buffer, or NIL if it can't get this
  1942. information.
  1943. Main Program Callbacks
  1944.      All applications which use the c-client must have the following
  1945. callbacks to handle events from c-client.  Note that in any callback
  1946. which involves a mail stream, the stream is locked and you can not
  1947. recursively call c-client from the callback.  This may also be true in
  1948. callbacks which do not have a stream; in general, the rule is "do not
  1949. call c-client, especially any mail_xxx() function, from a c-client
  1950. callback".
  1951. void mm_flags (MAILSTREAM *stream,unsigned long number);
  1952. stream stream where event happened
  1953. number message number
  1954.      This function is called when c-client manipulates the flags for
  1955. the given message number.  This alerts the application that it may
  1956. need to inspect that message's flags to see if there are any
  1957. interesting changes.
  1958. void mm_status (MAILSTREAM *stream,char *mailbox,MAILSTATUS *status);
  1959. stream stream where event happened
  1960. mailbox mailbox name for this status
  1961. status MAILSTATUS structure with message status
  1962.      This function is called when c-client reports status of a mailbox
  1963. (generally as the result of a mail_status() function call).  The
  1964. returned MAILSTATUS structure has the following members:
  1965. long flags; validity flags.  These are the same as
  1966.  the SA_xxx option flags in the
  1967.  mail_status() call, and they indicate
  1968.  which of the other members of the
  1969.  MAILSTATUS structure have usable data
  1970.  (i.e. if SA_MESSAGES is not set, do
  1971.  not believe status->messages!!).
  1972. unsigned long messages; number of messages if SA_MESSAGES
  1973. unsigned long recent; number of recent messages if SA_RECENT
  1974. unsigned long unseen; number of unseen messages if SA_UNSEEN
  1975. unsigned long uidnext; next UID to be assigned if SA_UIDNEXT
  1976. unsigned long uidvalidity; UID validity value if SA_UIDVALIDITY
  1977. void mm_searched (MAILSTREAM *stream,unsigned long number);
  1978. stream stream where event happened
  1979. number message number
  1980.      This function is called to notify the main program that this
  1981. message number matches a search (generally as the result of a
  1982. mail_search_full() function call).
  1983. void mm_exists (MAILSTREAM *stream,unsigned long number);
  1984. stream stream where event happened
  1985. number message number
  1986.      This function is called to notify the main program that there are
  1987. this many messages in the mailbox.  It is also used to notify the main
  1988. program of new mail, by announcing a higher number than the main
  1989. program was previously aware.
  1990. void mm_expunged (MAILSTREAM *stream,unsigned long number);
  1991. stream stream where event happened
  1992. number message number
  1993.      This function is called to notify the main program that this
  1994. message number has been expunged from the mail file and that all
  1995. subsequent messages are now referenced by a message number one less
  1996. than before.  This implicitly decrements the number of messages in the
  1997. mailbox.
  1998. void mm_list (MAILSTREAM *stream,char delim,char *name,long attrib);
  1999. stream stream where event happened
  2000. delim hierarchy delimiter
  2001. name mailbox name
  2002. attrib mailbox attributes
  2003.      This function is called to notify the main program that this
  2004. mailbox name matches a mailbox listing request (generally as the
  2005. result of a mail_list() function call).  The hierarchy delimiter is a
  2006. character that separates out levels of hierarchy in mailbox names.
  2007. The attributes are a bit mask with one of the following:
  2008. LATT_NOINFERIORS
  2009. it is not possible for there to be any
  2010.  hierarchy inferiors to this name (that is,
  2011.  this name followed by the hierarchy delimiter
  2012.  and additional name characters).
  2013. LATT_NOSELECT this is not a mailbox name, just a hierarchy
  2014.  level, and it may not be opened by mail_open()
  2015. LATT_MARKED this mailbox may have recent messages
  2016. LATT_UNMARKED this mailbox does not have any recent messages
  2017. void mm_lsub (MAILSTREAM *stream,char delim,char *name,long attrib);
  2018. stream stream where event happened
  2019. delim hierarchy delimiter
  2020. name mailbox name
  2021. attrib mailbox attributes
  2022.      This function is called to notify the main program that this
  2023. mailbox name matches a subscribed mailbox listing request (generally
  2024. as the result of a mail_lsub() function call).  The hierarchy
  2025. delimiter is a character that separates out levels of hierarchy in
  2026. mailbox names.  The attributes are a bit mask with one of the
  2027. following:
  2028. LATT_NOINFERIORS
  2029. it is not possible for there to be any
  2030.  hierarchy inferiors to this name (that is,
  2031.  this name followed by the hierarchy delimiter
  2032.  and additional name characters).
  2033. LATT_NOSELECT this is not a mailbox name, just a hierarchy
  2034.  level, and it may not be opened by mail_open()
  2035. LATT_MARKED this mailbox may have recent messages
  2036. LATT_UNMARKED this mailbox does not have any recent messages
  2037. void mm_notify (MAILSTREAM *stream,char *string,long errflg);
  2038. stream stream where event happened
  2039. string message string
  2040. errflg message error level
  2041.      This function is called to deliver a stream-oriented message
  2042. event.  This is the mechanism by which any IMAP response codes for any
  2043. application (e.g. TRYCREATE) are delivered to the application.
  2044. No newline is included in the string, so this function has to output
  2045. its own.
  2046.      The message error level is one of the following:
  2047. NIL normal operation.  The text is `babble' that may be
  2048. interesting to the user, e.g. the greeting message
  2049. from a server.
  2050. WARN A warning event.  This event should be displayed to
  2051. the user.  Examples: a mailbox rewrite failed because
  2052. of disk full, but the previous mailbox contents were
  2053. recovered.
  2054. ERROR An error event.  This event should be displayed to
  2055. the user, or at least logged someplace.  This type of
  2056. error shouldn't happen, and so should be called to the
  2057. attention of support staff.  Whatever happened has
  2058. probably disrupted the user's work.  Examples: an
  2059. untagged BAD from an IMAP server.
  2060. void mm_log (char *string,long errflg);
  2061. string message string
  2062. errflg message error level
  2063.       This function is called to deliver a log message.  No newline is
  2064. included in the string, so this function has to output its own.  In
  2065. general, it is intended that these messages are logged someplace, and
  2066. possibly shown to the user.
  2067.      The message error level is one of the following:
  2068. NIL normal operation.  The text is `babble' that may be
  2069. interesting to the user, e.g. "Expunged 3 messages".
  2070. PARSE An RFC 822 parsing error.  Since bogus headers are
  2071. all-too-common in the real world, these can often be
  2072. ignored on the "garbage in, garbage out" princple.
  2073. However, since surprising results can be yielded when
  2074. trying to parse garbage, this message should be logged
  2075. somewhere so it can be figured out what happened.
  2076. WARN A warning event.  This event should be displayed to
  2077. the user.  It occurs when an error condition has
  2078. happened, but c-client knows what to do to recover.
  2079. Examples: "Can't open read-write, so opening
  2080. read-only", "Empty mailbox", "Login failed, try
  2081. again", "Waiting for mailbox to become unlocked",
  2082. "IMAP protocol error".  Although a user should be
  2083. told about a warning, it's generally not necessary
  2084. to interrupt the flow of her work (e.g. it's alright
  2085. to display the warning in a scrolling window, but
  2086. not necessary to require the user to do anything).
  2087. ERROR An error event.  This event should be displayed to
  2088. the user, or at least logged someplace.  This is a
  2089. serious error condition occured that aborted the
  2090. requested operation and possibly also aborted the mail
  2091. stream.  This ranges from normal error conditions such
  2092. as "Can't open mailbox", "too many login failures, go
  2093. away" to bizarre conditions such as "Apparent new mail
  2094. appeared in the mailbox that doesn't look like mail,
  2095. program aborting".  Errors must be called to the
  2096. user's attention, and probably should require some
  2097. sort of acknowledgement (e.g. answering a modal panel)
  2098. before the application proceeds.
  2099. void mm_dlog (char *string);
  2100. string message string
  2101.       This function is called to deliver a debugging telemetry
  2102. message.  No newline is included in the string, so this function has
  2103. to output its own.  This is called only when debugging is enabled.
  2104. void mm_login (NETMBX *mb,char *user,char *pwd,long trial);
  2105. mb parsed mailbox specification
  2106. user pointer to where to return user name
  2107. pwd pointer to where to return password
  2108. trial number of prior login attempts
  2109.       This function is called to get a user name and password for the
  2110. given network mailbox.  It stores the user name and password in the
  2111. strings pointed to by the appropriate arguments.  The trial argument
  2112. is the number of attempts to perform the login and is initially zero
  2113. (e.g. for a default username and password login functionality).  It is
  2114. incremented for each subsequent trial until the maximum number of
  2115. trials are made.
  2116. void mm_critical (MAILSTREAM *stream);
  2117. stream stream where event happened
  2118.       This function is called to alert the application that c-client
  2119. is about to run some critical code on that stream that may result in a
  2120. clobbered mail file if it is interrupted.  It may be desirable to
  2121. disable CTRL/C, etc. during this time.
  2122. void mm_nocritical (MAILSTREAM *stream);
  2123. stream stream where event happened
  2124.       This function is called to alert the application that c-client
  2125. is no longer running critical code on that stream that may result in a
  2126. clobbered mail file if it is interrupted.
  2127. long mm_diskerror (MAILSTREAM *stream,long errcode,long serious);
  2128. stream stream where event happened
  2129. errcode OS error code for disk error
  2130. serious non-zero if c-client can not undo the operation (and
  2131.  thus must retry to avoid mail file damage)
  2132.       This function is called to alert the application that the
  2133. c-client has encountered an unrecoverable write error when trying to
  2134. update the mail file.  errcode contains the system error code.  If
  2135. serious is non-zero, then it is probable that the disk copy of the
  2136. mailbox has been damaged.
  2137.      The return value from this function is the abort flag; if serious
  2138. is zero and the abort flag is non-zero, the operation is aborted.  If
  2139. the abort flag is zero or if serious was non-zero, a return from this
  2140. function will retry the failing operation.
  2141. void mm_fatal (char *string);
  2142. string message string
  2143.       This function is called from the fatal() routine in the
  2144. operating system code to notify the main program that it is about to
  2145. crash.  The string contains a reason.  At the very minimum, the main
  2146. program should do something like
  2147.  mm_log (string,ERROR);
  2148. and then return.  No newline is included in the string, so this
  2149. function has to output its own.
  2150.      Driver interface
  2151.      When writing a new driver for the c-client, you must provide a
  2152. DRIVER stucture giving a dispatch vector between MAIL and the driver.
  2153. The DRIVER dispatch vector is described in mail.h.
  2154. char *name;
  2155.      Name by which the driver is known to c-client.
  2156. unsigned long flags;
  2157.      Attribute flags for this driver:
  2158. DR_DISABLE This driver is currently disabled.
  2159. DR_LOCAL This driver deals with local mailboxes; if
  2160.  this is off it deals with mailboxes over a
  2161.  network.
  2162. DR_MAIL This driver supports e-mail messages.
  2163. DR_NEWS This driver supports netnews messages
  2164. DR_READONLY This driver only allows read-only access;
  2165.  mail_setflag(), mail_expunge(), etc. are
  2166.  no-ops.
  2167. DR_NOFAST This driver does not implement mail_fetchfast()
  2168.  in a fast way (e.g. it may have to fetch the
  2169.  entire message text over a network to
  2170.  calculate sizes).
  2171. DR_NAMESPACE This driver accepts and uses namespace format
  2172.  names.
  2173. DR_LOWMEM This driver is designed for systems with very
  2174.  limited amounts of memory (e.g. DOS) and
  2175.  support routines called by this driver should
  2176.  try not to use much memory.
  2177. DRIVER *next;
  2178.      Pointer to the next driver which this application supports (or NIL if
  2179. this is the last driver).  Drivers are lunk together via the mail_link()
  2180. function.
  2181. DRIVER *driver_valid (char *mailbox);
  2182.      This function returns a pointer to the driver's DRIVER dispatch
  2183. vector iff this driver accepts the given name as a valid mailbox for this
  2184. driver.  Otherwise, it returns the value of the next driver's
  2185. driver_valid() or NIL if there is no next driver.  In other words, calling
  2186. driver_valid() for the first driver will return the driver dispatch vector
  2187. for the driver which supports this type of mailbox.
  2188. void *driver_parameters (long function,void *value);
  2189.      This function implements mail_parameters() for this driver.
  2190. void driver_scan (MAILSTREAM *stream,char *ref,char *pat,char *contents);
  2191.      This function implements mail_scan() for this driver.
  2192. void driver_list (MAILSTREAM *stream,char *ref,char *pat);
  2193.      This function implements mail_list() for this driver.
  2194. void driver_lsub (MAILSTREAM *stream,char *ref,char *pat);
  2195.      This function implements mail_lsub() for this driver.
  2196. long driver_subscribe (MAILSTREAM *stream,char *mailbox);
  2197.      This function implements mail_subscribe() for this driver.
  2198. long driver_unsubscribe (MAILSTREAM *stream,char *mailbox);
  2199.      This function implements mail_unsubscribe() for this driver.
  2200. long driver_create (MAILSTREAM *stream,char *mailbox);
  2201.      This function implements mail_create() for this driver.
  2202. long driver_delete (MAILSTREAM *stream,char *mailbox);
  2203.      This function implements mail_delete() for this driver.
  2204. long driver_rename (MAILSTREAM *stream,char *old,char *new);
  2205.      This function implements mail_rename() for this driver.
  2206. long driver_status (MAILSTREAM *stream,char *mailbox,long flags);
  2207.      This function implements mail_status() for this driver.
  2208. MAILSTREAM *driver_open (MAILSTREAM *stream);
  2209.      This function opens the mailbox identified by the given stream.  It
  2210. may use the data on the stream and create additional data on stream->local
  2211. as necessary.  It should return the given stream unless it failed to open
  2212. the mailbox, in which case it should return NIL.
  2213. void driver_close (MAILSTREAM *stream,long options);
  2214.      This function implements mail_close() for this driver.
  2215. void driver_fetchfast (MAILSTREAM *stream,char *sequence,long flags);
  2216.      This function implements mail_fetchfast() for this driver.
  2217. void driver_fetchflags (MAILSTREAM *stream,char *sequence,long flags);
  2218.      This function implements mail_fetchflags() for this driver.
  2219. ENVELOPE *driver_fetchstructure (MAILSTREAM *stream,unsigned long msgno,
  2220.  BODY **body,long flags);
  2221.      This function implements mail_fetchstructure() for this driver.
  2222. char *driver_fetchheader (MAILSTREAM *stream,unsigned long msgno,
  2223.   STRINGLIST *lines,unsigned long *len,long flags);
  2224.      This function implements mail_fetchheader() for this driver.
  2225. char *driver_fetchtext (MAILSTREAM *stream,unsigned long msgno,
  2226. unsigned long *len,long flags);
  2227.      This function implements mail_fetchtext() for this driver.
  2228. char *driver_fetchbody (MAILSTREAM *stream,unsigned long msgno,char *section,
  2229. unsigned long *len,long flags);
  2230.      This function implements mail_fetchbody() for this driver.
  2231. void driver_setflag (MAILSTREAM *stream,char *sequence,char *flag,long flags);
  2232.      This function implements mail_setflag() for this driver.
  2233. void driver_clearflag (MAILSTREAM *stream,char *sequence,char *flag,
  2234.        long flags);
  2235.      This function implements mail_clearflag() for this driver.
  2236. void driver_search (MAILSTREAM *stream,char *charset,SEARCHPGM *pgm,
  2237.     long flags);
  2238.      This function implements mail_search() for this driver.
  2239. unsigned long *driver_sort (MAILSTREAM *stream,char *charset,SEARCHPGM *spg,
  2240.     SORTPGM *pgm,long flags);
  2241.      This function implements mail_sort() for this driver.
  2242. void *driver_thread (MAILSTREAM *stream,char *seq,long function,long flag);
  2243.      This dispatch is reserved for a future threading capability.
  2244. long driver_ping (MAILSTREAM *stream);
  2245.       This function implements mail_ping() for this driver.
  2246. void driver_check (MAILSTREAM *stream);
  2247.       This function implements mail_check() for this driver.
  2248. void driver_expunge (MAILSTREAM *stream);
  2249.       This function implements mail_expunge() for this driver.
  2250. long driver_copy (MAILSTREAM *stream,char *sequence,char *mailbox,
  2251.   long options);
  2252.       This function implements mail_copy() for this driver.
  2253. long driver_append (MAILSTREAM *stream,char *mailbox,char *flags,char *date,
  2254.     STRING *message);
  2255.       This function implements mail_append() for this driver.
  2256. void driver_gc (MAILSTREAM *stream,long gcflags);
  2257.       This function implements mail_gc() for this driver.
  2258.  Driver Support Functions
  2259. void mail_searched (MAILSTREAM *stream,unsigned long msgno);
  2260. stream stream where event happened
  2261. msgno message number
  2262.      This function is called by the driver to notify c-client that this
  2263. message number matches a search.  It invokes the main program's
  2264. mm_searched() function.
  2265. void mail_exists (MAILSTREAM *stream,unsigned long nmsgs);
  2266. stream stream where event happened
  2267. nmsgs number of messages
  2268.      This function is called by the driver to notify c-client that this
  2269. message number exists (i.e. there are this many messages in the mailbox).
  2270. It invokes the main program's mm_exists() function.
  2271. void mail_recent (MAILSTREAM *stream,unsigned long recent);
  2272. stream stream where event happened
  2273. recent number of messages
  2274.       This function is called by the driver to notify c-client that this
  2275. many messages are "recent" (i.e. arrived in the mailbox since the previous
  2276. time the mailbox was opened).
  2277. void mail_expunged (MAILSTREAM *stream,unsigned long msgno);
  2278. stream stream where event happened
  2279. msgno number of messages
  2280.       This function is called by the driver to notify MAIL that this
  2281. message number has been expunged from the mail file and that all subsequent
  2282. messages are no references by a message number one less than before.  It
  2283. invokes the main program's mm_expunged() function.
  2284. void mail_lock (MAILSTREAM *stream);
  2285. stream stream where event happened
  2286.       This function sets the stream lock.  It is an error to set the stream
  2287. lock if the stream is already locked.
  2288.       This is mainly used to catch errors due to a callback function
  2289. (e.g. mm_exists) inadvertantly recursing back to the MAIL routines and
  2290. establishing an infinite recursion.  Normally, drivers will set the lock
  2291. prior to calling one of the callback functions above or, more likely, in
  2292. the beginning of the driver's non-reentrant "do operation" section.  In the
  2293. IMAP4 driver, the stream lock is set when entering imap_send() and cleared
  2294. on exit.
  2295. void mail_unlock (MAILSTREAM *stream);
  2296. stream stream where event happened
  2297.      This function releases the stream lock.  It is an error to release the
  2298. stream lock if the stream is not locked.