25 lines
397 B
C
25 lines
397 B
C
#ifndef _CONFIG_H
|
|
#define _CONFIG_H
|
|
|
|
#include "../lib/structs.h"
|
|
#include "../lib/common.h"
|
|
|
|
|
|
extern long configtime;
|
|
extern long maxfsize;
|
|
extern long maxmsize;
|
|
|
|
|
|
extern char *name;
|
|
extern char *phone;
|
|
extern char *flags;
|
|
extern char *inbound;
|
|
extern char *myfqdn;
|
|
extern char *debugfile;
|
|
extern char *nonpacked;
|
|
extern char *magicname;
|
|
extern char *dosoutbound;
|
|
extern char *uxoutbound;
|
|
|
|
#endif
|