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

网络编程

开发平台:

Unix_Linux

  1. /*
  2.  * Program: MX mail routines
  3.  *
  4.  * Author(s): Mark Crispin
  5.  * Networks and Distributed Computing
  6.  * Computing & Communications
  7.  * University of Washington
  8.  * Administration Building, AG-44
  9.  * Seattle, WA  98195
  10.  * Internet: MRC@CAC.Washington.EDU
  11.  *
  12.  * Date: 3 May 1996
  13.  * Last Edited: 27 September 1999
  14.  *
  15.  * Copyright 1999 by the University of Washington
  16.  *
  17.  *  Permission to use, copy, modify, and distribute this software and its
  18.  * documentation for any purpose and without fee is hereby granted, provided
  19.  * that the above copyright notice appears in all copies and that both the
  20.  * above copyright notice and this permission notice appear in supporting
  21.  * documentation, and that the name of the University of Washington not be
  22.  * used in advertising or publicity pertaining to distribution of the software
  23.  * without specific, written prior permission.  This software is made
  24.  * available "as is", and
  25.  * THE UNIVERSITY OF WASHINGTON DISCLAIMS ALL WARRANTIES, EXPRESS OR IMPLIED,
  26.  * WITH REGARD TO THIS SOFTWARE, INCLUDING WITHOUT LIMITATION ALL IMPLIED
  27.  * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE, AND IN
  28.  * NO EVENT SHALL THE UNIVERSITY OF WASHINGTON BE LIABLE FOR ANY SPECIAL,
  29.  * INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
  30.  * LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, TORT
  31.  * (INCLUDING NEGLIGENCE) OR STRICT LIABILITY, ARISING OUT OF OR IN CONNECTION
  32.  * WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  33.  *
  34.  */
  35. /* Build parameters */
  36. #define MXINDEXNAME "/.mxindex"
  37. #define MXINDEX(d,s) strcat (mx_file (d,s),MXINDEXNAME)
  38. /* MX I/O stream local data */
  39. typedef struct mx_local {
  40.   int fd; /* file descriptor of open index */
  41.   char *dir; /* spool directory name */
  42.   char *buf; /* temporary buffer */
  43.   unsigned long buflen; /* current size of temporary buffer */
  44.   unsigned long cachedtexts; /* total size of all cached texts */
  45.   time_t scantime; /* last time directory scanned */
  46. } MXLOCAL;
  47. /* Convenient access to local data */
  48. #define LOCAL ((MXLOCAL *) stream->local)
  49. /* Function prototypes */
  50. DRIVER *mx_valid (char *name);
  51. int mx_isvalid (char *name,char *tmp);
  52. void *mx_parameters (long function,void *value);
  53. void mx_scan (MAILSTREAM *stream,char *ref,char *pat,char *contents);
  54. void mx_list (MAILSTREAM *stream,char *ref,char *pat);
  55. void mx_lsub (MAILSTREAM *stream,char *ref,char *pat);
  56. void mx_list_work (MAILSTREAM *stream,char *dir,char *pat,long level);
  57. long mx_subscribe (MAILSTREAM *stream,char *mailbox);
  58. long mx_unsubscribe (MAILSTREAM *stream,char *mailbox);
  59. long mx_create (MAILSTREAM *stream,char *mailbox);
  60. long mx_delete (MAILSTREAM *stream,char *mailbox);
  61. long mx_rename (MAILSTREAM *stream,char *old,char *newname);
  62. MAILSTREAM *mx_open (MAILSTREAM *stream);
  63. void mx_close (MAILSTREAM *stream,long options);
  64. void mx_fast (MAILSTREAM *stream,char *sequence,long flags);
  65. char *mx_fast_work (MAILSTREAM *stream,MESSAGECACHE *elt);
  66. char *mx_header (MAILSTREAM *stream,unsigned long msgno,unsigned long *length,
  67.  long flags);
  68. long mx_text (MAILSTREAM *stream,unsigned long msgno,STRING *bs,long flags);
  69. void mx_flag (MAILSTREAM *stream,char *sequence,char *flag,long flags);
  70. void mx_flagmsg (MAILSTREAM *stream,MESSAGECACHE *elt);
  71. long mx_ping (MAILSTREAM *stream);
  72. void mx_check (MAILSTREAM *stream);
  73. void mx_expunge (MAILSTREAM *stream);
  74. long mx_copy (MAILSTREAM *stream,char *sequence,char *mailbox,
  75.       long options);
  76. long mx_append (MAILSTREAM *stream,char *mailbox,char *flags,char *date,
  77. STRING *message);
  78. int mx_select (struct direct *name);
  79. int mx_numsort (const void *d1,const void *d2);
  80. char *mx_file (char *dst,char *name);
  81. long mx_lockindex (MAILSTREAM *stream);
  82. void mx_unlockindex (MAILSTREAM *stream);
  83. void mx_setdate (char *file,MESSAGECACHE *elt);