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

网络编程

开发平台:

Unix_Linux

  1. /*
  2.  * Program: Subscription Manager
  3.  *
  4.  * Author: 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 December 1992
  13.  * Last Edited: 14 April 1997
  14.  *
  15.  * Copyright 1997 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. #include <stdio.h>
  36. #include <ctype.h>
  37. #include "mail.h"
  38. #include "osdep.h"
  39. #include "misc.h"
  40. /* Subscribe to mailbox
  41.  * Accepts: mailbox name
  42.  * Returns: T on success, NIL on failure
  43.  */
  44. long sm_subscribe (char *mailbox)
  45. {
  46.   FILE *f;
  47.   char *s,db[MAILTMPLEN],tmp[MAILTMPLEN];
  48.   SUBSCRIPTIONFILE (db); /* open subscription database */
  49.   if (f = fopen (db,"r")) { /* make sure not already there */
  50.     while (fgets (tmp,MAILTMPLEN,f)) {
  51.       if (s = strchr (tmp,'n')) *s = '';
  52.       if (!strcmp (tmp,mailbox)) {/* already subscribed? */
  53. sprintf (tmp,"Already subscribed to mailbox %s",mailbox);
  54. mm_log (tmp,ERROR);
  55. fclose (f);
  56. return NIL;
  57.       }
  58.     }
  59.     fclose (f);
  60.   }
  61.   if (!(f = fopen (db,"a"))) { /* append new entry */
  62.     mm_log ("Can't create subscription database",ERROR);
  63.     return NIL;
  64.   }
  65.   fprintf (f,"%sn",mailbox);
  66.   return (fclose (f) == EOF) ? NIL : T;
  67. }
  68. /* Unsubscribe from mailbox
  69.  * Accepts: mailbox name
  70.  * Returns: T on success, NIL on failure
  71.  */
  72. long sm_unsubscribe (char *mailbox)
  73. {
  74.   FILE *f,*tf;
  75.   char *s,tmp[MAILTMPLEN],old[MAILTMPLEN],newname[MAILTMPLEN];
  76.   long ret = NIL;
  77.   SUBSCRIPTIONFILE (old); /* open subscription database */
  78.   if (!(f = fopen (old,"r"))) { /* can we? */
  79.     mm_log ("No subscriptions",ERROR);
  80.     return NIL;
  81.   }
  82.   SUBSCRIPTIONTEMP (newname); /* make tmp file name */
  83.   if (!(tf = fopen (newname,"w"))) {
  84.     mm_log ("Can't create subscription temporary file",ERROR);
  85.     fclose (f);
  86.     return NIL;
  87.   }
  88.   while (fgets (tmp,MAILTMPLEN,f)) {
  89.     if (s = strchr (tmp,'n')) *s = '';
  90.     if (strcmp (tmp,mailbox)) fprintf (tf,"%sn",tmp);
  91.     else ret = T; /* found the name */
  92.   }
  93.   fclose (f);
  94.   if (fclose (tf) == EOF) {
  95.     mm_log ("Can't write subscription temporary file",ERROR);
  96.     return NIL;
  97.   }
  98.   if (!ret) {
  99.     sprintf (tmp,"Not subscribed to mailbox %s",mailbox);
  100.     mm_log (tmp,ERROR); /* error if at end */
  101.   }
  102.   else rename (newname,old);
  103.   return ret;
  104. }
  105. /* Read subscription database
  106.  * Accepts: pointer to subscription database handle (handle NIL if first time)
  107.  * Returns: character string for subscription database or NIL if done
  108.  */
  109. static char sbname[MAILTMPLEN];
  110. char *sm_read (void **sdb)
  111. {
  112.   FILE *f = (FILE *) *sdb;
  113.   char *s;
  114.   if (!f) { /* first time through? */
  115.     SUBSCRIPTIONFILE (sbname); /* open subscription database */
  116. /* make sure not already there */
  117.     if (f = fopen (sbname,"r")) *sdb = (void *) f;
  118.     else return NIL;
  119.   }
  120.   if (fgets (sbname,MAILTMPLEN,f)) {
  121.     if (s = strchr (sbname,'n')) *s = '';
  122.     return sbname;
  123.   }
  124.   fclose (f); /* all done */
  125.   *sdb = NIL; /* zap sdb */
  126.   return NIL;
  127. }