Home
last modified time | relevance | path

Searched refs:table_match (Results 1 – 8 of 8) sorted by relevance

/dports/mail/opensmtpd/opensmtpd-6.8.0p2/usr.sbin/smtpd/
H A Druleset.c54 ret = table_match(table, service, evp->tag); in ruleset_match_tag()
100 ret = table_match(table, service, key); in ruleset_match_from()
119 ret = table_match(table, service, evp->dest.domain); in ruleset_match_to()
138 ret = table_match(table, service, evp->helo); in ruleset_match_smtp_helo()
173 ret = table_match(table, service, evp->username); in ruleset_match_smtp_auth()
199 ret = table_match(table, service, key); in ruleset_match_smtp_mail_from()
222 ret = table_match(table, service, key); in ruleset_match_smtp_rcpt_to()
H A Dlka_filter.c1042 if (table_match(filter->config->rdns_table, kind, key) > 0) in filter_check_rdns_table()
1056 if (table_match(filter->config->rdns_regex, K_REGEX, key) > 0) in filter_check_rdns_regex()
1069 if (table_match(filter->config->src_table, kind, key) > 0) in filter_check_src_table()
1082 if (table_match(filter->config->src_regex, K_REGEX, key) > 0) in filter_check_src_regex()
1095 if (table_match(filter->config->helo_table, kind, key) > 0) in filter_check_helo_table()
1108 if (table_match(filter->config->helo_regex, K_REGEX, key) > 0) in filter_check_helo_regex()
1134 if (key && table_match(filter->config->auth_table, kind, key) > 0) in filter_check_auth_table()
1162 if (table_match(filter->config->mail_from_table, kind, key) > 0) in filter_check_mail_from_table()
1175 if (table_match(filter->config->mail_from_regex, K_REGEX, key) > 0) in filter_check_mail_from_regex()
1188 if (table_match(filter->config->rcpt_to_table, kind, key) > 0) in filter_check_rcpt_to_table()
[all …]
H A Dtable.c114 table_match(struct table *table, enum table_service kind, const char *key) in table_match() function
H A Dsmtpd.h1686 int table_match(struct table *, enum table_service, const char *);
/dports/net/google-cloud-sdk/google-cloud-sdk/lib/googlecloudsdk/command_lib/spanner/
H A Dwrite_util.py353 table_match = cls._TABLE_DDL_PATTERN.search(ddl)
354 if not table_match:
357 name = table_match.group('name')
363 column_defs = table_match.group('columns')
373 raw_primary_keys = table_match.groupdict()['primary_keys']
/dports/games/solarus/solarus-f43727b232b3ed13d98440a845e2a29e470e4f0d/tests/testing_quest/data/maps/custom_state/
H A Dcustom_state.lua92 local function table_match(story,expected,results) function
122 table_match(story,expected,results)
289 table_match(story,expected,results) --test if the results are the expected ones
/dports/multimedia/projectx/Project-X_0.91.0/src/net/sourceforge/dvb/projectx/common/
H A DCommon.java913 boolean table_match = false; in getUserColourTable()
921 table_match = line.substring( line.indexOf("=") + 1).trim().equals(model); in getUserColourTable()
923 else if (table_match) in getUserColourTable()
/dports/www/coppermine/cpg1.6.x-1.6.12/
H A Dinstall.php1591 if (preg_match('/(CREATE TABLE IF NOT EXISTS `?|CREATE TABLE `?)([\w]*)`?/i', $q, $table_match)) {
1592 $table = $table_match[2];