|
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: recipient_list.h (2.16 KB) -rw-r--r--Select action/file-type:  ( +) |  ( +) |  ( +) | Code ( +) | Session ( +) |  ( +) | SDB ( +) |  ( +) |  ( +) |  ( +) |  ( +) |  ( +) |
#ifndef _RECIPIENT_LIST_H_INCLUDED_ #define _RECIPIENT_LIST_H_INCLUDED_
/*++ /* NAME /* recipient_list 3h /* SUMMARY /* recipient list structures /* SYNOPSIS /* #include <recipient_list.h> /* DESCRIPTION /* .nf
/* * Information about a recipient is kept in this structure. The file offset * tells us the position of the REC_TYPE_RCPT byte in the message queue * file, This byte is replaced by REC_TYPE_DONE when the delivery status to * that recipient is established. * * Rather than bothering with subclasses that extend this structure with * application-specific fields we just add them here. */ typedef struct RECIPIENT { long offset; /* REC_TYPE_RCPT byte */ const char *dsn_orcpt; /* DSN original recipient */ int dsn_notify; /* DSN notify flags */ const char *orig_addr; /* null or original recipient */ const char *address; /* complete address */ union { /* Application specific. */ int status; /* SMTP client */ struct QMGR_QUEUE *queue; /* Queue manager */ const char *addr_type; /* DSN */ } u; } RECIPIENT;
#define RECIPIENT_ASSIGN(rcpt, offs, orcpt, notify, orig, addr) do { \ (rcpt)->offset = (offs); \ (rcpt)->dsn_orcpt = (orcpt); \ (rcpt)->dsn_notify = (notify); \ (rcpt)->orig_addr = (orig); \ (rcpt)->address = (addr); \ (rcpt)->u.status = (0); \ } while (0)
#define RECIPIENT_UPDATE(ptr, new) do { \ myfree((char *) (ptr)); (ptr) = mystrdup(new); \ } while (0)
typedef struct RECIPIENT_LIST { RECIPIENT *info; int len; int avail; int variant; } RECIPIENT_LIST;
extern void recipient_list_init(RECIPIENT_LIST *, int); extern void recipient_list_add(RECIPIENT_LIST *, long, const char *, int, const char *, const char *); extern void recipient_list_swap(RECIPIENT_LIST *, RECIPIENT_LIST *); extern void recipient_list_free(RECIPIENT_LIST *);
#define RCPT_LIST_INIT_STATUS 1 #define RCPT_LIST_INIT_QUEUE 2 #define RCPT_LIST_INIT_ADDR 3
/* 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
|