/* Author: Ram Samudrala (me@ram.org) * Version: O1.0 * Detail: * May 16, 1993. * * See the URL above for more information. */ #ifndef __PLAN__ #define __PLAN__ /******************************************************************/ /* You probably need to change these */ /* Location of the named pipe. */ #define PLAN_FILE "/usr/people/ram/.plan" /* Location of the logfinger script. Make sure it has executable * permissions (`chmod +x logfinger`) and that it is spawned off as a * process (note the '&' in the original source). */ #define LOGFINGER_COMMAND "/usr/people/ram/www/computing/plan/src/logfinger &" /* This is fixed plan portion of your rotation plan */ #define ORIGINAL_PLAN_FILE "/usr/people/ram/www/computing/plan/myplan" /* This is the rotating portion of the plan. The quotes are all stored * in files with with a number between [1..number of quotes] appended * to the file. */ #define QUOTES_FILE_PREFIX "/usr/people/ram/Mail/.signature" /******************************************************************/ /* You probably don't need to change these */ /* Maximum length of line in plan/quotes files. */ #define MAX_LINE_LENGTH 2000 /******************************************************************/ #endif /* __PLAN__ */