Searched refs:table_match (Results 1 – 5 of 5) sorted by relevance
/openbsd/usr.sbin/smtpd/ |
H A D | ruleset.c | 40 ret = table_match(table, service, evp->tag); in ruleset_match_tag() 86 ret = table_match(table, service, key); in ruleset_match_from() 105 ret = table_match(table, service, evp->dest.domain); in ruleset_match_to() 124 ret = table_match(table, service, evp->helo); in ruleset_match_smtp_helo() 159 ret = table_match(table, service, evp->username); in ruleset_match_smtp_auth() 185 ret = table_match(table, service, key); in ruleset_match_smtp_mail_from() 208 ret = table_match(table, service, key); in ruleset_match_smtp_rcpt_to()
|
H A D | lka_filter.c | 1022 if (table_match(filter->config->rdns_table, kind, key) > 0) in filter_check_rdns_table() 1036 if (table_match(filter->config->rdns_regex, K_REGEX, key) > 0) in filter_check_rdns_regex() 1049 if (table_match(filter->config->src_table, kind, key) > 0) in filter_check_src_table() 1062 if (table_match(filter->config->src_regex, K_REGEX, key) > 0) in filter_check_src_regex() 1075 if (table_match(filter->config->helo_table, kind, key) > 0) in filter_check_helo_table() 1088 if (table_match(filter->config->helo_regex, K_REGEX, key) > 0) in filter_check_helo_regex() 1114 if (key && table_match(filter->config->auth_table, kind, key) > 0) in filter_check_auth_table() 1142 if (table_match(filter->config->mail_from_table, kind, key) > 0) in filter_check_mail_from_table() 1155 if (table_match(filter->config->mail_from_regex, K_REGEX, key) > 0) in filter_check_mail_from_regex() 1168 if (table_match(filter->config->rcpt_to_table, kind, key) > 0) in filter_check_rcpt_to_table() [all …]
|
H A D | table.c | 132 table_match(struct table *table, enum table_service kind, const char *key) in table_match() function
|
H A D | lka.c | 742 switch (table_match(table, K_AUTH, offloadkey)) { in lka_authenticate()
|
H A D | smtpd.h | 1646 int table_match(struct table *, enum table_service, const char *);
|