|
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.19 GB of 70.42 GB (34.36%) |
|
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/
imap/
- drwxrwxrwx
|
Viewing file: imapscanclient.h (2.22 KB) -rw-rw-rw-Select action/file-type:  ( +) |  ( +) |  ( +) | Code ( +) | Session ( +) |  ( +) | SDB ( +) |  ( +) |  ( +) |  ( +) |  ( +) |  ( +) |
#ifndef imapscanclient_h #define imapscanclient_h
#include "config.h" #include "maildir/maildirkeywords.h"
/* ** Copyright 1998 - 2003 Double Precision, Inc. ** See COPYING for distribution information. */
/* ** Stuff we want to know about an individual message in the maildir. */
struct imapscanmessageinfo { unsigned long uid; /* See RFC 2060 */ char *filename; struct libmail_kwMessage *keywordMsg; /* If not NULL - keywords */ char recentflag; char changedflags; /* Set by imapscan_open */ char copiedflag; /* This message was copied to another folder */
char storeflag; /* Used by imap_addRemoveKeywords() */
/* When reading keywords, hash messages by filename */
struct imapscanmessageinfo *firstBucket, *nextBucket;
} ;
/* ** Stuff we want to know about the maildir. */
struct imapscaninfo { unsigned long nmessages; /* # of messages */ unsigned long uidv; /* See RFC 2060 */ unsigned long left_unseen; unsigned long nextuid;
struct libmail_kwHashtable *keywordList; /* All defined keywords */
struct imapscanmessageinfo *msgs; struct maildirwatch *watcher; } ;
/* ** In imapscan_maildir, move the following msgs to cur. */
struct uidplus_info { struct uidplus_info *next; char *tmpfilename; char *curfilename;
char *tmpkeywords; char *newkeywords;
unsigned long uid; /* Initialized by imapscan_maildir2 */ unsigned long old_uid; /* Initialized by do_copy() */ time_t mtime; } ;
void imapscan_init(struct imapscaninfo *p); void imapscan_copy(struct imapscaninfo *a, struct imapscaninfo *b);
int imapscan_maildir(struct imapscaninfo *, const char *, int, int, struct uidplus_info *); void imapscan_free(struct imapscaninfo *);
int imapscan_openfile(const char *, struct imapscaninfo *, unsigned);
struct libmail_kwMessage *imapscan_createKeyword(struct imapscaninfo *, unsigned long n);
int imapscan_updateKeywords(const char *filename, struct libmail_kwMessage *newKeywords);
int imapscan_restoreKeywordSnapshot(FILE *, struct imapscaninfo *); int imapscan_saveKeywordSnapshot(FILE *fp, struct imapscaninfo *);
int imapmaildirlock(struct imapscaninfo *scaninfo, const char *maildir, int (*func)(void *), void *void_arg);
char *readline(unsigned, FILE *);
#endif
|