home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / mm / mm-ccmd-0.91-20031017.tar.gz / mm-ccmd-0.91-20031017.tar / work / mm / pop3.c < prev    next >
C/C++ Source or Header  |  1990-12-18  |  1KB  |  46 lines

  1. /*
  2.  * Copyright (c) 1986, 1990 by The Trustees of Columbia University in
  3.  * the City of New York.  Permission is granted to any individual or
  4.  * institution to use, copy, or redistribute this software so long as it
  5.  * is not sold for profit, provided this copyright notice is retained.
  6.  */
  7.  
  8. #ifndef lint
  9. static char *rcsid = "$Header: /f/src2/encore.bin/cucca/mm/tarring-it-up/RCS/pop3.c,v 2.1 90/10/04 18:25:32 melissa Exp $";
  10. #endif
  11.  
  12. /* pop3.c: read Columbia's special pop-3 format remote mail */
  13.  
  14. #include "mm.h"                /* need defn of FILE */
  15.  
  16. pop3_open (mail)
  17. msgvec *mail;
  18. {
  19.     printf ("pop2 format not supported yet\n");
  20.     return(false);            /* let them know we failed */
  21. }
  22.  
  23. pop3_close (fp)
  24. FILE *fp;
  25. {
  26.     return(false);            /* let them know we failed */
  27. }
  28.  
  29. pop3_rdmsg () {
  30.     return(false);            /* let them know we failed */
  31. }
  32.  
  33. pop3_wrmsg () {
  34.     return(false);            /* let them know we failed */
  35. }
  36.  
  37. /* 
  38.  * probe file to see if it's in pop3 format 
  39.  * I don't know what this means yet...
  40.  */
  41. pop3_probe (file)
  42. char *file;
  43. {
  44.     return (false);            /* naah... */
  45. }
  46.