|
System | : | Linux MiraNet 3.0.0-14-generic-pae #23-Ubuntu SMP Mon Nov 21 22:07:10 UTC 2011 i686 |
Software | : | Apache. PHP/5.3.6-13ubuntu3.10 |
ID | : | uid=65534(nobody) gid=65534(nogroup) groups=65534(nogroup)
|
|
Safe Mode | : | OFF |
Open_Basedir | : | OFF |
Freespace | : | 24.44 GB of 70.42 GB (34.71%) |
|
MySQL: ON MSSQL: OFF Oracle: OFF PostgreSQL: OFF Curl: OFF Sockets: ON Fetch: OFF Wget: ON Perl: ON |
Disabled Functions: pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,
|
[ System Info ]
[ Processes ]
[ SQL Manager ]
[ Eval ]
[ Encoder ]
[ Mailer ]
[ Back Connection ]
[ Backdoor Server ]
[ Kernel Exploit Search ]
[ MD5 Decrypter ]
[ Reverse IP ]
[ Kill Shell ]
[ FTP Brute-Force ]
|
|
/
usr/
src/
courier-0.66.1/
webmail/
- drwxrwxrwx
|
Viewing file: sqwebmail.h (2.43 KB) -rw-rw-rw-Select action/file-type:  ( +) |  ( +) |  ( +) | Code ( +) | Session ( +) |  ( +) | SDB ( +) |  ( +) |  ( +) |  ( +) |  ( +) |  ( +) |
/* */ #ifndef sqwebmail_h #define sqwebmail_h
/* ** Copyright 1998 - 2006 Double Precision, Inc. See COPYING for ** distribution information. */
#if HAVE_CONFIG_H #undef PACKAGE #undef VERSION #include "config.h" #endif
extern void error(const char *), error2(const char *, int); extern void error3(const char *, int, const char *, const char *, int);
#define enomem() error2(__FILE__,__LINE__) #define eio(x,y) error3(__FILE__,__LINE__,x,y,-1) #define emsg(x,y) error3(__FILE__,__LINE__,x,y,0)
/* Location of the user's Maildir */
#define USER_DIR "Maildir"
/* For PAM-based authentication */
#define SQWEBMAIL_PAM "webmail"
/* Socket filename */
#define SOCKFILENAME SOCKDIR "/sqwebmail.sock"
/* Where we keep the IP address we authenticated from */
#define IPFILE "sqwebmail-ip"
/* Last time the sent folder was renamed */
#define SENTSTAMP "sqwebmail-sentstamp"
/* File that keeps the time of last access */
#define TIMESTAMP "sqwebmail-timestamp"
/* Various configuration stuff */
#define CONFIGFILE "sqwebmail-config"
/* More configuration stuff */
#define GPGCONFIGFILE "sqwebmail-gpgconfig"
/* Eliminate duplicate messages being sent based on form reloads by using ** unique message tokens. */
#define TOKENFILE "sqwebmail-token"
/* Sig file */
#define SIGNATURE "sqwebmail-sig"
#define CHECKFILENAME(p) { if (!*p || strchr((p), '/') || *p == '.') enomem(); }
/* Cached shared paths */
#define SHAREDPATHCACHE "sqwebmail-sharedpath"
/* Wrap lines for new messages */ #define MYLINESIZE 76
/* Automake dribble */
#ifndef HAVE_STRDUP extern char *strdup(const char *); #endif
#ifndef HAVE_STRCASECMP extern int strcasecmp(const char *, const char *); #endif
#ifndef HAVE_STRNCASECMP extern int strncasecmp(const char *, const char *, size_t); #endif
extern void cleanup();
extern void http_redirect_argu(const char *, unsigned long); extern void http_redirect_argss(const char *, const char *, const char *); extern void http_redirect_argsss(const char *, const char *, const char *, const char *);
#define ISCTRL(c) ((unsigned char)(c) < (unsigned char)' ')
extern void fake_exit(int);
extern void addarg(const char *); extern void freeargs(); extern void insert_include(const char *); extern const char *getarg(const char *); extern char *get_templatedir(); extern char *get_imageurl();
#define GPGDIR "gpg"
#define MIMEGPGFILENAME "mimegpgfilename" #define SEARCHRESFILENAME "searchres"
char *trim_spaces(const char *s);
#endif
|