1 #ifndef CVM_VMAILMGR__H__
2 #define CVM_VMAILMGR__H__
3 
4 extern str default_user;
5 
6 /* Results from looking up the user */
7 extern struct qmail_user vmuser;
8 
9 extern str domain;
10 extern str virtuser;
11 extern str vpwdata;
12 
13 extern const char* pwfile;
14 
15 #define DEBUG(A,B,C) debug(__FUNCTION__, __LINE__, A, B, C)
16 extern void debug(const char* func, int line,
17 		  const char* a, const char* b, const char* c);
18 
19 extern int lookup_init(void);
20 extern int lookup_virtuser(void);
21 extern int vmailmgr_autoconvert(void);
22 
23 #endif
24