|
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.84 GB of 70.42 GB (46.64%) |
|
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: dsn_mask.h (2.29 KB) -rw-r--r--Select action/file-type:  ( +) |  ( +) |  ( +) | Code ( +) | Session ( +) |  ( +) | SDB ( +) |  ( +) |  ( +) |  ( +) |  ( +) |  ( +) |
#ifndef _DSN_MASK_H_INCLUDED_ #define _DSN_MASK_H_INCLUDED_
/*++ /* NAME /* dsn_mask 3h /* SUMMARY /* DSN embedding in SMTP /* SYNOPSIS /* #include "dsn_mask.h" /* DESCRIPTION /* .nf
/* * Support for MAIL FROM ... RET=mumble. */ #define DSN_RET_FULL (1<<0) #define DSN_RET_HDRS (1<<1) #define DSN_RET_BITS (2)
/* * Use this to filter bad content in queue files. */ #define DSN_RET_OK(v) ((v) == DSN_RET_FULL || (v) == DSN_RET_HDRS)
/* * Only when RET is specified by the sender is the SMTP client allowed to * specify RET=mumble while delivering mail (RFC 3461 section 5.2.1). * However, if RET is not requested, then the MTA is allowed to interpret * this as RET=FULL or RET=HDRS (RFC 3461 section 4.3). Postfix chooses the * former. */
/* * Conversion routines: string to mask and reverse. */ extern int dsn_ret_code(const char *); extern const char *dsn_ret_str(int);
/* * Support for RCPT TO ... NOTIFY=mumble is in the form of bit masks. */ #define DSN_NOTIFY_NEVER (1<<0) /* must not */ #define DSN_NOTIFY_SUCCESS (1<<1) /* must */ #define DSN_NOTIFY_FAILURE (1<<2) /* must */ #define DSN_NOTIFY_DELAY (1<<3) /* may */ #define DSN_NOTIFY_BITS (4)
/* * Any form of sender-requested notification. */ #define DSN_NOTIFY_ANY \ (DSN_NOTIFY_SUCCESS | DSN_NOTIFY_FAILURE | DSN_NOTIFY_DELAY)
/* * Override the sender-specified notification restriction. */ #define DSN_NOTIFY_OVERRIDE (DSN_NOTIFY_ANY | DSN_NOTIFY_NEVER)
/* * Use this to filter bad content in queue files. */ #define DSN_NOTIFY_OK(v) \ ((v) == DSN_NOTIFY_NEVER || (v) == ((v) & DSN_NOTIFY_ANY))
/* * Only when NOTIFY=something was requested by the sender is the SMTP client * allowed to specify NOTIFY=mumble while delivering mail (RFC 3461 section * 5.2.1). However, if NOTIFY is not requested, then the MTA is allowed to * interpret this as NOTIFY=FAILURE or NOTIFY=FAILURE,DELAY (RFC 3461 * section 4.1). Postfix chooses the latter. */
/* * Conversion routines: string to mask and reverse. */ extern int dsn_notify_mask(const char *); extern const char *dsn_notify_str(int);
/* 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
|