1 #ifndef DEFAULTS_H 2 #define DEFAULTS_H 3 4 /* Default dir inside user's home directory. Specifies 5 connections to make and actions to perform. */ 6 #define DEFAULT_CONF_DIR ".netbiff" 7 8 /* Default number of seconds between each mail check. */ 9 #define DEFAULT_POLL_FREQUENCY 60 10 11 /* The shell with which to execute actions/commands. */ 12 #define SHELL "/bin/sh" 13 14 #endif /* DEFAULTS_H */