1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
|
#define mailhome "/var/mail/%u"
#define sendmail "/usr/sbin/sendmail"
#define smflags "-oi -oem" /* ignore dots and mail back errors */
#define smflagsv "-oi -oem -v" /* Verbose voyuer mode */
#define smflagmt " -om" /* metoo copy to sender */
#define submitmail ""
#define submitflags "-mlrnvxto,cc*"
#define submitflags_s "-mlrnv"
#define mailer "/usr/sbin/sendmail"
#define remove_cmd "/bin/rm -f" /* how to remove a file */
#define cat "/bin/cat" /* how to display files */
#define sed_cmd "/bin/sed" /* how to access sed */
#define move_cmd "/bin/mv" /* how to access sed */
#define uuname "uuname" /* how to get a uuname */
#define MSG_SEPARATOR "\001\001\001\001\n" /* mmdf message seperator */
#ifdef CRAY
/* avoid conflict with typedef'd word */
#define word wrd
#endif /* CRAY */
#ifndef STRSTR
char *strstr();
#endif
|