Postfix3.3.1
|
#include <sys_defs.h>
#include <sys/stat.h>
#include <time.h>
#include <string.h>
#include <stdlib.h>
#include <unistd.h>
#include <msg.h>
#include <mymalloc.h>
#include <htable.h>
#include <dict_ht.h>
#include <dict_cache.h>
#include <split_at.h>
#include <stringops.h>
#include <set_eugid.h>
#include <events.h>
#include <mail_conf.h>
#include <mail_params.h>
#include <mail_version.h>
#include <mail_proto.h>
#include <post_mail.h>
#include <data_redirect.h>
#include <verify_clnt.h>
#include <verify_sender_addr.h>
#include <mail_server.h>
マクロ定義 | |
#define | STR(x) vstring_str(x) |
#define | STREQ(x, y) (strcmp(x,y) == 0) |
#define | STATUS_FROM_RAW_ENTRY(e) atoi(e) |
#define | POSITIVE_ENTRY_EXPIRED(addr_status, updated) (addr_status == DEL_RCPT_STAT_OK && updated + var_verify_pos_exp < now) |
#define | NEGATIVE_ENTRY_EXPIRED(addr_status, updated) (addr_status != DEL_RCPT_STAT_OK && updated + var_verify_neg_exp < now) |
#define | PROBE_TTL 1000 |
#define | POSITIVE_REFRESH_NEEDED(addr_status, updated) (addr_status == DEL_RCPT_STAT_OK && updated + var_verify_pos_try < now) |
#define | NEGATIVE_REFRESH_NEEDED(addr_status, updated) (addr_status != DEL_RCPT_STAT_OK && updated + var_verify_neg_try < now) |
#define | POS_OR_NEG_ENTRY_EXPIRED(stat, stamp) |
#define | VERIFY_DICT_OPEN_FLAGS |
関数 | |
int | main (int argc, char **argv) |
変数 | |
char * | var_verify_map |
int | var_verify_pos_exp |
int | var_verify_pos_try |
int | var_verify_neg_exp |
int | var_verify_neg_try |
int | var_verify_scan_cache |
MAIL_VERSION_STAMP_DECLARE | |
#define NEGATIVE_ENTRY_EXPIRED | ( | addr_status, | |
updated | |||
) | (addr_status != DEL_RCPT_STAT_OK && updated + var_verify_neg_exp < now) |
#define NEGATIVE_REFRESH_NEEDED | ( | addr_status, | |
updated | |||
) | (addr_status != DEL_RCPT_STAT_OK && updated + var_verify_neg_try < now) |
#define POS_OR_NEG_ENTRY_EXPIRED | ( | stat, | |
stamp | |||
) |
#define POSITIVE_ENTRY_EXPIRED | ( | addr_status, | |
updated | |||
) | (addr_status == DEL_RCPT_STAT_OK && updated + var_verify_pos_exp < now) |
#define POSITIVE_REFRESH_NEEDED | ( | addr_status, | |
updated | |||
) | (addr_status == DEL_RCPT_STAT_OK && updated + var_verify_pos_try < now) |
#define PROBE_TTL 1000 |
#define STR | ( | x | ) | vstring_str(x) |
#define VERIFY_DICT_OPEN_FLAGS |