|
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 | : | 32.83 GB of 70.42 GB (46.63%) |
|
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/
include/
postfix/
- drwxr-xr-x
|
Viewing file: bounce.h (1.87 KB) -rw-r--r--Select action/file-type:  ( +) |  ( +) |  ( +) | Code ( +) | Session ( +) |  ( +) | SDB ( +) |  ( +) |  ( +) |  ( +) |  ( +) |  ( +) |
#ifndef _BOUNCE_H_INCLUDED_ #define _BOUNCE_H_INCLUDED_
/*++ /* NAME /* bounce 3h /* SUMMARY /* bounce service client /* SYNOPSIS /* #include <bounce.h> /* DESCRIPTION /* .nf
/* * System library. */ #include <time.h>
/* * Global library. */ #include <deliver_request.h> #include <dsn_buf.h>
/* * Client interface. */ extern int bounce_append(int, const char *, MSG_STATS *, RECIPIENT *, const char *, DSN *); extern int bounce_flush(int, const char *, const char *, const char *, const char *, const char *, int); extern int bounce_flush_verp(int, const char *, const char *, const char *, const char *, const char *, int, const char *); extern int bounce_one(int, const char *, const char *, const char *, const char *, const char *, int, MSG_STATS *, RECIPIENT *, const char *, DSN *);
/* * Bounce/defer protocol commands. */ #define BOUNCE_CMD_APPEND 0 /* append log */ #define BOUNCE_CMD_FLUSH 1 /* send log */ #define BOUNCE_CMD_WARN 2 /* send warning, don't delete log */ #define BOUNCE_CMD_VERP 3 /* send log, verp style */ #define BOUNCE_CMD_ONE 4 /* send one recipient notice */ #define BOUNCE_CMD_TRACE 5 /* send delivery record */
/* * Macros to make obscure code more readable. */ #define NO_DSN_DCODE ((char *) 0) #define NO_RELAY_AGENT "none" #define NO_DSN_RMTA ((char *) 0)
/* * Flags. */ #define BOUNCE_FLAG_NONE 0 /* no flags up */ #define BOUNCE_FLAG_CLEAN (1<<0) /* remove log on error */ #define BOUNCE_FLAG_DELRCPT (1<<1) /* delete recipient from queue file */
/* * Backwards compatibility. */ #define BOUNCE_FLAG_KEEP BOUNCE_FLAG_NONE
/* LICENSE /* .ad /* .fi /* The Secure Mailer license must be distributed with this software. /* AUTHOR(S) /* Wietse Venema /* IBM T.J. Watson Research /* P.O. Box 704 /* Yorktown Heights, NY 10598, USA /*--*/
#endif
|