/* * spop.h -- Sizing and return-code defines, etc. Stuff you * don't want to think about in the main program. */ #define YES 1 #define NO 0 #define ERR (-1) #define MAXLINE (1024*2) /* A pretty large buffer, but not outrageous. */ /* #define MAXWAIT (10*60) Maximum wait between commands, in seconds. #define MEDWAIT (5*60) */ #ifndef _POSIX_ARG_MAX #define MAXARGS 4096 #else #define MAXARGS _POSIX_ARG_MAX #endif #ifdef lint extern char *sprintf(); /* Ah yes, backward compatability with errors... */ extern void exit(); #endif /* $Id: ssmtp.h,v 1.2 2002/03/19 14:31:49 antuan Exp $ */ /* * $Log: ssmtp.h,v $ * Revision 1.2 2002/03/19 14:31:49 antuan * tag Header changed to Id * * Revision 1.1.1.1 2002/01/15 16:45:58 ark * Initial import * * Revision 1.1 1993/02/23 13:34:54 davecb * Initial revision * * Revision 1.1 1992/06/09 16:11:23 davecb * Initial revision * * */