home *** CD-ROM | disk | FTP | other *** search
/ Big Green CD 8 / BGCD_8_Dev.iso / NEXTSTEP / UNIX / Mail / qpopper-2.4-MIHS / pop_auth.c < prev    next >
Encoding:
C/C++ Source or Header  |  1997-09-11  |  466 b   |  31 lines

  1. /*
  2.  * Copyright (c) 1997 by Qualcomm Incorporated.
  3.  */
  4.  
  5. #ifdef HAVE_CONFIG_H
  6. #include <config.h>
  7. #endif
  8. #include <stdio.h>
  9. #if HAVE_FCNTL_H
  10. # include <fcntl.h>
  11. #endif
  12. #if HAVE_SYS_FILE_H
  13. # include <sys/file.h>
  14. #endif
  15.  
  16. #include <popper.h>
  17.  
  18. /* 
  19.  *  auth  : optional command ; Not supported.
  20.  */
  21.  
  22. int pop_auth (p)
  23. POP     *   p;
  24. {
  25.     /*  Tell the user that this command is not supported */
  26.     return (pop_msg(p,POP_FAILURE,"This command is not supported yet"));
  27. }
  28.  
  29.  
  30.  
  31.