1 #ifndef _QSHEFF_SMTP_H
2 #define _QSHEFF_SMTP_H
3 
4 char *get_remote_ip();
5 int parse_header();
6 
7 char remoteip[16];
8 char mailfrom[256];
9 char mailto[256];
10 char subject[256];
11 char rfc821_name[128];
12 char attachname[128];
13 
14 int msgsize;
15 int relayclient;
16 int lflag;
17 
18 #endif
19