int expand_setup = 0;
int nameptr = 0;
uschar *key, *filename;
- const uschar *affix;
+ const uschar * affix, * opts;
uschar *save_lookup_value = lookup_value;
int save_expand_nmax =
save_expand_strings(save_expand_nstring, save_expand_nlength);
/* Now check for the individual search type and any partial or default
options. Only those types that are actually in the binary are valid. */
- stype = search_findtype_partial(name, &partial, &affix, &affixlen,
- &starflags);
- if (stype < 0)
+ if ((stype = search_findtype_partial(name, &partial, &affix, &affixlen,
+ &starflags, &opts)) < 0)
{
expand_string_message = search_error_message;
goto EXPAND_FAILED;
goto EXPAND_FAILED;
}
lookup_value = search_find(handle, filename, key, partial, affix,
- affixlen, starflags, &expand_setup);
+ affixlen, starflags, &expand_setup, opts);
if (f.search_find_defer)
{
expand_string_message =
extern void route_tidyup(void);
extern uschar *search_find(void *, const uschar *, uschar *, int,
- const uschar *, int, int, int *);
+ const uschar *, int, int, int *, const uschar *);
extern int search_findtype(const uschar *, int);
extern int search_findtype_partial(const uschar *, int *, const uschar **, int *,
- int *);
+ int *, const uschar **);
extern void *search_open(const uschar *, int, int, uid_t *, gid_t *);
extern void search_tidyup(void);
extern void set_process_info(const char *, ...) PRINTF_FUNCTION(1,2);
int, /* length of key or query */
uschar **, /* for returning answer */
uschar **, /* for error message */
- uint *); /* cache TTL, seconds */
+ uint *, /* cache TTL, seconds */
+ const uschar *); /* options */
void (*close)( /* close function */
void *); /* handle */
void (*tidy)(void); /* tidy function */
static int
cdb_find(void * handle, const uschar * filename, const uschar * keystring,
- int key_len, uschar ** result, uschar ** errmsg, uint * do_cache)
+ int key_len, uschar ** result, uschar ** errmsg, uint * do_cache,
+ const uschar * opts)
{
struct cdb_state * cdbp = handle;
uint32 item_key_len,
static int
dbmdb_find(void * handle, const uschar * filename, const uschar * keystring,
- int length, uschar ** result, uschar ** errmsg, uint * do_cache)
+ int length, uschar ** result, uschar ** errmsg, uint * do_cache,
+ const uschar * opts)
{
EXIM_DB *d = (EXIM_DB *)handle;
EXIM_DATUM key, data;
static int
dbmnz_find(void * handle, const uschar * filename, const uschar * keystring,
- int length, uschar ** result, uschar ** errmsg, uint * do_cache)
+ int length, uschar ** result, uschar ** errmsg, uint * do_cache,
+ const uschar * opts)
{
return dbmdb_find(handle, filename, keystring, length-1, result, errmsg,
- do_cache);
+ do_cache, opts);
}
static int
dbmjz_find(void * handle, const uschar * filename, const uschar * keystring,
- int length, uschar ** result, uschar ** errmsg, uint * do_cache)
+ int length, uschar ** result, uschar ** errmsg, uint * do_cache,
+ const uschar * opts)
{
uschar *key_item, *key_buffer, *key_p;
const uschar *key_elems = keystring;
because we've calculated the real length, we need to subtract one more here */
return dbmdb_find(handle, filename, key_buffer, key_item_len - 1,
- result, errmsg, do_cache);
+ result, errmsg, do_cache, opts);
}
static int
dnsdb_find(void * handle, const uschar * filename, const uschar * keystring,
- int length, uschar ** result, uschar ** errmsg, uint * do_cache)
+ int length, uschar ** result, uschar ** errmsg, uint * do_cache,
+ const uschar * opts)
{
int rc;
int sep = 0;
static int
dsearch_find(void * handle, const uschar * dirname, const uschar * keystring,
- int length, uschar ** result, uschar ** errmsg, uint * do_cache)
+ int length, uschar ** result, uschar ** errmsg, uint * do_cache,
+ const uschar * opts)
{
struct stat statbuf;
int save_errno;
static int
ibase_find(void * handle, const uschar * filename, uschar * query, int length,
- uschar ** result, uschar ** errmsg, uint *do_cache)
+ uschar ** result, uschar ** errmsg, uint * do_cache, const uschar * opts)
{
int sep = 0;
uschar *server;
DEBUG(D_lookup) debug_printf_indent("Interbase query: %s\n", query);
-while ((server = string_nextinlist(&list, &sep, buffer,
- sizeof(buffer))))
+while ((server = string_nextinlist(&list, &sep, buffer, sizeof(buffer))))
{
BOOL defer_break = FALSE;
int rc = perform_ibase_search(query, server, result, errmsg, &defer_break);
static int
json_find(void * handle, const uschar * filename, const uschar * keystring,
- int length, uschar ** result, uschar ** errmsg, uint * do_cache)
+ int length, uschar ** result, uschar ** errmsg, uint * do_cache,
+ const uschar * opts)
{
FILE * f = handle;
json_t * j, * j0;
static int
eldap_find(void * handle, const uschar * filename, const uschar * ldap_url,
- int length, uschar ** result, uschar ** errmsg, uint * do_cache)
+ int length, uschar ** result, uschar ** errmsg, uint * do_cache,
+ const uschar * opts)
{
/* Keep picky compilers happy */
do_cache = do_cache;
static int
eldapm_find(void * handle, const uschar * filename, const uschar * ldap_url,
- int length, uschar ** result, uschar ** errmsg, uint * do_cache)
+ int length, uschar ** result, uschar ** errmsg, uint * do_cache,
+ const uschar * opts)
{
/* Keep picky compilers happy */
do_cache = do_cache;
static int
eldapdn_find(void * handle, const uschar * filename, const uschar * ldap_url,
- int length, uschar ** result, uschar ** errmsg, uint * do_cache)
+ int length, uschar ** result, uschar ** errmsg, uint * do_cache,
+ const uschar * opts)
{
/* Keep picky compilers happy */
do_cache = do_cache;
static int
lmdb_find(void * handle, const uschar * filename,
const uschar * keystring, int length, uschar ** result, uschar ** errmsg,
- uint * do_cache)
+ uint * do_cache, const uschar * opts)
{
int ret;
MDB_val dbkey, data;
static int
lsearch_find(void * handle, const uschar * filename, const uschar * keystring,
- int length, uschar ** result, uschar ** errmsg, uint * do_cache)
+ int length, uschar ** result, uschar ** errmsg, uint * do_cache,
+ const uschar * opts)
{
do_cache = do_cache; /* Keep picky compilers happy */
return internal_lsearch_find(handle, filename, keystring, length, result,
static int
wildlsearch_find(void * handle, const uschar * filename, const uschar * keystring,
- int length, uschar ** result, uschar ** errmsg, uint * do_cache)
+ int length, uschar ** result, uschar ** errmsg, uint * do_cache,
+ const uschar * opts)
{
do_cache = do_cache; /* Keep picky compilers happy */
return internal_lsearch_find(handle, filename, keystring, length, result,
static int
nwildlsearch_find(void * handle, const uschar * filename, const uschar * keystring,
- int length, uschar ** result, uschar ** errmsg, uint * do_cache)
+ int length, uschar ** result, uschar ** errmsg, uint * do_cache,
+ const uschar * opts)
{
do_cache = do_cache; /* Keep picky compilers happy */
return internal_lsearch_find(handle, filename, keystring, length, result,
static int
iplsearch_find(void * handle, uschar const * filename, const uschar * keystring,
- int length, uschar ** result, uschar ** errmsg, uint * do_cache)
+ int length, uschar ** result, uschar ** errmsg, uint * do_cache,
+ const uschar * opts)
{
do_cache = do_cache; /* Keep picky compilers happy */
static int
mysql_find(void * handle, const uschar * filename, const uschar * query,
- int length, uschar ** result, uschar ** errmsg, uint * do_cache)
+ int length, uschar ** result, uschar ** errmsg, uint * do_cache,
+ const uschar * opts)
{
return lf_sqlperform(US"MySQL", US"mysql_servers", mysql_servers, query,
result, errmsg, do_cache, perform_mysql_search);
static int
nis_find(void * handle, const uschar * filename, const uschar * keystring,
- int length, uschar ** result, uschar ** errmsg, uint * do_cache)
+ int length, uschar ** result, uschar ** errmsg, uint * do_cache,
+ const uschar * opts)
{
int rc;
uschar *nis_data;
static int
nis0_find(void * handle, const uschar * filename, const uschar * keystring,
- int length, uschar ** result, uschar ** errmsg, uint * do_cache)
+ int length, uschar ** result, uschar ** errmsg, uint * do_cache,
+ const uschar * opts)
{
int rc;
uschar *nis_data;
static int
nisplus_find(void * handle, const uschar * filename, const uschar * query,
- int length, uschar ** result, uschar ** errmsg, uint * do_cache)
+ int length, uschar ** result, uschar ** errmsg, uint * do_cache,
+ const uschar * opts)
{
int error_error = FAIL;
const uschar * field_name = NULL;
static int
oracle_find(void * handle, const uschar * filename, uschar * query, int length,
- uschar ** result, uschar ** errmsg, uint * do_cache)
+ uschar ** result, uschar ** errmsg, uint * do_cache, const uschar * opts)
{
int sep = 0;
uschar *server;
DEBUG(D_lookup) debug_printf_indent("ORACLE query: %s\n", query);
-while ((server = string_nextinlist(&list, &sep, buffer, sizeof(buffer))) != NULL)
+while ((server = string_nextinlist(&list, &sep, buffer, sizeof(buffer))))
{
BOOL defer_break;
int rc = perform_oracle_search(query, server, result, errmsg, &defer_break);
if (rc != DEFER || defer_break) return rc;
}
-if (oracle_servers == NULL)
+if (!oracle_servers)
*errmsg = "no ORACLE servers defined (oracle_servers option)";
return DEFER;
static int
passwd_find(void * handle, const uschar * filename, const uschar * keystring,
- int length, uschar ** result, uschar ** errmsg, uint * do_cache)
+ int length, uschar ** result, uschar ** errmsg, uint * do_cache,
+ const uschar * opts)
{
struct passwd *pw;
static int
pgsql_find(void * handle, const uschar * filename, const uschar * query,
- int length, uschar ** result, uschar ** errmsg, uint * do_cache)
+ int length, uschar ** result, uschar ** errmsg, uint * do_cache,
+ const uschar * opts)
{
return lf_sqlperform(US"PostgreSQL", US"pgsql_servers", pgsql_servers, query,
result, errmsg, do_cache, perform_pgsql_search);
redis_find(void * handle __attribute__((unused)),
const uschar * filename __attribute__((unused)),
const uschar * command, int length, uschar ** result, uschar ** errmsg,
- uint * do_cache)
+ uint * do_cache, const uschar * opts)
{
return lf_sqlperform(US"Redis", US"redis_servers", redis_servers, command,
result, errmsg, do_cache, perform_redis_search);
static int
spf_find(void * handle, const uschar * filename, const uschar * keystring,
- int key_len, uschar ** result, uschar ** errmsg, uint * do_cache)
+ int key_len, uschar ** result, uschar ** errmsg, uint * do_cache,
+ const uschar * opts)
{
SPF_server_t *spf_server = handle;
SPF_request_t *spf_request;
static int
sqlite_find(void * handle, const uschar * filename, const uschar * query,
- int length, uschar ** result, uschar ** errmsg, uint * do_cache)
+ int length, uschar ** result, uschar ** errmsg, uint * do_cache,
+ const uschar * opts)
{
int ret;
gstring * res = NULL;
static int
testdb_find(void * handle, const uschar * filename, const uschar * query,
- int length, uschar ** result, uschar ** errmsg, uint * do_cache)
+ int length, uschar ** result, uschar ** errmsg, uint * do_cache,
+ const uschar * opts)
{
handle = handle; /* Keep picky compilers happy */
filename = filename;
static int
whoson_find(void * handle, const uschar * filename, uschar * query, int length,
- uschar ** result, uschar ** errmsg, uint * do_cache)
+ uschar ** result, uschar ** errmsg, uint * do_cache, const uschar * opts)
{
uschar buffer[80];
handle = handle; /* Keep picky compilers happy */
const check_string_block *cb = arg;
int search_type, partial, affixlen, starflags;
int expand_setup = cb->expand_setup;
-const uschar *affix;
+const uschar * affix, * opts;
uschar *s;
uschar *filename = NULL;
uschar *keyquery, *result, *semicolon;
*semicolon = 0;
search_type = search_findtype_partial(pattern, &partial, &affix, &affixlen,
- &starflags);
+ &starflags, &opts);
*semicolon = ';';
if (search_type < 0) log_write(0, LOG_MAIN|LOG_PANIC_DIE, "%s",
search_error_message);
if (!(handle = search_open(filename, search_type, 0, NULL, NULL)))
log_write(0, LOG_MAIN|LOG_PANIC_DIE, "%s", search_error_message);
result = search_find(handle, filename, keyquery, partial, affix, affixlen,
- starflags, &expand_setup);
+ starflags, &expand_setup, opts);
if (!result) return f.search_find_defer? DEFER : FAIL;
if (valueptr) *valueptr = result;
otherwise it's a literal string
afflen the length of the affix
starflags where to put the SEARCH_STAR and SEARCH_STARAT flags
+ opts where to put the options
Returns: +ve => valid lookup name; value is offset in lookup_list
-ve => invalid name; message in search_error_message.
int
search_findtype_partial(const uschar *name, int *ptypeptr, const uschar **ptypeaff,
- int *afflen, int *starflags)
+ int *afflen, int *starflags, const uschar ** opts)
{
int len, stype;
int pv = -1;
const uschar *ss = name;
+const uschar * t;
*starflags = 0;
*ptypeaff = NULL;
}
}
-/* Now we are left with a lookup name, possibly followed by * or *@. */
+/* Now we are left with a lookup name, possibly followed by * or *@,
+and then by options starting with a "," */
+#ifdef old
len = Ustrlen(ss);
if (len >= 2 && Ustrncmp(ss + len - 2, "*@", 2) == 0)
{
*starflags |= SEARCH_STAR;
len--;
}
+#endif
+
+len = Ustrlen(ss);
+if ((t = Ustrchr(ss, '*')))
+ {
+ len = t - ss;
+ *starflags |= (t[1] == '@' ? SEARCH_STARAT : SEARCH_STAR);
+ }
+else
+ t = ss;
+
+* USS opts = (t = Ustrchr(t, ',')) ? string_copy(t+1) : NULL;
/* Check for the individual search type. Only those that are actually in the
binary are valid. For query-style types, "partial" and default types are
NULL for query-style searches
keystring the keystring for single-key+file lookups, or
the querystring for query-style lookups
+ opts type-specific options
Returns: a pointer to a dynamic string containing the answer,
or NULL if the query failed or was deferred; in the
*/
static uschar *
-internal_search_find(void * handle, const uschar * filename, uschar * keystring)
+internal_search_find(void * handle, const uschar * filename, uschar * keystring,
+ const uschar * opts)
{
tree_node * t = (tree_node *)handle;
search_cache * c = (search_cache *)(t->data.ptr);
f.search_find_defer = FALSE;
DEBUG(D_lookup) debug_printf_indent("internal_search_find: file=\"%s\"\n "
- "type=%s key=\"%s\"\n", filename,
- lookup_list[search_type]->name, keystring);
+ "type=%s key=\"%s\" opts=%s%s%s\n", filename,
+ lookup_list[search_type]->name, keystring,
+ opts ? "\"" : "", opts, opts ? "\"" : "");
/* Insurance. If the keystring is empty, just fail. */
distinguish if necessary. */
if (lookup_list[search_type]->find(c->handle, filename, keystring, keylength,
- &data, &search_error_message, &do_cache) == DEFER)
+ &data, &search_error_message, &do_cache, opts) == DEFER)
f.search_find_defer = TRUE;
/* A record that has been found is now in data, which is either NULL
starflags SEARCH_STAR and SEARCH_STARAT flags
expand_setup pointer to offset for setting up expansion strings;
don't do any if < 0
+ opts type-specific options
Returns: a pointer to a dynamic string containing the answer,
or NULL if the query failed or was deferred; in the
uschar *
search_find(void * handle, const uschar * filename, uschar * keystring,
int partial, const uschar * affix, int affixlen, int starflags,
- int * expand_setup)
+ int * expand_setup, const uschar * opts)
{
tree_node *t = (tree_node *)handle;
BOOL set_null_wild = FALSE;
{
if (partial < 0) affixlen = 99; /* So that "NULL" prints */
debug_printf_indent("search_find: file=\"%s\"\n key=\"%s\" "
- "partial=%d affix=%.*s starflags=%x\n",
- (filename == NULL)? US"NULL" : filename,
- keystring, partial, affixlen, affix, starflags);
+ "partial=%d affix=%.*s starflags=%x opts=%s%s%s\n",
+ filename ? filename : US"NULL",
+ keystring, partial, affixlen, affix, starflags,
+ opts ? "\"" : "", opts, opts ? "\"" : "");
+
}
/* Arrange to put this database at the top of the LRU chain if it is a type
/* First of all, try to match the key string verbatim. If matched a complete
entry but could have been partial, flag to set up variables. */
-yield = internal_search_find(handle, filename, keystring);
+yield = internal_search_find(handle, filename, keystring, opts);
if (f.search_find_defer) return NULL;
if (yield) { if (partial >= 0) set_null_wild = TRUE; }
Ustrncpy(keystring2, affix, affixlen);
Ustrcpy(keystring2 + affixlen, keystring);
DEBUG(D_lookup) debug_printf_indent("trying partial match %s\n", keystring2);
- yield = internal_search_find(handle, filename, keystring2);
+ yield = internal_search_find(handle, filename, keystring2, opts);
if (f.search_find_defer) return NULL;
}
}
DEBUG(D_lookup) debug_printf_indent("trying partial match %s\n", keystring3);
- yield = internal_search_find(handle, filename, keystring3);
+ yield = internal_search_find(handle, filename, keystring3, opts);
if (f.search_find_defer) return NULL;
if (yield)
{
*atat = '*';
DEBUG(D_lookup) debug_printf_indent("trying default match %s\n", atat);
- yield = internal_search_find(handle, filename, atat);
+ yield = internal_search_find(handle, filename, atat, opts);
*atat = savechar;
if (f.search_find_defer) return NULL;
if (!yield && starflags & (SEARCH_STAR|SEARCH_STARAT))
{
DEBUG(D_lookup) debug_printf_indent("trying to match *\n");
- yield = internal_search_find(handle, filename, US"*");
+ yield = internal_search_find(handle, filename, US"*", opts);
if (yield && expand_setup && *expand_setup >= 0)
{
*expand_setup += 1;
BOOL isquery = FALSE;
BOOL isiponly = cb->host_name != NULL && cb->host_name[0] == 0;
const uschar *t;
-uschar *semicolon;
+uschar * semicolon, * endname, * opts;
uschar **aliases;
/* Optimize for the special case when the pattern is "*". */
/* See if there is a semicolon in the pattern */
-semicolon = Ustrchr(ss, ';');
+if ((semicolon = Ustrchr(ss, ';')))
+ endname = (opts = Ustrchr(ss, ',')) ? opts : semicolon;
/* If we are doing an IP address only match, then all lookups must be IP
address lookups, even if there is no "net-". */
if (isiponly)
- {
iplookup = semicolon != NULL;
- }
/* Otherwise, if the item is of the form net[n]-lookup;<file|query> then it is
a lookup on a masked IP network, in textual form. We obey this code even if we
From release 4.30, the use of net- for query style is no longer needed, but we
retain it for backward compatibility. */
-if (Ustrncmp(ss, "net", 3) == 0 && semicolon != NULL)
+if (Ustrncmp(ss, "net", 3) == 0 && semicolon)
{
mlen = 0;
for (t = ss + 3; isdigit(*t); t++) mlen = mlen * 10 + *t - '0';
if (mlen == 0 && t == ss+3) mlen = -1; /* No mask supplied */
- iplookup = (*t++ == '-');
+ iplookup = *t++ == '-';
}
else
t = ss;
/* Find the search type */
- search_type = search_findtype(t, semicolon - t);
+ search_type = search_findtype(t, endname - t);
if (search_type < 0) log_write(0, LOG_MAIN|LOG_PANIC_DIE, "%s",
search_error_message);
if (!(handle = search_open(filename, search_type, 0, NULL, NULL)))
log_write(0, LOG_MAIN|LOG_PANIC_DIE, "%s", search_error_message);
- result = search_find(handle, filename, key, -1, NULL, 0, 0, NULL);
+ result = search_find(handle, filename, key, -1, NULL, 0, 0, NULL, opts);
if (valueptr) *valueptr = result;
return result ? OK : f.search_find_defer ? DEFER: FAIL;
}
outgoing hosts, the name is always given explicitly. If it is NULL, it means we
must use sender_host_name and its aliases, looking them up if necessary. */
-if (cb->host_name != NULL) /* Explicit host name given */
+if (cb->host_name) /* Explicit host name given */
return match_check_string(cb->host_name, ss, -1, TRUE, TRUE, TRUE,
valueptr);
$sender_host_name causes it to be looked up, so we don't need to do the lookup
on spec. */
-if ((semicolon = Ustrchr(ss, ';')) != NULL)
+if ((semicolon = Ustrchr(ss, ';')))
{
- const uschar *affix;
+ const uschar * affix, * opts;
int partial, affixlen, starflags, id;
*semicolon = 0;
- id = search_findtype_partial(ss, &partial, &affix, &affixlen, &starflags);
+ id = search_findtype_partial(ss, &partial, &affix, &affixlen, &starflags,
+ &opts);
*semicolon=';';
if (id < 0) /* Unknown lookup type */
sender_rcvhost = ten-1.test.ex ([V4NET.0.0.1])
search_open: lsearch "TESTSUITE/aux-fixed/0002.lsearch"
search_find: file="TESTSUITE/aux-fixed/0002.lsearch"
- key="ten-1.test.ex" partial=2 affix=*. starflags=0
+ key="ten-1.test.ex" partial=2 affix=*. starflags=0 opts=NULL
LRU list:
0TESTSUITE/aux-fixed/0002.lsearch
End
internal_search_find: file="TESTSUITE/aux-fixed/0002.lsearch"
- type=lsearch key="ten-1.test.ex"
+ type=lsearch key="ten-1.test.ex" opts=NULL
file lookup required for ten-1.test.ex
in TESTSUITE/aux-fixed/0002.lsearch
lookup yielded:
check hosts = net-lsearch;TESTSUITE/aux-fixed/0002.lsearch
search_open: lsearch "TESTSUITE/aux-fixed/0002.lsearch"
search_find: file="TESTSUITE/aux-fixed/0002.lsearch"
- key="V4NET.0.0.2" partial=-1 affix=NULL starflags=0
+ key="V4NET.0.0.2" partial=-1 affix=NULL starflags=0 opts=NULL
LRU list:
0TESTSUITE/aux-fixed/0002.lsearch
End
internal_search_find: file="TESTSUITE/aux-fixed/0002.lsearch"
- type=lsearch key="V4NET.0.0.2"
+ type=lsearch key="V4NET.0.0.2" opts=NULL
file lookup required for V4NET.0.0.2
in TESTSUITE/aux-fixed/0002.lsearch
lookup failed
checking local_parts
search_open: lsearch "TESTSUITE/aux-fixed/0085.data"
search_find: file="TESTSUITE/aux-fixed/0085.data"
- key="smart.domain" partial=-1 affix=NULL starflags=0
+ key="smart.domain" partial=-1 affix=NULL starflags=0 opts=NULL
LRU list:
0TESTSUITE/aux-fixed/0085.data
End
internal_search_find: file="TESTSUITE/aux-fixed/0085.data"
- type=lsearch key="smart.domain"
+ type=lsearch key="smart.domain" opts=NULL
file lookup required for smart.domain
in TESTSUITE/aux-fixed/0085.data
lookup yielded: x : y : abc@d.e.f
search_open: lsearch "TESTSUITE/aux-fixed/0085.data"
cached open
search_find: file="TESTSUITE/aux-fixed/0085.data"
- key="smart.domain" partial=-1 affix=NULL starflags=0
+ key="smart.domain" partial=-1 affix=NULL starflags=0 opts=NULL
LRU list:
0TESTSUITE/aux-fixed/0085.data
End
internal_search_find: file="TESTSUITE/aux-fixed/0085.data"
- type=lsearch key="smart.domain"
+ type=lsearch key="smart.domain" opts=NULL
cached data used for lookup of smart.domain
in TESTSUITE/aux-fixed/0085.data
lookup yielded: x : y : abc@d.e.f
search_open: lsearch "TESTSUITE/aux-fixed/0085.data"
cached open
search_find: file="TESTSUITE/aux-fixed/0085.data"
- key="test.ex" partial=-1 affix=NULL starflags=0
+ key="test.ex" partial=-1 affix=NULL starflags=0 opts=NULL
LRU list:
0TESTSUITE/aux-fixed/0085.data
End
internal_search_find: file="TESTSUITE/aux-fixed/0085.data"
- type=lsearch key="test.ex"
+ type=lsearch key="test.ex" opts=NULL
file lookup required for test.ex
in TESTSUITE/aux-fixed/0085.data
lookup yielded: x : y : abc@d.e.f
search_open: lsearch "TESTSUITE/aux-fixed/0085.data"
cached open
search_find: file="TESTSUITE/aux-fixed/0085.data"
- key="test.ex" partial=-1 affix=NULL starflags=0
+ key="test.ex" partial=-1 affix=NULL starflags=0 opts=NULL
LRU list:
0TESTSUITE/aux-fixed/0085.data
End
internal_search_find: file="TESTSUITE/aux-fixed/0085.data"
- type=lsearch key="test.ex"
+ type=lsearch key="test.ex" opts=NULL
cached data used for lookup of test.ex
in TESTSUITE/aux-fixed/0085.data
lookup yielded: x : y : abc@d.e.f
search_open: lsearch "TESTSUITE/aux-fixed/0085.data"
cached open
search_find: file="TESTSUITE/aux-fixed/0085.data"
- key="test.ex.files" partial=-1 affix=NULL starflags=0
+ key="test.ex.files" partial=-1 affix=NULL starflags=0 opts=NULL
LRU list:
0TESTSUITE/aux-fixed/0085.data
End
internal_search_find: file="TESTSUITE/aux-fixed/0085.data"
- type=lsearch key="test.ex.files"
+ type=lsearch key="test.ex.files" opts=NULL
file lookup required for test.ex.files
in TESTSUITE/aux-fixed/0085.data
lookup yielded: /etc/passwd
checking local_parts
search_open: lsearch "TESTSUITE/aux-fixed/0085.data"
search_find: file="TESTSUITE/aux-fixed/0085.data"
- key="smart.domain" partial=-1 affix=NULL starflags=0
+ key="smart.domain" partial=-1 affix=NULL starflags=0 opts=NULL
LRU list:
0TESTSUITE/aux-fixed/0085.data
End
internal_search_find: file="TESTSUITE/aux-fixed/0085.data"
- type=lsearch key="smart.domain"
+ type=lsearch key="smart.domain" opts=NULL
file lookup required for smart.domain
in TESTSUITE/aux-fixed/0085.data
lookup yielded: x : y : abc@d.e.f
search_open: lsearch "TESTSUITE/aux-fixed/0085.data"
cached open
search_find: file="TESTSUITE/aux-fixed/0085.data"
- key="smart.domain" partial=-1 affix=NULL starflags=0
+ key="smart.domain" partial=-1 affix=NULL starflags=0 opts=NULL
LRU list:
0TESTSUITE/aux-fixed/0085.data
End
internal_search_find: file="TESTSUITE/aux-fixed/0085.data"
- type=lsearch key="smart.domain"
+ type=lsearch key="smart.domain" opts=NULL
cached data used for lookup of smart.domain
in TESTSUITE/aux-fixed/0085.data
lookup yielded: x : y : abc@d.e.f
search_open: lsearch "TESTSUITE/aux-fixed/0085.data"
cached open
search_find: file="TESTSUITE/aux-fixed/0085.data"
- key="test.ex" partial=-1 affix=NULL starflags=0
+ key="test.ex" partial=-1 affix=NULL starflags=0 opts=NULL
LRU list:
0TESTSUITE/aux-fixed/0085.data
End
internal_search_find: file="TESTSUITE/aux-fixed/0085.data"
- type=lsearch key="test.ex"
+ type=lsearch key="test.ex" opts=NULL
file lookup required for test.ex
in TESTSUITE/aux-fixed/0085.data
lookup yielded: x : y : abc@d.e.f
search_open: lsearch "TESTSUITE/aux-fixed/0085.data"
cached open
search_find: file="TESTSUITE/aux-fixed/0085.data"
- key="test.ex" partial=-1 affix=NULL starflags=0
+ key="test.ex" partial=-1 affix=NULL starflags=0 opts=NULL
LRU list:
0TESTSUITE/aux-fixed/0085.data
End
internal_search_find: file="TESTSUITE/aux-fixed/0085.data"
- type=lsearch key="test.ex"
+ type=lsearch key="test.ex" opts=NULL
cached data used for lookup of test.ex
in TESTSUITE/aux-fixed/0085.data
lookup yielded: x : y : abc@d.e.f
rda_interpret (string): '${lookup{$local_part}lsearch{TESTSUITE/aux-fixed/0123.aliases1}}'
search_open: lsearch "TESTSUITE/aux-fixed/0123.aliases1"
search_find: file="TESTSUITE/aux-fixed/0123.aliases1"
- key="x" partial=-1 affix=NULL starflags=0
+ key="x" partial=-1 affix=NULL starflags=0 opts=NULL
LRU list:
0TESTSUITE/aux-fixed/0123.aliases1
End
internal_search_find: file="TESTSUITE/aux-fixed/0123.aliases1"
- type=lsearch key="x"
+ type=lsearch key="x" opts=NULL
file lookup required for x
in TESTSUITE/aux-fixed/0123.aliases1
lookup failed
rda_interpret (string): '${lookup{$local_part}lsearch{TESTSUITE/aux-fixed/0123.aliases2}}'
search_open: lsearch "TESTSUITE/aux-fixed/0123.aliases2"
search_find: file="TESTSUITE/aux-fixed/0123.aliases2"
- key="x" partial=-1 affix=NULL starflags=0
+ key="x" partial=-1 affix=NULL starflags=0 opts=NULL
LRU list:
0TESTSUITE/aux-fixed/0123.aliases2
0TESTSUITE/aux-fixed/0123.aliases1
End
internal_search_find: file="TESTSUITE/aux-fixed/0123.aliases2"
- type=lsearch key="x"
+ type=lsearch key="x" opts=NULL
file lookup required for x
in TESTSUITE/aux-fixed/0123.aliases2
lookup failed
Too many lookup files open
closing 0TESTSUITE/aux-fixed/0123.aliases1
search_find: file="TESTSUITE/aux-fixed/0123.aliases3"
- key="x" partial=-1 affix=NULL starflags=0
+ key="x" partial=-1 affix=NULL starflags=0 opts=NULL
LRU list:
0TESTSUITE/aux-fixed/0123.aliases3
0TESTSUITE/aux-fixed/0123.aliases2
End
internal_search_find: file="TESTSUITE/aux-fixed/0123.aliases3"
- type=lsearch key="x"
+ type=lsearch key="x" opts=NULL
file lookup required for x
in TESTSUITE/aux-fixed/0123.aliases3
lookup failed
Too many lookup files open
closing 0TESTSUITE/aux-fixed/0123.aliases2
search_find: file="TESTSUITE/aux-fixed/0123.aliases4"
- key="x" partial=-1 affix=NULL starflags=0
+ key="x" partial=-1 affix=NULL starflags=0 opts=NULL
LRU list:
0TESTSUITE/aux-fixed/0123.aliases4
0TESTSUITE/aux-fixed/0123.aliases3
End
internal_search_find: file="TESTSUITE/aux-fixed/0123.aliases4"
- type=lsearch key="x"
+ type=lsearch key="x" opts=NULL
file lookup required for x
in TESTSUITE/aux-fixed/0123.aliases4
lookup failed
Too many lookup files open
closing 0TESTSUITE/aux-fixed/0123.aliases3
search_find: file="TESTSUITE/aux-fixed/0123.aliases5"
- key="x" partial=-1 affix=NULL starflags=0
+ key="x" partial=-1 affix=NULL starflags=0 opts=NULL
LRU list:
0TESTSUITE/aux-fixed/0123.aliases5
0TESTSUITE/aux-fixed/0123.aliases4
End
internal_search_find: file="TESTSUITE/aux-fixed/0123.aliases5"
- type=lsearch key="x"
+ type=lsearch key="x" opts=NULL
file lookup required for x
in TESTSUITE/aux-fixed/0123.aliases5
lookup failed
Too many lookup files open
closing 0TESTSUITE/aux-fixed/0123.aliases4
search_find: file="TESTSUITE/aux-fixed/0123.aliases6"
- key="x" partial=-1 affix=NULL starflags=0
+ key="x" partial=-1 affix=NULL starflags=0 opts=NULL
LRU list:
0TESTSUITE/aux-fixed/0123.aliases6
0TESTSUITE/aux-fixed/0123.aliases5
End
internal_search_find: file="TESTSUITE/aux-fixed/0123.aliases6"
- type=lsearch key="x"
+ type=lsearch key="x" opts=NULL
file lookup required for x
in TESTSUITE/aux-fixed/0123.aliases6
lookup failed
Too many lookup files open
closing 0TESTSUITE/aux-fixed/0123.aliases5
search_find: file="TESTSUITE/aux-fixed/0123.aliases1"
- key="y" partial=-1 affix=NULL starflags=0
+ key="y" partial=-1 affix=NULL starflags=0 opts=NULL
LRU list:
0TESTSUITE/aux-fixed/0123.aliases1
0TESTSUITE/aux-fixed/0123.aliases6
End
internal_search_find: file="TESTSUITE/aux-fixed/0123.aliases1"
- type=lsearch key="y"
+ type=lsearch key="y" opts=NULL
file lookup required for y
in TESTSUITE/aux-fixed/0123.aliases1
lookup failed
Too many lookup files open
closing 0TESTSUITE/aux-fixed/0123.aliases6
search_find: file="TESTSUITE/aux-fixed/0123.aliases2"
- key="y" partial=-1 affix=NULL starflags=0
+ key="y" partial=-1 affix=NULL starflags=0 opts=NULL
LRU list:
0TESTSUITE/aux-fixed/0123.aliases2
0TESTSUITE/aux-fixed/0123.aliases1
End
internal_search_find: file="TESTSUITE/aux-fixed/0123.aliases2"
- type=lsearch key="y"
+ type=lsearch key="y" opts=NULL
file lookup required for y
in TESTSUITE/aux-fixed/0123.aliases2
lookup failed
Too many lookup files open
closing 0TESTSUITE/aux-fixed/0123.aliases1
search_find: file="TESTSUITE/aux-fixed/0123.aliases3"
- key="y" partial=-1 affix=NULL starflags=0
+ key="y" partial=-1 affix=NULL starflags=0 opts=NULL
LRU list:
0TESTSUITE/aux-fixed/0123.aliases3
0TESTSUITE/aux-fixed/0123.aliases2
End
internal_search_find: file="TESTSUITE/aux-fixed/0123.aliases3"
- type=lsearch key="y"
+ type=lsearch key="y" opts=NULL
file lookup required for y
in TESTSUITE/aux-fixed/0123.aliases3
lookup failed
Too many lookup files open
closing 0TESTSUITE/aux-fixed/0123.aliases2
search_find: file="TESTSUITE/aux-fixed/0123.aliases4"
- key="y" partial=-1 affix=NULL starflags=0
+ key="y" partial=-1 affix=NULL starflags=0 opts=NULL
LRU list:
0TESTSUITE/aux-fixed/0123.aliases4
0TESTSUITE/aux-fixed/0123.aliases3
End
internal_search_find: file="TESTSUITE/aux-fixed/0123.aliases4"
- type=lsearch key="y"
+ type=lsearch key="y" opts=NULL
file lookup required for y
in TESTSUITE/aux-fixed/0123.aliases4
lookup failed
Too many lookup files open
closing 0TESTSUITE/aux-fixed/0123.aliases3
search_find: file="TESTSUITE/aux-fixed/0123.aliases5"
- key="y" partial=-1 affix=NULL starflags=0
+ key="y" partial=-1 affix=NULL starflags=0 opts=NULL
LRU list:
0TESTSUITE/aux-fixed/0123.aliases5
0TESTSUITE/aux-fixed/0123.aliases4
End
internal_search_find: file="TESTSUITE/aux-fixed/0123.aliases5"
- type=lsearch key="y"
+ type=lsearch key="y" opts=NULL
file lookup required for y
in TESTSUITE/aux-fixed/0123.aliases5
lookup failed
Too many lookup files open
closing 0TESTSUITE/aux-fixed/0123.aliases4
search_find: file="TESTSUITE/aux-fixed/0123.aliases6"
- key="y" partial=-1 affix=NULL starflags=0
+ key="y" partial=-1 affix=NULL starflags=0 opts=NULL
LRU list:
0TESTSUITE/aux-fixed/0123.aliases6
0TESTSUITE/aux-fixed/0123.aliases5
End
internal_search_find: file="TESTSUITE/aux-fixed/0123.aliases6"
- type=lsearch key="y"
+ type=lsearch key="y" opts=NULL
file lookup required for y
in TESTSUITE/aux-fixed/0123.aliases6
lookup failed
Too many lookup files open
closing 0TESTSUITE/aux-fixed/0123.aliases5
search_find: file="TESTSUITE/aux-fixed/0123.aliases1"
- key="z" partial=-1 affix=NULL starflags=0
+ key="z" partial=-1 affix=NULL starflags=0 opts=NULL
LRU list:
0TESTSUITE/aux-fixed/0123.aliases1
0TESTSUITE/aux-fixed/0123.aliases6
End
internal_search_find: file="TESTSUITE/aux-fixed/0123.aliases1"
- type=lsearch key="z"
+ type=lsearch key="z" opts=NULL
file lookup required for z
in TESTSUITE/aux-fixed/0123.aliases1
lookup failed
Too many lookup files open
closing 0TESTSUITE/aux-fixed/0123.aliases6
search_find: file="TESTSUITE/aux-fixed/0123.aliases2"
- key="z" partial=-1 affix=NULL starflags=0
+ key="z" partial=-1 affix=NULL starflags=0 opts=NULL
LRU list:
0TESTSUITE/aux-fixed/0123.aliases2
0TESTSUITE/aux-fixed/0123.aliases1
End
internal_search_find: file="TESTSUITE/aux-fixed/0123.aliases2"
- type=lsearch key="z"
+ type=lsearch key="z" opts=NULL
file lookup required for z
in TESTSUITE/aux-fixed/0123.aliases2
lookup failed
Too many lookup files open
closing 0TESTSUITE/aux-fixed/0123.aliases1
search_find: file="TESTSUITE/aux-fixed/0123.aliases3"
- key="z" partial=-1 affix=NULL starflags=0
+ key="z" partial=-1 affix=NULL starflags=0 opts=NULL
LRU list:
0TESTSUITE/aux-fixed/0123.aliases3
0TESTSUITE/aux-fixed/0123.aliases2
End
internal_search_find: file="TESTSUITE/aux-fixed/0123.aliases3"
- type=lsearch key="z"
+ type=lsearch key="z" opts=NULL
file lookup required for z
in TESTSUITE/aux-fixed/0123.aliases3
lookup failed
Too many lookup files open
closing 0TESTSUITE/aux-fixed/0123.aliases2
search_find: file="TESTSUITE/aux-fixed/0123.aliases4"
- key="z" partial=-1 affix=NULL starflags=0
+ key="z" partial=-1 affix=NULL starflags=0 opts=NULL
LRU list:
0TESTSUITE/aux-fixed/0123.aliases4
0TESTSUITE/aux-fixed/0123.aliases3
End
internal_search_find: file="TESTSUITE/aux-fixed/0123.aliases4"
- type=lsearch key="z"
+ type=lsearch key="z" opts=NULL
file lookup required for z
in TESTSUITE/aux-fixed/0123.aliases4
lookup failed
Too many lookup files open
closing 0TESTSUITE/aux-fixed/0123.aliases3
search_find: file="TESTSUITE/aux-fixed/0123.aliases5"
- key="z" partial=-1 affix=NULL starflags=0
+ key="z" partial=-1 affix=NULL starflags=0 opts=NULL
LRU list:
0TESTSUITE/aux-fixed/0123.aliases5
0TESTSUITE/aux-fixed/0123.aliases4
End
internal_search_find: file="TESTSUITE/aux-fixed/0123.aliases5"
- type=lsearch key="z"
+ type=lsearch key="z" opts=NULL
file lookup required for z
in TESTSUITE/aux-fixed/0123.aliases5
lookup failed
Too many lookup files open
closing 0TESTSUITE/aux-fixed/0123.aliases4
search_find: file="TESTSUITE/aux-fixed/0123.aliases6"
- key="z" partial=-1 affix=NULL starflags=0
+ key="z" partial=-1 affix=NULL starflags=0 opts=NULL
LRU list:
0TESTSUITE/aux-fixed/0123.aliases6
0TESTSUITE/aux-fixed/0123.aliases5
End
internal_search_find: file="TESTSUITE/aux-fixed/0123.aliases6"
- type=lsearch key="z"
+ type=lsearch key="z" opts=NULL
file lookup required for z
in TESTSUITE/aux-fixed/0123.aliases6
lookup failed
dropping to exim gid; retaining priv uid
search_open: lsearch "TESTSUITE/aux-fixed/0387.1"
search_find: file="TESTSUITE/aux-fixed/0387.1"
- key="a.b.c" partial=2 affix=*. starflags=0
+ key="a.b.c" partial=2 affix=*. starflags=0 opts=NULL
LRU list:
0TESTSUITE/aux-fixed/0387.1
End
internal_search_find: file="TESTSUITE/aux-fixed/0387.1"
- type=lsearch key="a.b.c"
+ type=lsearch key="a.b.c" opts=NULL
file lookup required for a.b.c
in TESTSUITE/aux-fixed/0387.1
lookup failed
trying partial match *.a.b.c
internal_search_find: file="TESTSUITE/aux-fixed/0387.1"
- type=lsearch key="*.a.b.c"
+ type=lsearch key="*.a.b.c" opts=NULL
file lookup required for *.a.b.c
in TESTSUITE/aux-fixed/0387.1
lookup failed
trying partial match *.b.c
internal_search_find: file="TESTSUITE/aux-fixed/0387.1"
- type=lsearch key="*.b.c"
+ type=lsearch key="*.b.c" opts=NULL
file lookup required for *.b.c
in TESTSUITE/aux-fixed/0387.1
lookup yielded: [*.b.c]
search_open: lsearch "TESTSUITE/aux-fixed/0387.1"
cached open
search_find: file="TESTSUITE/aux-fixed/0387.1"
- key="x.y.c" partial=2 affix=*. starflags=0
+ key="x.y.c" partial=2 affix=*. starflags=0 opts=NULL
LRU list:
0TESTSUITE/aux-fixed/0387.1
End
internal_search_find: file="TESTSUITE/aux-fixed/0387.1"
- type=lsearch key="x.y.c"
+ type=lsearch key="x.y.c" opts=NULL
file lookup required for x.y.c
in TESTSUITE/aux-fixed/0387.1
lookup failed
trying partial match *.x.y.c
internal_search_find: file="TESTSUITE/aux-fixed/0387.1"
- type=lsearch key="*.x.y.c"
+ type=lsearch key="*.x.y.c" opts=NULL
file lookup required for *.x.y.c
in TESTSUITE/aux-fixed/0387.1
lookup failed
trying partial match *.y.c
internal_search_find: file="TESTSUITE/aux-fixed/0387.1"
- type=lsearch key="*.y.c"
+ type=lsearch key="*.y.c" opts=NULL
file lookup required for *.y.c
in TESTSUITE/aux-fixed/0387.1
lookup failed
search_open: lsearch "TESTSUITE/aux-fixed/0387.1"
cached open
search_find: file="TESTSUITE/aux-fixed/0387.1"
- key="x.y.c" partial=2 affix=*. starflags=1
+ key="x.y.c" partial=2 affix=*. starflags=1 opts=NULL
LRU list:
0TESTSUITE/aux-fixed/0387.1
End
internal_search_find: file="TESTSUITE/aux-fixed/0387.1"
- type=lsearch key="x.y.c"
+ type=lsearch key="x.y.c" opts=NULL
cached data used for lookup of x.y.c
in TESTSUITE/aux-fixed/0387.1
lookup failed
trying partial match *.x.y.c
internal_search_find: file="TESTSUITE/aux-fixed/0387.1"
- type=lsearch key="*.x.y.c"
+ type=lsearch key="*.x.y.c" opts=NULL
cached data used for lookup of *.x.y.c
in TESTSUITE/aux-fixed/0387.1
lookup failed
trying partial match *.y.c
internal_search_find: file="TESTSUITE/aux-fixed/0387.1"
- type=lsearch key="*.y.c"
+ type=lsearch key="*.y.c" opts=NULL
cached data used for lookup of *.y.c
in TESTSUITE/aux-fixed/0387.1
lookup failed
trying to match *
internal_search_find: file="TESTSUITE/aux-fixed/0387.1"
- type=lsearch key="*"
+ type=lsearch key="*" opts=NULL
file lookup required for *
in TESTSUITE/aux-fixed/0387.1
lookup yielded: [*]
search_open: lsearch "TESTSUITE/aux-fixed/0387.1"
cached open
search_find: file="TESTSUITE/aux-fixed/0387.1"
- key="x.y.c" partial=1 affix=*. starflags=0
+ key="x.y.c" partial=1 affix=*. starflags=0 opts=NULL
LRU list:
0TESTSUITE/aux-fixed/0387.1
End
internal_search_find: file="TESTSUITE/aux-fixed/0387.1"
- type=lsearch key="x.y.c"
+ type=lsearch key="x.y.c" opts=NULL
cached data used for lookup of x.y.c
in TESTSUITE/aux-fixed/0387.1
lookup failed
trying partial match *.x.y.c
internal_search_find: file="TESTSUITE/aux-fixed/0387.1"
- type=lsearch key="*.x.y.c"
+ type=lsearch key="*.x.y.c" opts=NULL
cached data used for lookup of *.x.y.c
in TESTSUITE/aux-fixed/0387.1
lookup failed
trying partial match *.y.c
internal_search_find: file="TESTSUITE/aux-fixed/0387.1"
- type=lsearch key="*.y.c"
+ type=lsearch key="*.y.c" opts=NULL
cached data used for lookup of *.y.c
in TESTSUITE/aux-fixed/0387.1
lookup failed
trying partial match *.c
internal_search_find: file="TESTSUITE/aux-fixed/0387.1"
- type=lsearch key="*.c"
+ type=lsearch key="*.c" opts=NULL
file lookup required for *.c
in TESTSUITE/aux-fixed/0387.1
lookup yielded: [*.c]
search_open: lsearch "TESTSUITE/aux-fixed/0387.1"
cached open
search_find: file="TESTSUITE/aux-fixed/0387.1"
- key="x@y.c" partial=1 affix=*. starflags=2
+ key="x@y.c" partial=1 affix=*. starflags=2 opts=NULL
LRU list:
0TESTSUITE/aux-fixed/0387.1
End
internal_search_find: file="TESTSUITE/aux-fixed/0387.1"
- type=lsearch key="x@y.c"
+ type=lsearch key="x@y.c" opts=NULL
file lookup required for x@y.c
in TESTSUITE/aux-fixed/0387.1
lookup failed
trying partial match *.x@y.c
internal_search_find: file="TESTSUITE/aux-fixed/0387.1"
- type=lsearch key="*.x@y.c"
+ type=lsearch key="*.x@y.c" opts=NULL
file lookup required for *.x@y.c
in TESTSUITE/aux-fixed/0387.1
lookup failed
trying partial match *.c
internal_search_find: file="TESTSUITE/aux-fixed/0387.1"
- type=lsearch key="*.c"
+ type=lsearch key="*.c" opts=NULL
cached data used for lookup of *.c
in TESTSUITE/aux-fixed/0387.1
lookup yielded: [*.c]
search_open: lsearch "TESTSUITE/aux-fixed/0387.1"
cached open
search_find: file="TESTSUITE/aux-fixed/0387.1"
- key="x@y.c" partial=-1 affix=NULL starflags=2
+ key="x@y.c" partial=-1 affix=NULL starflags=2 opts=NULL
LRU list:
0TESTSUITE/aux-fixed/0387.1
End
internal_search_find: file="TESTSUITE/aux-fixed/0387.1"
- type=lsearch key="x@y.c"
+ type=lsearch key="x@y.c" opts=NULL
cached data used for lookup of x@y.c
in TESTSUITE/aux-fixed/0387.1
lookup failed
trying default match *@y.c
internal_search_find: file="TESTSUITE/aux-fixed/0387.1"
- type=lsearch key="*@y.c"
+ type=lsearch key="*@y.c" opts=NULL
file lookup required for *@y.c
in TESTSUITE/aux-fixed/0387.1
lookup yielded: [*@y.c]
search_open: lsearch "TESTSUITE/aux-fixed/0387.1"
cached open
search_find: file="TESTSUITE/aux-fixed/0387.1"
- key="a.b.c" partial=2 affix=*. starflags=0
+ key="a.b.c" partial=2 affix=*. starflags=0 opts=NULL
LRU list:
0TESTSUITE/aux-fixed/0387.1
End
internal_search_find: file="TESTSUITE/aux-fixed/0387.1"
- type=lsearch key="a.b.c"
+ type=lsearch key="a.b.c" opts=NULL
cached data used for lookup of a.b.c
in TESTSUITE/aux-fixed/0387.1
lookup failed
trying partial match *.a.b.c
internal_search_find: file="TESTSUITE/aux-fixed/0387.1"
- type=lsearch key="*.a.b.c"
+ type=lsearch key="*.a.b.c" opts=NULL
cached data used for lookup of *.a.b.c
in TESTSUITE/aux-fixed/0387.1
lookup failed
trying partial match *.b.c
internal_search_find: file="TESTSUITE/aux-fixed/0387.1"
- type=lsearch key="*.b.c"
+ type=lsearch key="*.b.c" opts=NULL
cached data used for lookup of *.b.c
in TESTSUITE/aux-fixed/0387.1
lookup yielded: [*.b.c]
search_open: lsearch "TESTSUITE/aux-fixed/0387.1"
cached open
search_find: file="TESTSUITE/aux-fixed/0387.1"
- key="a.b.c" partial=2 affix=. starflags=0
+ key="a.b.c" partial=2 affix=. starflags=0 opts=NULL
LRU list:
0TESTSUITE/aux-fixed/0387.1
End
internal_search_find: file="TESTSUITE/aux-fixed/0387.1"
- type=lsearch key="a.b.c"
+ type=lsearch key="a.b.c" opts=NULL
cached data used for lookup of a.b.c
in TESTSUITE/aux-fixed/0387.1
lookup failed
trying partial match .a.b.c
internal_search_find: file="TESTSUITE/aux-fixed/0387.1"
- type=lsearch key=".a.b.c"
+ type=lsearch key=".a.b.c" opts=NULL
file lookup required for .a.b.c
in TESTSUITE/aux-fixed/0387.1
lookup failed
trying partial match .b.c
internal_search_find: file="TESTSUITE/aux-fixed/0387.1"
- type=lsearch key=".b.c"
+ type=lsearch key=".b.c" opts=NULL
file lookup required for .b.c
in TESTSUITE/aux-fixed/0387.1
lookup yielded: [.b.c]
search_open: lsearch "TESTSUITE/aux-fixed/0387.1"
cached open
search_find: file="TESTSUITE/aux-fixed/0387.1"
- key="a.b.c" partial=2 affix= starflags=0
+ key="a.b.c" partial=2 affix= starflags=0 opts=NULL
LRU list:
0TESTSUITE/aux-fixed/0387.1
End
internal_search_find: file="TESTSUITE/aux-fixed/0387.1"
- type=lsearch key="a.b.c"
+ type=lsearch key="a.b.c" opts=NULL
cached data used for lookup of a.b.c
in TESTSUITE/aux-fixed/0387.1
lookup failed
trying partial match b.c
internal_search_find: file="TESTSUITE/aux-fixed/0387.1"
- type=lsearch key="b.c"
+ type=lsearch key="b.c" opts=NULL
file lookup required for b.c
in TESTSUITE/aux-fixed/0387.1
lookup yielded: [b.c]
search_open: lsearch "TESTSUITE/aux-fixed/0387.1"
cached open
search_find: file="TESTSUITE/aux-fixed/0387.1"
- key="a.b.c" partial=2 affix=* starflags=0
+ key="a.b.c" partial=2 affix=* starflags=0 opts=NULL
LRU list:
0TESTSUITE/aux-fixed/0387.1
End
internal_search_find: file="TESTSUITE/aux-fixed/0387.1"
- type=lsearch key="a.b.c"
+ type=lsearch key="a.b.c" opts=NULL
cached data used for lookup of a.b.c
in TESTSUITE/aux-fixed/0387.1
lookup failed
trying partial match *a.b.c
internal_search_find: file="TESTSUITE/aux-fixed/0387.1"
- type=lsearch key="*a.b.c"
+ type=lsearch key="*a.b.c" opts=NULL
file lookup required for *a.b.c
in TESTSUITE/aux-fixed/0387.1
lookup failed
trying partial match *b.c
internal_search_find: file="TESTSUITE/aux-fixed/0387.1"
- type=lsearch key="*b.c"
+ type=lsearch key="*b.c" opts=NULL
file lookup required for *b.c
in TESTSUITE/aux-fixed/0387.1
lookup yielded: [*b.c]
search_open: lsearch "TESTSUITE/aux-fixed/0387.1"
cached open
search_find: file="TESTSUITE/aux-fixed/0387.1"
- key="p.q.r" partial=0 affix=*. starflags=0
+ key="p.q.r" partial=0 affix=*. starflags=0 opts=NULL
LRU list:
0TESTSUITE/aux-fixed/0387.1
End
internal_search_find: file="TESTSUITE/aux-fixed/0387.1"
- type=lsearch key="p.q.r"
+ type=lsearch key="p.q.r" opts=NULL
file lookup required for p.q.r
in TESTSUITE/aux-fixed/0387.1
lookup failed
trying partial match *.p.q.r
internal_search_find: file="TESTSUITE/aux-fixed/0387.1"
- type=lsearch key="*.p.q.r"
+ type=lsearch key="*.p.q.r" opts=NULL
file lookup required for *.p.q.r
in TESTSUITE/aux-fixed/0387.1
lookup failed
trying partial match *.q.r
internal_search_find: file="TESTSUITE/aux-fixed/0387.1"
- type=lsearch key="*.q.r"
+ type=lsearch key="*.q.r" opts=NULL
file lookup required for *.q.r
in TESTSUITE/aux-fixed/0387.1
lookup failed
trying partial match *.r
internal_search_find: file="TESTSUITE/aux-fixed/0387.1"
- type=lsearch key="*.r"
+ type=lsearch key="*.r" opts=NULL
file lookup required for *.r
in TESTSUITE/aux-fixed/0387.1
lookup failed
trying partial match *
internal_search_find: file="TESTSUITE/aux-fixed/0387.1"
- type=lsearch key="*"
+ type=lsearch key="*" opts=NULL
cached data used for lookup of *
in TESTSUITE/aux-fixed/0387.1
lookup yielded: [*]
search_open: lsearch "TESTSUITE/aux-fixed/0387.1"
cached open
search_find: file="TESTSUITE/aux-fixed/0387.1"
- key="p.q.r" partial=0 affix=. starflags=0
+ key="p.q.r" partial=0 affix=. starflags=0 opts=NULL
LRU list:
0TESTSUITE/aux-fixed/0387.1
End
internal_search_find: file="TESTSUITE/aux-fixed/0387.1"
- type=lsearch key="p.q.r"
+ type=lsearch key="p.q.r" opts=NULL
cached data used for lookup of p.q.r
in TESTSUITE/aux-fixed/0387.1
lookup failed
trying partial match .p.q.r
internal_search_find: file="TESTSUITE/aux-fixed/0387.1"
- type=lsearch key=".p.q.r"
+ type=lsearch key=".p.q.r" opts=NULL
file lookup required for .p.q.r
in TESTSUITE/aux-fixed/0387.1
lookup failed
trying partial match .q.r
internal_search_find: file="TESTSUITE/aux-fixed/0387.1"
- type=lsearch key=".q.r"
+ type=lsearch key=".q.r" opts=NULL
file lookup required for .q.r
in TESTSUITE/aux-fixed/0387.1
lookup failed
trying partial match .r
internal_search_find: file="TESTSUITE/aux-fixed/0387.1"
- type=lsearch key=".r"
+ type=lsearch key=".r" opts=NULL
file lookup required for .r
in TESTSUITE/aux-fixed/0387.1
lookup failed
trying partial match .
internal_search_find: file="TESTSUITE/aux-fixed/0387.1"
- type=lsearch key="."
+ type=lsearch key="." opts=NULL
file lookup required for .
in TESTSUITE/aux-fixed/0387.1
lookup yielded: [.]
search_open: lsearch "TESTSUITE/aux-fixed/0387.1"
cached open
search_find: file="TESTSUITE/aux-fixed/0387.1"
- key="x.aa.bb" partial=0 affix=++ starflags=0
+ key="x.aa.bb" partial=0 affix=++ starflags=0 opts=NULL
LRU list:
0TESTSUITE/aux-fixed/0387.1
End
internal_search_find: file="TESTSUITE/aux-fixed/0387.1"
- type=lsearch key="x.aa.bb"
+ type=lsearch key="x.aa.bb" opts=NULL
file lookup required for x.aa.bb
in TESTSUITE/aux-fixed/0387.1
lookup failed
trying partial match ++x.aa.bb
internal_search_find: file="TESTSUITE/aux-fixed/0387.1"
- type=lsearch key="++x.aa.bb"
+ type=lsearch key="++x.aa.bb" opts=NULL
file lookup required for ++x.aa.bb
in TESTSUITE/aux-fixed/0387.1
lookup failed
trying partial match ++aa.bb
internal_search_find: file="TESTSUITE/aux-fixed/0387.1"
- type=lsearch key="++aa.bb"
+ type=lsearch key="++aa.bb" opts=NULL
file lookup required for ++aa.bb
in TESTSUITE/aux-fixed/0387.1
lookup yielded: [++aa.bb]
search_open: lsearch "TESTSUITE/aux-fixed/0387.1"
cached open
search_find: file="TESTSUITE/aux-fixed/0387.1"
- key="x.aa.zz" partial=0 affix=++ starflags=0
+ key="x.aa.zz" partial=0 affix=++ starflags=0 opts=NULL
LRU list:
0TESTSUITE/aux-fixed/0387.1
End
internal_search_find: file="TESTSUITE/aux-fixed/0387.1"
- type=lsearch key="x.aa.zz"
+ type=lsearch key="x.aa.zz" opts=NULL
file lookup required for x.aa.zz
in TESTSUITE/aux-fixed/0387.1
lookup failed
trying partial match ++x.aa.zz
internal_search_find: file="TESTSUITE/aux-fixed/0387.1"
- type=lsearch key="++x.aa.zz"
+ type=lsearch key="++x.aa.zz" opts=NULL
file lookup required for ++x.aa.zz
in TESTSUITE/aux-fixed/0387.1
lookup failed
trying partial match ++aa.zz
internal_search_find: file="TESTSUITE/aux-fixed/0387.1"
- type=lsearch key="++aa.zz"
+ type=lsearch key="++aa.zz" opts=NULL
file lookup required for ++aa.zz
in TESTSUITE/aux-fixed/0387.1
lookup failed
trying partial match ++zz
internal_search_find: file="TESTSUITE/aux-fixed/0387.1"
- type=lsearch key="++zz"
+ type=lsearch key="++zz" opts=NULL
file lookup required for ++zz
in TESTSUITE/aux-fixed/0387.1
lookup failed
trying partial match ++
internal_search_find: file="TESTSUITE/aux-fixed/0387.1"
- type=lsearch key="++"
+ type=lsearch key="++" opts=NULL
file lookup required for ++
in TESTSUITE/aux-fixed/0387.1
lookup yielded: [++]
search_open: lsearch "TESTSUITE/aux-fixed/0387.1"
cached open
search_find: file="TESTSUITE/aux-fixed/0387.1"
- key="x.aa.zz" partial=1 affix=++ starflags=1
+ key="x.aa.zz" partial=1 affix=++ starflags=1 opts=NULL
LRU list:
0TESTSUITE/aux-fixed/0387.1
End
internal_search_find: file="TESTSUITE/aux-fixed/0387.1"
- type=lsearch key="x.aa.zz"
+ type=lsearch key="x.aa.zz" opts=NULL
cached data used for lookup of x.aa.zz
in TESTSUITE/aux-fixed/0387.1
lookup failed
trying partial match ++x.aa.zz
internal_search_find: file="TESTSUITE/aux-fixed/0387.1"
- type=lsearch key="++x.aa.zz"
+ type=lsearch key="++x.aa.zz" opts=NULL
cached data used for lookup of ++x.aa.zz
in TESTSUITE/aux-fixed/0387.1
lookup failed
trying partial match ++aa.zz
internal_search_find: file="TESTSUITE/aux-fixed/0387.1"
- type=lsearch key="++aa.zz"
+ type=lsearch key="++aa.zz" opts=NULL
cached data used for lookup of ++aa.zz
in TESTSUITE/aux-fixed/0387.1
lookup failed
trying partial match ++zz
internal_search_find: file="TESTSUITE/aux-fixed/0387.1"
- type=lsearch key="++zz"
+ type=lsearch key="++zz" opts=NULL
cached data used for lookup of ++zz
in TESTSUITE/aux-fixed/0387.1
lookup failed
trying to match *
internal_search_find: file="TESTSUITE/aux-fixed/0387.1"
- type=lsearch key="*"
+ type=lsearch key="*" opts=NULL
cached data used for lookup of *
in TESTSUITE/aux-fixed/0387.1
lookup yielded: [*]
search_open: lsearch "TESTSUITE/aux-fixed/0387.1"
cached open
search_find: file="TESTSUITE/aux-fixed/0387.1"
- key="a.b.c" partial=2 affix=*. starflags=0
+ key="a.b.c" partial=2 affix=*. starflags=0 opts=NULL
LRU list:
0TESTSUITE/aux-fixed/0387.1
End
internal_search_find: file="TESTSUITE/aux-fixed/0387.1"
- type=lsearch key="a.b.c"
+ type=lsearch key="a.b.c" opts=NULL
cached data used for lookup of a.b.c
in TESTSUITE/aux-fixed/0387.1
lookup failed
trying partial match *.a.b.c
internal_search_find: file="TESTSUITE/aux-fixed/0387.1"
- type=lsearch key="*.a.b.c"
+ type=lsearch key="*.a.b.c" opts=NULL
cached data used for lookup of *.a.b.c
in TESTSUITE/aux-fixed/0387.1
lookup failed
trying partial match *.b.c
internal_search_find: file="TESTSUITE/aux-fixed/0387.1"
- type=lsearch key="*.b.c"
+ type=lsearch key="*.b.c" opts=NULL
cached data used for lookup of *.b.c
in TESTSUITE/aux-fixed/0387.1
lookup yielded: [*.b.c]
checking domains
search_open: lsearch "TESTSUITE/aux-fixed/0403.data"
search_find: file="TESTSUITE/aux-fixed/0403.data"
- key="test.ex" partial=-1 affix=NULL starflags=0
+ key="test.ex" partial=-1 affix=NULL starflags=0 opts=NULL
LRU list:
0TESTSUITE/aux-fixed/0403.data
End
internal_search_find: file="TESTSUITE/aux-fixed/0403.data"
- type=lsearch key="test.ex"
+ type=lsearch key="test.ex" opts=NULL
file lookup required for test.ex
in TESTSUITE/aux-fixed/0403.data
lookup yielded: [DOMAINDATA_test.ex]
search_open: lsearch "TESTSUITE/aux-fixed/0403.data"
cached open
search_find: file="TESTSUITE/aux-fixed/0403.data"
- key="userx" partial=-1 affix=NULL starflags=0
+ key="userx" partial=-1 affix=NULL starflags=0 opts=NULL
LRU list:
0TESTSUITE/aux-fixed/0403.data
End
internal_search_find: file="TESTSUITE/aux-fixed/0403.data"
- type=lsearch key="userx"
+ type=lsearch key="userx" opts=NULL
file lookup required for userx
in TESTSUITE/aux-fixed/0403.data
lookup yielded: [LOCALPARTDATA_userx]
checking domains
search_open: lsearch "TESTSUITE/aux-fixed/0414.list1"
search_find: file="TESTSUITE/aux-fixed/0414.list1"
- key="b.domain" partial=-1 affix=NULL starflags=0
+ key="b.domain" partial=-1 affix=NULL starflags=0 opts=NULL
LRU list:
0TESTSUITE/aux-fixed/0414.list1
End
internal_search_find: file="TESTSUITE/aux-fixed/0414.list1"
- type=lsearch key="b.domain"
+ type=lsearch key="b.domain" opts=NULL
file lookup required for b.domain
in TESTSUITE/aux-fixed/0414.list1
lookup failed
b.domain in "lsearch;TESTSUITE/aux-fixed/0414.list1"? no (end of list)
search_open: lsearch "TESTSUITE/aux-fixed/0414.list2"
search_find: file="TESTSUITE/aux-fixed/0414.list2"
- key="b.domain" partial=-1 affix=NULL starflags=0
+ key="b.domain" partial=-1 affix=NULL starflags=0 opts=NULL
LRU list:
0TESTSUITE/aux-fixed/0414.list2
0TESTSUITE/aux-fixed/0414.list1
End
internal_search_find: file="TESTSUITE/aux-fixed/0414.list2"
- type=lsearch key="b.domain"
+ type=lsearch key="b.domain" opts=NULL
file lookup required for b.domain
in TESTSUITE/aux-fixed/0414.list2
lookup yielded: b.domain-data
search_open: lsearch "TESTSUITE/aux-fixed/0414.list1"
cached open
search_find: file="TESTSUITE/aux-fixed/0414.list1"
- key="a.domain" partial=-1 affix=NULL starflags=0
+ key="a.domain" partial=-1 affix=NULL starflags=0 opts=NULL
LRU list:
0TESTSUITE/aux-fixed/0414.list1
0TESTSUITE/aux-fixed/0414.list2
End
internal_search_find: file="TESTSUITE/aux-fixed/0414.list1"
- type=lsearch key="a.domain"
+ type=lsearch key="a.domain" opts=NULL
file lookup required for a.domain
in TESTSUITE/aux-fixed/0414.list1
lookup yielded: a.domain-data
search_open: lsearch "TESTSUITE/aux-fixed/0414.list2"
cached open
search_find: file="TESTSUITE/aux-fixed/0414.list2"
- key="a.domain" partial=-1 affix=NULL starflags=0
+ key="a.domain" partial=-1 affix=NULL starflags=0 opts=NULL
LRU list:
0TESTSUITE/aux-fixed/0414.list2
0TESTSUITE/aux-fixed/0414.list1
End
internal_search_find: file="TESTSUITE/aux-fixed/0414.list2"
- type=lsearch key="a.domain"
+ type=lsearch key="a.domain" opts=NULL
file lookup required for a.domain
in TESTSUITE/aux-fixed/0414.list2
lookup failed
Exim version x.yz ....
search_open: lsearch "TESTSUITE/aux-fixed/0437.ls"
search_find: file="TESTSUITE/aux-fixed/0437.ls"
- key="spool" partial=-1 affix=NULL starflags=0
+ key="spool" partial=-1 affix=NULL starflags=0 opts=NULL
LRU list:
0TESTSUITE/aux-fixed/0437.ls
End
internal_search_find: file="TESTSUITE/aux-fixed/0437.ls"
- type=lsearch key="spool"
+ type=lsearch key="spool" opts=NULL
file lookup required for spool
in TESTSUITE/aux-fixed/0437.ls
lookup yielded: spool
search_tidyup called
search_open: lsearch "TESTSUITE/aux-fixed/0437.ls"
search_find: file="TESTSUITE/aux-fixed/0437.ls"
- key="transport" partial=-1 affix=NULL starflags=0
+ key="transport" partial=-1 affix=NULL starflags=0 opts=NULL
LRU list:
0TESTSUITE/aux-fixed/0437.ls
End
internal_search_find: file="TESTSUITE/aux-fixed/0437.ls"
- type=lsearch key="transport"
+ type=lsearch key="transport" opts=NULL
file lookup required for transport
in TESTSUITE/aux-fixed/0437.ls
lookup yielded: t1
search_tidyup called
search_open: lsearch "TESTSUITE/aux-fixed/0437.ls"
search_find: file="TESTSUITE/aux-fixed/0437.ls"
- key="file" partial=-1 affix=NULL starflags=0
+ key="file" partial=-1 affix=NULL starflags=0 opts=NULL
LRU list:
0TESTSUITE/aux-fixed/0437.ls
End
internal_search_find: file="TESTSUITE/aux-fixed/0437.ls"
- type=lsearch key="file"
+ type=lsearch key="file" opts=NULL
file lookup required for file
in TESTSUITE/aux-fixed/0437.ls
lookup yielded: file
search_tidyup called
search_open: lsearch "TESTSUITE/aux-fixed/0437.ls"
search_find: file="TESTSUITE/aux-fixed/0437.ls"
- key="transport" partial=-1 affix=NULL starflags=0
+ key="transport" partial=-1 affix=NULL starflags=0 opts=NULL
LRU list:
0TESTSUITE/aux-fixed/0437.ls
End
internal_search_find: file="TESTSUITE/aux-fixed/0437.ls"
- type=lsearch key="transport"
+ type=lsearch key="transport" opts=NULL
file lookup required for transport
in TESTSUITE/aux-fixed/0437.ls
lookup yielded: t1
search_tidyup called
search_open: lsearch "TESTSUITE/aux-fixed/0437.ls"
search_find: file="TESTSUITE/aux-fixed/0437.ls"
- key="file" partial=-1 affix=NULL starflags=0
+ key="file" partial=-1 affix=NULL starflags=0 opts=NULL
LRU list:
0TESTSUITE/aux-fixed/0437.ls
End
internal_search_find: file="TESTSUITE/aux-fixed/0437.ls"
- type=lsearch key="file"
+ type=lsearch key="file" opts=NULL
file lookup required for file
in TESTSUITE/aux-fixed/0437.ls
lookup yielded: file
check domains = +special_domains
search_open: lsearch "TESTSUITE/aux-fixed/0464.domains"
search_find: file="TESTSUITE/aux-fixed/0464.domains"
- key="domain1" partial=-1 affix=NULL starflags=0
+ key="domain1" partial=-1 affix=NULL starflags=0 opts=NULL
LRU list:
0TESTSUITE/aux-fixed/0464.domains
End
internal_search_find: file="TESTSUITE/aux-fixed/0464.domains"
- type=lsearch key="domain1"
+ type=lsearch key="domain1" opts=NULL
file lookup required for domain1
in TESTSUITE/aux-fixed/0464.domains
lookup yielded: data for domain1
search_open: lsearch "TESTSUITE/aux-fixed/0464.domains"
cached open
search_find: file="TESTSUITE/aux-fixed/0464.domains"
- key="xxx.domain1" partial=-1 affix=NULL starflags=0
+ key="xxx.domain1" partial=-1 affix=NULL starflags=0 opts=NULL
LRU list:
0TESTSUITE/aux-fixed/0464.domains
End
internal_search_find: file="TESTSUITE/aux-fixed/0464.domains"
- type=lsearch key="xxx.domain1"
+ type=lsearch key="xxx.domain1" opts=NULL
file lookup required for xxx.domain1
in TESTSUITE/aux-fixed/0464.domains
lookup failed
search_open: lsearch "TESTSUITE/aux-fixed/0464.domains"
cached open
search_find: file="TESTSUITE/aux-fixed/0464.domains"
- key="xxx.domain1" partial=-1 affix=NULL starflags=0
+ key="xxx.domain1" partial=-1 affix=NULL starflags=0 opts=NULL
LRU list:
0TESTSUITE/aux-fixed/0464.domains
End
internal_search_find: file="TESTSUITE/aux-fixed/0464.domains"
- type=lsearch key="xxx.domain1"
+ type=lsearch key="xxx.domain1" opts=NULL
cached data used for lookup of xxx.domain1
in TESTSUITE/aux-fixed/0464.domains
lookup failed
r1@test.ex in "*@*"? yes (matched "*@*")
search_open: lsearch "TESTSUITE/aux-fixed/0471.rw"
search_find: file="TESTSUITE/aux-fixed/0471.rw"
- key="test.ex" partial=2 affix=*. starflags=0
+ key="test.ex" partial=2 affix=*. starflags=0 opts=NULL
LRU list:
0TESTSUITE/aux-fixed/0471.rw
End
internal_search_find: file="TESTSUITE/aux-fixed/0471.rw"
- type=lsearch key="test.ex"
+ type=lsearch key="test.ex" opts=NULL
file lookup required for test.ex
in TESTSUITE/aux-fixed/0471.rw
lookup failed
trying partial match *.test.ex
internal_search_find: file="TESTSUITE/aux-fixed/0471.rw"
- type=lsearch key="*.test.ex"
+ type=lsearch key="*.test.ex" opts=NULL
file lookup required for *.test.ex
in TESTSUITE/aux-fixed/0471.rw
lookup failed
search_open: lsearch "TESTSUITE/aux-fixed/0471.rw"
cached open
search_find: file="TESTSUITE/aux-fixed/0471.rw"
- key="myhost.test.ex" partial=2 affix=*. starflags=0
+ key="myhost.test.ex" partial=2 affix=*. starflags=0 opts=NULL
LRU list:
0TESTSUITE/aux-fixed/0471.rw
End
internal_search_find: file="TESTSUITE/aux-fixed/0471.rw"
- type=lsearch key="myhost.test.ex"
+ type=lsearch key="myhost.test.ex" opts=NULL
file lookup required for myhost.test.ex
in TESTSUITE/aux-fixed/0471.rw
lookup failed
trying partial match *.myhost.test.ex
internal_search_find: file="TESTSUITE/aux-fixed/0471.rw"
- type=lsearch key="*.myhost.test.ex"
+ type=lsearch key="*.myhost.test.ex" opts=NULL
file lookup required for *.myhost.test.ex
in TESTSUITE/aux-fixed/0471.rw
lookup failed
trying partial match *.test.ex
internal_search_find: file="TESTSUITE/aux-fixed/0471.rw"
- type=lsearch key="*.test.ex"
+ type=lsearch key="*.test.ex" opts=NULL
cached data used for lookup of *.test.ex
in TESTSUITE/aux-fixed/0471.rw
lookup failed
search_open: lsearch "TESTSUITE/aux-fixed/0471.rw"
cached open
search_find: file="TESTSUITE/aux-fixed/0471.rw"
- key="test.example" partial=2 affix=*. starflags=0
+ key="test.example" partial=2 affix=*. starflags=0 opts=NULL
LRU list:
0TESTSUITE/aux-fixed/0471.rw
End
internal_search_find: file="TESTSUITE/aux-fixed/0471.rw"
- type=lsearch key="test.example"
+ type=lsearch key="test.example" opts=NULL
file lookup required for test.example
in TESTSUITE/aux-fixed/0471.rw
lookup yielded: rwtest.example
search_open: lsearch "TESTSUITE/aux-fixed/0471.rw"
cached open
search_find: file="TESTSUITE/aux-fixed/0471.rw"
- key="test.example" partial=2 affix=*. starflags=0
+ key="test.example" partial=2 affix=*. starflags=0 opts=NULL
LRU list:
0TESTSUITE/aux-fixed/0471.rw
End
internal_search_find: file="TESTSUITE/aux-fixed/0471.rw"
- type=lsearch key="test.example"
+ type=lsearch key="test.example" opts=NULL
cached data used for lookup of test.example
in TESTSUITE/aux-fixed/0471.rw
lookup yielded: rwtest.example
search_open: lsearch "TESTSUITE/aux-fixed/0471.rw"
cached open
search_find: file="TESTSUITE/aux-fixed/0471.rw"
- key="test.example" partial=2 affix=*. starflags=0
+ key="test.example" partial=2 affix=*. starflags=0 opts=NULL
LRU list:
0TESTSUITE/aux-fixed/0471.rw
End
internal_search_find: file="TESTSUITE/aux-fixed/0471.rw"
- type=lsearch key="test.example"
+ type=lsearch key="test.example" opts=NULL
cached data used for lookup of test.example
in TESTSUITE/aux-fixed/0471.rw
lookup yielded: rwtest.example
search_open: lsearch "TESTSUITE/aux-fixed/0471.rw"
cached open
search_find: file="TESTSUITE/aux-fixed/0471.rw"
- key="test.example" partial=2 affix=*. starflags=0
+ key="test.example" partial=2 affix=*. starflags=0 opts=NULL
LRU list:
0TESTSUITE/aux-fixed/0471.rw
End
internal_search_find: file="TESTSUITE/aux-fixed/0471.rw"
- type=lsearch key="test.example"
+ type=lsearch key="test.example" opts=NULL
cached data used for lookup of test.example
in TESTSUITE/aux-fixed/0471.rw
lookup yielded: rwtest.example
search_open: lsearch "TESTSUITE/aux-fixed/0471.rw"
cached open
search_find: file="TESTSUITE/aux-fixed/0471.rw"
- key="test.example" partial=2 affix=*. starflags=0
+ key="test.example" partial=2 affix=*. starflags=0 opts=NULL
LRU list:
0TESTSUITE/aux-fixed/0471.rw
End
internal_search_find: file="TESTSUITE/aux-fixed/0471.rw"
- type=lsearch key="test.example"
+ type=lsearch key="test.example" opts=NULL
cached data used for lookup of test.example
in TESTSUITE/aux-fixed/0471.rw
lookup yielded: rwtest.example
search_open: lsearch "TESTSUITE/aux-fixed/0471.rw"
cached open
search_find: file="TESTSUITE/aux-fixed/0471.rw"
- key="test.example" partial=2 affix=*. starflags=0
+ key="test.example" partial=2 affix=*. starflags=0 opts=NULL
LRU list:
0TESTSUITE/aux-fixed/0471.rw
End
internal_search_find: file="TESTSUITE/aux-fixed/0471.rw"
- type=lsearch key="test.example"
+ type=lsearch key="test.example" opts=NULL
cached data used for lookup of test.example
in TESTSUITE/aux-fixed/0471.rw
lookup yielded: rwtest.example
search_open: lsearch "TESTSUITE/aux-fixed/0471.rw"
cached open
search_find: file="TESTSUITE/aux-fixed/0471.rw"
- key="test.example" partial=2 affix=*. starflags=0
+ key="test.example" partial=2 affix=*. starflags=0 opts=NULL
LRU list:
0TESTSUITE/aux-fixed/0471.rw
End
internal_search_find: file="TESTSUITE/aux-fixed/0471.rw"
- type=lsearch key="test.example"
+ type=lsearch key="test.example" opts=NULL
cached data used for lookup of test.example
in TESTSUITE/aux-fixed/0471.rw
lookup yielded: rwtest.example
search_open: lsearch "TESTSUITE/aux-fixed/0471.rw"
cached open
search_find: file="TESTSUITE/aux-fixed/0471.rw"
- key="test.example" partial=2 affix=*. starflags=0
+ key="test.example" partial=2 affix=*. starflags=0 opts=NULL
LRU list:
0TESTSUITE/aux-fixed/0471.rw
End
internal_search_find: file="TESTSUITE/aux-fixed/0471.rw"
- type=lsearch key="test.example"
+ type=lsearch key="test.example" opts=NULL
cached data used for lookup of test.example
in TESTSUITE/aux-fixed/0471.rw
lookup yielded: rwtest.example
search_open: lsearch "TESTSUITE/aux-fixed/0471.rw"
cached open
search_find: file="TESTSUITE/aux-fixed/0471.rw"
- key="test.example" partial=2 affix=*. starflags=0
+ key="test.example" partial=2 affix=*. starflags=0 opts=NULL
LRU list:
0TESTSUITE/aux-fixed/0471.rw
End
internal_search_find: file="TESTSUITE/aux-fixed/0471.rw"
- type=lsearch key="test.example"
+ type=lsearch key="test.example" opts=NULL
cached data used for lookup of test.example
in TESTSUITE/aux-fixed/0471.rw
lookup yielded: rwtest.example
search_open: lsearch "TESTSUITE/aux-fixed/0471.rw"
cached open
search_find: file="TESTSUITE/aux-fixed/0471.rw"
- key="test.example" partial=2 affix=*. starflags=0
+ key="test.example" partial=2 affix=*. starflags=0 opts=NULL
LRU list:
0TESTSUITE/aux-fixed/0471.rw
End
internal_search_find: file="TESTSUITE/aux-fixed/0471.rw"
- type=lsearch key="test.example"
+ type=lsearch key="test.example" opts=NULL
cached data used for lookup of test.example
in TESTSUITE/aux-fixed/0471.rw
lookup yielded: rwtest.example
search_open: lsearch "TESTSUITE/aux-fixed/0471.rw"
cached open
search_find: file="TESTSUITE/aux-fixed/0471.rw"
- key="test.example" partial=2 affix=*. starflags=0
+ key="test.example" partial=2 affix=*. starflags=0 opts=NULL
LRU list:
0TESTSUITE/aux-fixed/0471.rw
End
internal_search_find: file="TESTSUITE/aux-fixed/0471.rw"
- type=lsearch key="test.example"
+ type=lsearch key="test.example" opts=NULL
cached data used for lookup of test.example
in TESTSUITE/aux-fixed/0471.rw
lookup yielded: rwtest.example
search_open: lsearch "TESTSUITE/aux-fixed/0471.rw"
cached open
search_find: file="TESTSUITE/aux-fixed/0471.rw"
- key="test.example" partial=2 affix=*. starflags=0
+ key="test.example" partial=2 affix=*. starflags=0 opts=NULL
LRU list:
0TESTSUITE/aux-fixed/0471.rw
End
internal_search_find: file="TESTSUITE/aux-fixed/0471.rw"
- type=lsearch key="test.example"
+ type=lsearch key="test.example" opts=NULL
cached data used for lookup of test.example
in TESTSUITE/aux-fixed/0471.rw
lookup yielded: rwtest.example
search_open: lsearch "TESTSUITE/aux-fixed/0471.rw"
cached open
search_find: file="TESTSUITE/aux-fixed/0471.rw"
- key="test.example" partial=2 affix=*. starflags=0
+ key="test.example" partial=2 affix=*. starflags=0 opts=NULL
LRU list:
0TESTSUITE/aux-fixed/0471.rw
End
internal_search_find: file="TESTSUITE/aux-fixed/0471.rw"
- type=lsearch key="test.example"
+ type=lsearch key="test.example" opts=NULL
cached data used for lookup of test.example
in TESTSUITE/aux-fixed/0471.rw
lookup yielded: rwtest.example
search_open: lsearch "TESTSUITE/aux-fixed/0471.rw"
cached open
search_find: file="TESTSUITE/aux-fixed/0471.rw"
- key="test.example" partial=2 affix=*. starflags=0
+ key="test.example" partial=2 affix=*. starflags=0 opts=NULL
LRU list:
0TESTSUITE/aux-fixed/0471.rw
End
internal_search_find: file="TESTSUITE/aux-fixed/0471.rw"
- type=lsearch key="test.example"
+ type=lsearch key="test.example" opts=NULL
cached data used for lookup of test.example
in TESTSUITE/aux-fixed/0471.rw
lookup yielded: rwtest.example
search_open: lsearch "TESTSUITE/aux-fixed/0471.rw"
cached open
search_find: file="TESTSUITE/aux-fixed/0471.rw"
- key="test.example" partial=2 affix=*. starflags=0
+ key="test.example" partial=2 affix=*. starflags=0 opts=NULL
LRU list:
0TESTSUITE/aux-fixed/0471.rw
End
internal_search_find: file="TESTSUITE/aux-fixed/0471.rw"
- type=lsearch key="test.example"
+ type=lsearch key="test.example" opts=NULL
cached data used for lookup of test.example
in TESTSUITE/aux-fixed/0471.rw
lookup yielded: rwtest.example
search_open: lsearch "TESTSUITE/aux-fixed/0471.rw"
cached open
search_find: file="TESTSUITE/aux-fixed/0471.rw"
- key="test.example" partial=2 affix=*. starflags=0
+ key="test.example" partial=2 affix=*. starflags=0 opts=NULL
LRU list:
0TESTSUITE/aux-fixed/0471.rw
End
internal_search_find: file="TESTSUITE/aux-fixed/0471.rw"
- type=lsearch key="test.example"
+ type=lsearch key="test.example" opts=NULL
cached data used for lookup of test.example
in TESTSUITE/aux-fixed/0471.rw
lookup yielded: rwtest.example
search_open: lsearch "TESTSUITE/aux-fixed/0471.rw"
cached open
search_find: file="TESTSUITE/aux-fixed/0471.rw"
- key="test.example" partial=2 affix=*. starflags=0
+ key="test.example" partial=2 affix=*. starflags=0 opts=NULL
LRU list:
0TESTSUITE/aux-fixed/0471.rw
End
internal_search_find: file="TESTSUITE/aux-fixed/0471.rw"
- type=lsearch key="test.example"
+ type=lsearch key="test.example" opts=NULL
cached data used for lookup of test.example
in TESTSUITE/aux-fixed/0471.rw
lookup yielded: rwtest.example
search_open: lsearch "TESTSUITE/aux-fixed/0471.rw"
cached open
search_find: file="TESTSUITE/aux-fixed/0471.rw"
- key="test.example" partial=2 affix=*. starflags=0
+ key="test.example" partial=2 affix=*. starflags=0 opts=NULL
LRU list:
0TESTSUITE/aux-fixed/0471.rw
End
internal_search_find: file="TESTSUITE/aux-fixed/0471.rw"
- type=lsearch key="test.example"
+ type=lsearch key="test.example" opts=NULL
cached data used for lookup of test.example
in TESTSUITE/aux-fixed/0471.rw
lookup yielded: rwtest.example
search_open: lsearch "TESTSUITE/aux-fixed/0471.rw"
cached open
search_find: file="TESTSUITE/aux-fixed/0471.rw"
- key="test.example" partial=2 affix=*. starflags=0
+ key="test.example" partial=2 affix=*. starflags=0 opts=NULL
LRU list:
0TESTSUITE/aux-fixed/0471.rw
End
internal_search_find: file="TESTSUITE/aux-fixed/0471.rw"
- type=lsearch key="test.example"
+ type=lsearch key="test.example" opts=NULL
cached data used for lookup of test.example
in TESTSUITE/aux-fixed/0471.rw
lookup yielded: rwtest.example
search_open: lsearch "TESTSUITE/aux-fixed/0471.rw"
cached open
search_find: file="TESTSUITE/aux-fixed/0471.rw"
- key="test.example" partial=2 affix=*. starflags=0
+ key="test.example" partial=2 affix=*. starflags=0 opts=NULL
LRU list:
0TESTSUITE/aux-fixed/0471.rw
End
internal_search_find: file="TESTSUITE/aux-fixed/0471.rw"
- type=lsearch key="test.example"
+ type=lsearch key="test.example" opts=NULL
cached data used for lookup of test.example
in TESTSUITE/aux-fixed/0471.rw
lookup yielded: rwtest.example
search_open: lsearch "TESTSUITE/aux-fixed/0471.rw"
cached open
search_find: file="TESTSUITE/aux-fixed/0471.rw"
- key="test.example" partial=2 affix=*. starflags=0
+ key="test.example" partial=2 affix=*. starflags=0 opts=NULL
LRU list:
0TESTSUITE/aux-fixed/0471.rw
End
internal_search_find: file="TESTSUITE/aux-fixed/0471.rw"
- type=lsearch key="test.example"
+ type=lsearch key="test.example" opts=NULL
cached data used for lookup of test.example
in TESTSUITE/aux-fixed/0471.rw
lookup yielded: rwtest.example
search_open: lsearch "TESTSUITE/aux-fixed/0471.rw"
cached open
search_find: file="TESTSUITE/aux-fixed/0471.rw"
- key="test.example" partial=2 affix=*. starflags=0
+ key="test.example" partial=2 affix=*. starflags=0 opts=NULL
LRU list:
0TESTSUITE/aux-fixed/0471.rw
End
internal_search_find: file="TESTSUITE/aux-fixed/0471.rw"
- type=lsearch key="test.example"
+ type=lsearch key="test.example" opts=NULL
cached data used for lookup of test.example
in TESTSUITE/aux-fixed/0471.rw
lookup yielded: rwtest.example
search_open: lsearch "TESTSUITE/aux-fixed/0471.rw"
cached open
search_find: file="TESTSUITE/aux-fixed/0471.rw"
- key="test.example" partial=2 affix=*. starflags=0
+ key="test.example" partial=2 affix=*. starflags=0 opts=NULL
LRU list:
0TESTSUITE/aux-fixed/0471.rw
End
internal_search_find: file="TESTSUITE/aux-fixed/0471.rw"
- type=lsearch key="test.example"
+ type=lsearch key="test.example" opts=NULL
cached data used for lookup of test.example
in TESTSUITE/aux-fixed/0471.rw
lookup yielded: rwtest.example
search_open: lsearch "TESTSUITE/aux-fixed/0471.rw"
cached open
search_find: file="TESTSUITE/aux-fixed/0471.rw"
- key="test.example" partial=2 affix=*. starflags=0
+ key="test.example" partial=2 affix=*. starflags=0 opts=NULL
LRU list:
0TESTSUITE/aux-fixed/0471.rw
End
internal_search_find: file="TESTSUITE/aux-fixed/0471.rw"
- type=lsearch key="test.example"
+ type=lsearch key="test.example" opts=NULL
cached data used for lookup of test.example
in TESTSUITE/aux-fixed/0471.rw
lookup yielded: rwtest.example
search_open: lsearch "TESTSUITE/aux-fixed/0471.rw"
cached open
search_find: file="TESTSUITE/aux-fixed/0471.rw"
- key="test.example" partial=2 affix=*. starflags=0
+ key="test.example" partial=2 affix=*. starflags=0 opts=NULL
LRU list:
0TESTSUITE/aux-fixed/0471.rw
End
internal_search_find: file="TESTSUITE/aux-fixed/0471.rw"
- type=lsearch key="test.example"
+ type=lsearch key="test.example" opts=NULL
cached data used for lookup of test.example
in TESTSUITE/aux-fixed/0471.rw
lookup yielded: rwtest.example
search_open: lsearch "TESTSUITE/aux-fixed/0471.rw"
cached open
search_find: file="TESTSUITE/aux-fixed/0471.rw"
- key="test.example" partial=2 affix=*. starflags=0
+ key="test.example" partial=2 affix=*. starflags=0 opts=NULL
LRU list:
0TESTSUITE/aux-fixed/0471.rw
End
internal_search_find: file="TESTSUITE/aux-fixed/0471.rw"
- type=lsearch key="test.example"
+ type=lsearch key="test.example" opts=NULL
cached data used for lookup of test.example
in TESTSUITE/aux-fixed/0471.rw
lookup yielded: rwtest.example
search_open: lsearch "TESTSUITE/aux-fixed/0471.rw"
cached open
search_find: file="TESTSUITE/aux-fixed/0471.rw"
- key="test.example" partial=2 affix=*. starflags=0
+ key="test.example" partial=2 affix=*. starflags=0 opts=NULL
LRU list:
0TESTSUITE/aux-fixed/0471.rw
End
internal_search_find: file="TESTSUITE/aux-fixed/0471.rw"
- type=lsearch key="test.example"
+ type=lsearch key="test.example" opts=NULL
cached data used for lookup of test.example
in TESTSUITE/aux-fixed/0471.rw
lookup yielded: rwtest.example
search_open: lsearch "TESTSUITE/aux-fixed/0471.rw"
cached open
search_find: file="TESTSUITE/aux-fixed/0471.rw"
- key="test.example" partial=2 affix=*. starflags=0
+ key="test.example" partial=2 affix=*. starflags=0 opts=NULL
LRU list:
0TESTSUITE/aux-fixed/0471.rw
End
internal_search_find: file="TESTSUITE/aux-fixed/0471.rw"
- type=lsearch key="test.example"
+ type=lsearch key="test.example" opts=NULL
cached data used for lookup of test.example
in TESTSUITE/aux-fixed/0471.rw
lookup yielded: rwtest.example
search_open: lsearch "TESTSUITE/aux-fixed/0471.rw"
cached open
search_find: file="TESTSUITE/aux-fixed/0471.rw"
- key="test.example" partial=2 affix=*. starflags=0
+ key="test.example" partial=2 affix=*. starflags=0 opts=NULL
LRU list:
0TESTSUITE/aux-fixed/0471.rw
End
internal_search_find: file="TESTSUITE/aux-fixed/0471.rw"
- type=lsearch key="test.example"
+ type=lsearch key="test.example" opts=NULL
cached data used for lookup of test.example
in TESTSUITE/aux-fixed/0471.rw
lookup yielded: rwtest.example
search_open: lsearch "TESTSUITE/aux-fixed/0471.rw"
cached open
search_find: file="TESTSUITE/aux-fixed/0471.rw"
- key="test.example" partial=2 affix=*. starflags=0
+ key="test.example" partial=2 affix=*. starflags=0 opts=NULL
LRU list:
0TESTSUITE/aux-fixed/0471.rw
End
internal_search_find: file="TESTSUITE/aux-fixed/0471.rw"
- type=lsearch key="test.example"
+ type=lsearch key="test.example" opts=NULL
cached data used for lookup of test.example
in TESTSUITE/aux-fixed/0471.rw
lookup yielded: rwtest.example
search_open: lsearch "TESTSUITE/aux-fixed/0471.rw"
cached open
search_find: file="TESTSUITE/aux-fixed/0471.rw"
- key="test.example" partial=2 affix=*. starflags=0
+ key="test.example" partial=2 affix=*. starflags=0 opts=NULL
LRU list:
0TESTSUITE/aux-fixed/0471.rw
End
internal_search_find: file="TESTSUITE/aux-fixed/0471.rw"
- type=lsearch key="test.example"
+ type=lsearch key="test.example" opts=NULL
cached data used for lookup of test.example
in TESTSUITE/aux-fixed/0471.rw
lookup yielded: rwtest.example
search_open: lsearch "TESTSUITE/aux-fixed/0471.rw"
cached open
search_find: file="TESTSUITE/aux-fixed/0471.rw"
- key="test.example" partial=2 affix=*. starflags=0
+ key="test.example" partial=2 affix=*. starflags=0 opts=NULL
LRU list:
0TESTSUITE/aux-fixed/0471.rw
End
internal_search_find: file="TESTSUITE/aux-fixed/0471.rw"
- type=lsearch key="test.example"
+ type=lsearch key="test.example" opts=NULL
cached data used for lookup of test.example
in TESTSUITE/aux-fixed/0471.rw
lookup yielded: rwtest.example
search_open: lsearch "TESTSUITE/aux-fixed/0471.rw"
cached open
search_find: file="TESTSUITE/aux-fixed/0471.rw"
- key="test.example" partial=2 affix=*. starflags=0
+ key="test.example" partial=2 affix=*. starflags=0 opts=NULL
LRU list:
0TESTSUITE/aux-fixed/0471.rw
End
internal_search_find: file="TESTSUITE/aux-fixed/0471.rw"
- type=lsearch key="test.example"
+ type=lsearch key="test.example" opts=NULL
cached data used for lookup of test.example
in TESTSUITE/aux-fixed/0471.rw
lookup yielded: rwtest.example
search_open: lsearch "TESTSUITE/aux-fixed/0471.rw"
cached open
search_find: file="TESTSUITE/aux-fixed/0471.rw"
- key="test.example" partial=2 affix=*. starflags=0
+ key="test.example" partial=2 affix=*. starflags=0 opts=NULL
LRU list:
0TESTSUITE/aux-fixed/0471.rw
End
internal_search_find: file="TESTSUITE/aux-fixed/0471.rw"
- type=lsearch key="test.example"
+ type=lsearch key="test.example" opts=NULL
cached data used for lookup of test.example
in TESTSUITE/aux-fixed/0471.rw
lookup yielded: rwtest.example
search_open: lsearch "TESTSUITE/aux-fixed/0471.rw"
cached open
search_find: file="TESTSUITE/aux-fixed/0471.rw"
- key="test.example" partial=2 affix=*. starflags=0
+ key="test.example" partial=2 affix=*. starflags=0 opts=NULL
LRU list:
0TESTSUITE/aux-fixed/0471.rw
End
internal_search_find: file="TESTSUITE/aux-fixed/0471.rw"
- type=lsearch key="test.example"
+ type=lsearch key="test.example" opts=NULL
cached data used for lookup of test.example
in TESTSUITE/aux-fixed/0471.rw
lookup yielded: rwtest.example
search_open: lsearch "TESTSUITE/aux-fixed/0471.rw"
cached open
search_find: file="TESTSUITE/aux-fixed/0471.rw"
- key="test.example" partial=2 affix=*. starflags=0
+ key="test.example" partial=2 affix=*. starflags=0 opts=NULL
LRU list:
0TESTSUITE/aux-fixed/0471.rw
End
internal_search_find: file="TESTSUITE/aux-fixed/0471.rw"
- type=lsearch key="test.example"
+ type=lsearch key="test.example" opts=NULL
cached data used for lookup of test.example
in TESTSUITE/aux-fixed/0471.rw
lookup yielded: rwtest.example
search_open: lsearch "TESTSUITE/aux-fixed/0471.rw"
cached open
search_find: file="TESTSUITE/aux-fixed/0471.rw"
- key="test.example" partial=2 affix=*. starflags=0
+ key="test.example" partial=2 affix=*. starflags=0 opts=NULL
LRU list:
0TESTSUITE/aux-fixed/0471.rw
End
internal_search_find: file="TESTSUITE/aux-fixed/0471.rw"
- type=lsearch key="test.example"
+ type=lsearch key="test.example" opts=NULL
cached data used for lookup of test.example
in TESTSUITE/aux-fixed/0471.rw
lookup yielded: rwtest.example
search_open: lsearch "TESTSUITE/aux-fixed/0471.rw"
cached open
search_find: file="TESTSUITE/aux-fixed/0471.rw"
- key="test.example" partial=2 affix=*. starflags=0
+ key="test.example" partial=2 affix=*. starflags=0 opts=NULL
LRU list:
0TESTSUITE/aux-fixed/0471.rw
End
internal_search_find: file="TESTSUITE/aux-fixed/0471.rw"
- type=lsearch key="test.example"
+ type=lsearch key="test.example" opts=NULL
cached data used for lookup of test.example
in TESTSUITE/aux-fixed/0471.rw
lookup yielded: rwtest.example
search_open: lsearch "TESTSUITE/aux-fixed/0471.rw"
cached open
search_find: file="TESTSUITE/aux-fixed/0471.rw"
- key="test.example" partial=2 affix=*. starflags=0
+ key="test.example" partial=2 affix=*. starflags=0 opts=NULL
LRU list:
0TESTSUITE/aux-fixed/0471.rw
End
internal_search_find: file="TESTSUITE/aux-fixed/0471.rw"
- type=lsearch key="test.example"
+ type=lsearch key="test.example" opts=NULL
cached data used for lookup of test.example
in TESTSUITE/aux-fixed/0471.rw
lookup yielded: rwtest.example
search_open: lsearch "TESTSUITE/aux-fixed/0471.rw"
cached open
search_find: file="TESTSUITE/aux-fixed/0471.rw"
- key="test.example" partial=2 affix=*. starflags=0
+ key="test.example" partial=2 affix=*. starflags=0 opts=NULL
LRU list:
0TESTSUITE/aux-fixed/0471.rw
End
internal_search_find: file="TESTSUITE/aux-fixed/0471.rw"
- type=lsearch key="test.example"
+ type=lsearch key="test.example" opts=NULL
cached data used for lookup of test.example
in TESTSUITE/aux-fixed/0471.rw
lookup yielded: rwtest.example
search_open: lsearch "TESTSUITE/aux-fixed/0471.rw"
cached open
search_find: file="TESTSUITE/aux-fixed/0471.rw"
- key="test.example" partial=2 affix=*. starflags=0
+ key="test.example" partial=2 affix=*. starflags=0 opts=NULL
LRU list:
0TESTSUITE/aux-fixed/0471.rw
End
internal_search_find: file="TESTSUITE/aux-fixed/0471.rw"
- type=lsearch key="test.example"
+ type=lsearch key="test.example" opts=NULL
cached data used for lookup of test.example
in TESTSUITE/aux-fixed/0471.rw
lookup yielded: rwtest.example
search_open: lsearch "TESTSUITE/aux-fixed/0471.rw"
cached open
search_find: file="TESTSUITE/aux-fixed/0471.rw"
- key="test.example" partial=2 affix=*. starflags=0
+ key="test.example" partial=2 affix=*. starflags=0 opts=NULL
LRU list:
0TESTSUITE/aux-fixed/0471.rw
End
internal_search_find: file="TESTSUITE/aux-fixed/0471.rw"
- type=lsearch key="test.example"
+ type=lsearch key="test.example" opts=NULL
cached data used for lookup of test.example
in TESTSUITE/aux-fixed/0471.rw
lookup yielded: rwtest.example
search_open: lsearch "TESTSUITE/aux-fixed/0471.rw"
cached open
search_find: file="TESTSUITE/aux-fixed/0471.rw"
- key="test.example" partial=2 affix=*. starflags=0
+ key="test.example" partial=2 affix=*. starflags=0 opts=NULL
LRU list:
0TESTSUITE/aux-fixed/0471.rw
End
internal_search_find: file="TESTSUITE/aux-fixed/0471.rw"
- type=lsearch key="test.example"
+ type=lsearch key="test.example" opts=NULL
cached data used for lookup of test.example
in TESTSUITE/aux-fixed/0471.rw
lookup yielded: rwtest.example
search_open: lsearch "TESTSUITE/aux-fixed/0471.rw"
cached open
search_find: file="TESTSUITE/aux-fixed/0471.rw"
- key="test.example" partial=2 affix=*. starflags=0
+ key="test.example" partial=2 affix=*. starflags=0 opts=NULL
LRU list:
0TESTSUITE/aux-fixed/0471.rw
End
internal_search_find: file="TESTSUITE/aux-fixed/0471.rw"
- type=lsearch key="test.example"
+ type=lsearch key="test.example" opts=NULL
cached data used for lookup of test.example
in TESTSUITE/aux-fixed/0471.rw
lookup yielded: rwtest.example
search_open: lsearch "TESTSUITE/aux-fixed/0471.rw"
cached open
search_find: file="TESTSUITE/aux-fixed/0471.rw"
- key="test.example" partial=2 affix=*. starflags=0
+ key="test.example" partial=2 affix=*. starflags=0 opts=NULL
LRU list:
0TESTSUITE/aux-fixed/0471.rw
End
internal_search_find: file="TESTSUITE/aux-fixed/0471.rw"
- type=lsearch key="test.example"
+ type=lsearch key="test.example" opts=NULL
cached data used for lookup of test.example
in TESTSUITE/aux-fixed/0471.rw
lookup yielded: rwtest.example
search_open: lsearch "TESTSUITE/aux-fixed/0471.rw"
cached open
search_find: file="TESTSUITE/aux-fixed/0471.rw"
- key="test.example" partial=2 affix=*. starflags=0
+ key="test.example" partial=2 affix=*. starflags=0 opts=NULL
LRU list:
0TESTSUITE/aux-fixed/0471.rw
End
internal_search_find: file="TESTSUITE/aux-fixed/0471.rw"
- type=lsearch key="test.example"
+ type=lsearch key="test.example" opts=NULL
cached data used for lookup of test.example
in TESTSUITE/aux-fixed/0471.rw
lookup yielded: rwtest.example
search_open: lsearch "TESTSUITE/aux-fixed/0471.rw"
cached open
search_find: file="TESTSUITE/aux-fixed/0471.rw"
- key="test.example" partial=2 affix=*. starflags=0
+ key="test.example" partial=2 affix=*. starflags=0 opts=NULL
LRU list:
0TESTSUITE/aux-fixed/0471.rw
End
internal_search_find: file="TESTSUITE/aux-fixed/0471.rw"
- type=lsearch key="test.example"
+ type=lsearch key="test.example" opts=NULL
cached data used for lookup of test.example
in TESTSUITE/aux-fixed/0471.rw
lookup yielded: rwtest.example
search_open: lsearch "TESTSUITE/aux-fixed/0471.rw"
cached open
search_find: file="TESTSUITE/aux-fixed/0471.rw"
- key="test.example" partial=2 affix=*. starflags=0
+ key="test.example" partial=2 affix=*. starflags=0 opts=NULL
LRU list:
0TESTSUITE/aux-fixed/0471.rw
End
internal_search_find: file="TESTSUITE/aux-fixed/0471.rw"
- type=lsearch key="test.example"
+ type=lsearch key="test.example" opts=NULL
cached data used for lookup of test.example
in TESTSUITE/aux-fixed/0471.rw
lookup yielded: rwtest.example
search_open: lsearch "TESTSUITE/aux-fixed/0471.rw"
cached open
search_find: file="TESTSUITE/aux-fixed/0471.rw"
- key="test.example" partial=2 affix=*. starflags=0
+ key="test.example" partial=2 affix=*. starflags=0 opts=NULL
LRU list:
0TESTSUITE/aux-fixed/0471.rw
End
internal_search_find: file="TESTSUITE/aux-fixed/0471.rw"
- type=lsearch key="test.example"
+ type=lsearch key="test.example" opts=NULL
cached data used for lookup of test.example
in TESTSUITE/aux-fixed/0471.rw
lookup yielded: rwtest.example
search_open: lsearch "TESTSUITE/aux-fixed/0471.rw"
cached open
search_find: file="TESTSUITE/aux-fixed/0471.rw"
- key="test.example" partial=2 affix=*. starflags=0
+ key="test.example" partial=2 affix=*. starflags=0 opts=NULL
LRU list:
0TESTSUITE/aux-fixed/0471.rw
End
internal_search_find: file="TESTSUITE/aux-fixed/0471.rw"
- type=lsearch key="test.example"
+ type=lsearch key="test.example" opts=NULL
cached data used for lookup of test.example
in TESTSUITE/aux-fixed/0471.rw
lookup yielded: rwtest.example
search_open: lsearch "TESTSUITE/aux-fixed/0471.rw"
cached open
search_find: file="TESTSUITE/aux-fixed/0471.rw"
- key="test.example" partial=2 affix=*. starflags=0
+ key="test.example" partial=2 affix=*. starflags=0 opts=NULL
LRU list:
0TESTSUITE/aux-fixed/0471.rw
End
internal_search_find: file="TESTSUITE/aux-fixed/0471.rw"
- type=lsearch key="test.example"
+ type=lsearch key="test.example" opts=NULL
cached data used for lookup of test.example
in TESTSUITE/aux-fixed/0471.rw
lookup yielded: rwtest.example
search_open: lsearch "TESTSUITE/aux-fixed/0471.rw"
cached open
search_find: file="TESTSUITE/aux-fixed/0471.rw"
- key="test.example" partial=2 affix=*. starflags=0
+ key="test.example" partial=2 affix=*. starflags=0 opts=NULL
LRU list:
0TESTSUITE/aux-fixed/0471.rw
End
internal_search_find: file="TESTSUITE/aux-fixed/0471.rw"
- type=lsearch key="test.example"
+ type=lsearch key="test.example" opts=NULL
cached data used for lookup of test.example
in TESTSUITE/aux-fixed/0471.rw
lookup yielded: rwtest.example
search_open: lsearch "TESTSUITE/aux-fixed/0471.rw"
cached open
search_find: file="TESTSUITE/aux-fixed/0471.rw"
- key="test.example" partial=2 affix=*. starflags=0
+ key="test.example" partial=2 affix=*. starflags=0 opts=NULL
LRU list:
0TESTSUITE/aux-fixed/0471.rw
End
internal_search_find: file="TESTSUITE/aux-fixed/0471.rw"
- type=lsearch key="test.example"
+ type=lsearch key="test.example" opts=NULL
cached data used for lookup of test.example
in TESTSUITE/aux-fixed/0471.rw
lookup yielded: rwtest.example
search_open: lsearch "TESTSUITE/aux-fixed/0471.rw"
cached open
search_find: file="TESTSUITE/aux-fixed/0471.rw"
- key="test.example" partial=2 affix=*. starflags=0
+ key="test.example" partial=2 affix=*. starflags=0 opts=NULL
LRU list:
0TESTSUITE/aux-fixed/0471.rw
End
internal_search_find: file="TESTSUITE/aux-fixed/0471.rw"
- type=lsearch key="test.example"
+ type=lsearch key="test.example" opts=NULL
cached data used for lookup of test.example
in TESTSUITE/aux-fixed/0471.rw
lookup yielded: rwtest.example
search_open: lsearch "TESTSUITE/aux-fixed/0471.rw"
cached open
search_find: file="TESTSUITE/aux-fixed/0471.rw"
- key="test.example" partial=2 affix=*. starflags=0
+ key="test.example" partial=2 affix=*. starflags=0 opts=NULL
LRU list:
0TESTSUITE/aux-fixed/0471.rw
End
internal_search_find: file="TESTSUITE/aux-fixed/0471.rw"
- type=lsearch key="test.example"
+ type=lsearch key="test.example" opts=NULL
cached data used for lookup of test.example
in TESTSUITE/aux-fixed/0471.rw
lookup yielded: rwtest.example
search_open: lsearch "TESTSUITE/aux-fixed/0471.rw"
cached open
search_find: file="TESTSUITE/aux-fixed/0471.rw"
- key="test.example" partial=2 affix=*. starflags=0
+ key="test.example" partial=2 affix=*. starflags=0 opts=NULL
LRU list:
0TESTSUITE/aux-fixed/0471.rw
End
internal_search_find: file="TESTSUITE/aux-fixed/0471.rw"
- type=lsearch key="test.example"
+ type=lsearch key="test.example" opts=NULL
cached data used for lookup of test.example
in TESTSUITE/aux-fixed/0471.rw
lookup yielded: rwtest.example
search_open: lsearch "TESTSUITE/aux-fixed/0471.rw"
cached open
search_find: file="TESTSUITE/aux-fixed/0471.rw"
- key="test.example" partial=2 affix=*. starflags=0
+ key="test.example" partial=2 affix=*. starflags=0 opts=NULL
LRU list:
0TESTSUITE/aux-fixed/0471.rw
End
internal_search_find: file="TESTSUITE/aux-fixed/0471.rw"
- type=lsearch key="test.example"
+ type=lsearch key="test.example" opts=NULL
cached data used for lookup of test.example
in TESTSUITE/aux-fixed/0471.rw
lookup yielded: rwtest.example
search_open: lsearch "TESTSUITE/aux-fixed/0471.rw"
cached open
search_find: file="TESTSUITE/aux-fixed/0471.rw"
- key="test.example" partial=2 affix=*. starflags=0
+ key="test.example" partial=2 affix=*. starflags=0 opts=NULL
LRU list:
0TESTSUITE/aux-fixed/0471.rw
End
internal_search_find: file="TESTSUITE/aux-fixed/0471.rw"
- type=lsearch key="test.example"
+ type=lsearch key="test.example" opts=NULL
cached data used for lookup of test.example
in TESTSUITE/aux-fixed/0471.rw
lookup yielded: rwtest.example
search_open: lsearch "TESTSUITE/aux-fixed/0471.rw"
cached open
search_find: file="TESTSUITE/aux-fixed/0471.rw"
- key="test.example" partial=2 affix=*. starflags=0
+ key="test.example" partial=2 affix=*. starflags=0 opts=NULL
LRU list:
0TESTSUITE/aux-fixed/0471.rw
End
internal_search_find: file="TESTSUITE/aux-fixed/0471.rw"
- type=lsearch key="test.example"
+ type=lsearch key="test.example" opts=NULL
cached data used for lookup of test.example
in TESTSUITE/aux-fixed/0471.rw
lookup yielded: rwtest.example
search_open: lsearch "TESTSUITE/aux-fixed/0471.rw"
cached open
search_find: file="TESTSUITE/aux-fixed/0471.rw"
- key="test.example" partial=2 affix=*. starflags=0
+ key="test.example" partial=2 affix=*. starflags=0 opts=NULL
LRU list:
0TESTSUITE/aux-fixed/0471.rw
End
internal_search_find: file="TESTSUITE/aux-fixed/0471.rw"
- type=lsearch key="test.example"
+ type=lsearch key="test.example" opts=NULL
cached data used for lookup of test.example
in TESTSUITE/aux-fixed/0471.rw
lookup yielded: rwtest.example
search_open: lsearch "TESTSUITE/aux-fixed/0471.rw"
cached open
search_find: file="TESTSUITE/aux-fixed/0471.rw"
- key="test.example" partial=2 affix=*. starflags=0
+ key="test.example" partial=2 affix=*. starflags=0 opts=NULL
LRU list:
0TESTSUITE/aux-fixed/0471.rw
End
internal_search_find: file="TESTSUITE/aux-fixed/0471.rw"
- type=lsearch key="test.example"
+ type=lsearch key="test.example" opts=NULL
cached data used for lookup of test.example
in TESTSUITE/aux-fixed/0471.rw
lookup yielded: rwtest.example
search_open: lsearch "TESTSUITE/aux-fixed/0471.rw"
cached open
search_find: file="TESTSUITE/aux-fixed/0471.rw"
- key="test.example" partial=2 affix=*. starflags=0
+ key="test.example" partial=2 affix=*. starflags=0 opts=NULL
LRU list:
0TESTSUITE/aux-fixed/0471.rw
End
internal_search_find: file="TESTSUITE/aux-fixed/0471.rw"
- type=lsearch key="test.example"
+ type=lsearch key="test.example" opts=NULL
cached data used for lookup of test.example
in TESTSUITE/aux-fixed/0471.rw
lookup yielded: rwtest.example
search_open: lsearch "TESTSUITE/aux-fixed/0471.rw"
cached open
search_find: file="TESTSUITE/aux-fixed/0471.rw"
- key="test.example" partial=2 affix=*. starflags=0
+ key="test.example" partial=2 affix=*. starflags=0 opts=NULL
LRU list:
0TESTSUITE/aux-fixed/0471.rw
End
internal_search_find: file="TESTSUITE/aux-fixed/0471.rw"
- type=lsearch key="test.example"
+ type=lsearch key="test.example" opts=NULL
cached data used for lookup of test.example
in TESTSUITE/aux-fixed/0471.rw
lookup yielded: rwtest.example
search_open: lsearch "TESTSUITE/aux-fixed/0471.rw"
cached open
search_find: file="TESTSUITE/aux-fixed/0471.rw"
- key="test.example" partial=2 affix=*. starflags=0
+ key="test.example" partial=2 affix=*. starflags=0 opts=NULL
LRU list:
0TESTSUITE/aux-fixed/0471.rw
End
internal_search_find: file="TESTSUITE/aux-fixed/0471.rw"
- type=lsearch key="test.example"
+ type=lsearch key="test.example" opts=NULL
cached data used for lookup of test.example
in TESTSUITE/aux-fixed/0471.rw
lookup yielded: rwtest.example
search_open: lsearch "TESTSUITE/aux-fixed/0471.rw"
cached open
search_find: file="TESTSUITE/aux-fixed/0471.rw"
- key="test.example" partial=2 affix=*. starflags=0
+ key="test.example" partial=2 affix=*. starflags=0 opts=NULL
LRU list:
0TESTSUITE/aux-fixed/0471.rw
End
internal_search_find: file="TESTSUITE/aux-fixed/0471.rw"
- type=lsearch key="test.example"
+ type=lsearch key="test.example" opts=NULL
cached data used for lookup of test.example
in TESTSUITE/aux-fixed/0471.rw
lookup yielded: rwtest.example
search_open: lsearch "TESTSUITE/aux-fixed/0471.rw"
cached open
search_find: file="TESTSUITE/aux-fixed/0471.rw"
- key="test.example" partial=2 affix=*. starflags=0
+ key="test.example" partial=2 affix=*. starflags=0 opts=NULL
LRU list:
0TESTSUITE/aux-fixed/0471.rw
End
internal_search_find: file="TESTSUITE/aux-fixed/0471.rw"
- type=lsearch key="test.example"
+ type=lsearch key="test.example" opts=NULL
cached data used for lookup of test.example
in TESTSUITE/aux-fixed/0471.rw
lookup yielded: rwtest.example
search_open: lsearch "TESTSUITE/aux-fixed/0471.rw"
cached open
search_find: file="TESTSUITE/aux-fixed/0471.rw"
- key="test.example" partial=2 affix=*. starflags=0
+ key="test.example" partial=2 affix=*. starflags=0 opts=NULL
LRU list:
0TESTSUITE/aux-fixed/0471.rw
End
internal_search_find: file="TESTSUITE/aux-fixed/0471.rw"
- type=lsearch key="test.example"
+ type=lsearch key="test.example" opts=NULL
cached data used for lookup of test.example
in TESTSUITE/aux-fixed/0471.rw
lookup yielded: rwtest.example
search_open: lsearch "TESTSUITE/aux-fixed/0471.rw"
cached open
search_find: file="TESTSUITE/aux-fixed/0471.rw"
- key="test.example" partial=2 affix=*. starflags=0
+ key="test.example" partial=2 affix=*. starflags=0 opts=NULL
LRU list:
0TESTSUITE/aux-fixed/0471.rw
End
internal_search_find: file="TESTSUITE/aux-fixed/0471.rw"
- type=lsearch key="test.example"
+ type=lsearch key="test.example" opts=NULL
cached data used for lookup of test.example
in TESTSUITE/aux-fixed/0471.rw
lookup yielded: rwtest.example
search_open: lsearch "TESTSUITE/aux-fixed/0471.rw"
cached open
search_find: file="TESTSUITE/aux-fixed/0471.rw"
- key="test.example" partial=2 affix=*. starflags=0
+ key="test.example" partial=2 affix=*. starflags=0 opts=NULL
LRU list:
0TESTSUITE/aux-fixed/0471.rw
End
internal_search_find: file="TESTSUITE/aux-fixed/0471.rw"
- type=lsearch key="test.example"
+ type=lsearch key="test.example" opts=NULL
cached data used for lookup of test.example
in TESTSUITE/aux-fixed/0471.rw
lookup yielded: rwtest.example
search_open: lsearch "TESTSUITE/aux-fixed/0471.rw"
cached open
search_find: file="TESTSUITE/aux-fixed/0471.rw"
- key="test.example" partial=2 affix=*. starflags=0
+ key="test.example" partial=2 affix=*. starflags=0 opts=NULL
LRU list:
0TESTSUITE/aux-fixed/0471.rw
End
internal_search_find: file="TESTSUITE/aux-fixed/0471.rw"
- type=lsearch key="test.example"
+ type=lsearch key="test.example" opts=NULL
cached data used for lookup of test.example
in TESTSUITE/aux-fixed/0471.rw
lookup yielded: rwtest.example
search_open: lsearch "TESTSUITE/aux-fixed/0471.rw"
cached open
search_find: file="TESTSUITE/aux-fixed/0471.rw"
- key="test.example" partial=2 affix=*. starflags=0
+ key="test.example" partial=2 affix=*. starflags=0 opts=NULL
LRU list:
0TESTSUITE/aux-fixed/0471.rw
End
internal_search_find: file="TESTSUITE/aux-fixed/0471.rw"
- type=lsearch key="test.example"
+ type=lsearch key="test.example" opts=NULL
cached data used for lookup of test.example
in TESTSUITE/aux-fixed/0471.rw
lookup yielded: rwtest.example
search_open: lsearch "TESTSUITE/aux-fixed/0471.rw"
cached open
search_find: file="TESTSUITE/aux-fixed/0471.rw"
- key="test.example" partial=2 affix=*. starflags=0
+ key="test.example" partial=2 affix=*. starflags=0 opts=NULL
LRU list:
0TESTSUITE/aux-fixed/0471.rw
End
internal_search_find: file="TESTSUITE/aux-fixed/0471.rw"
- type=lsearch key="test.example"
+ type=lsearch key="test.example" opts=NULL
cached data used for lookup of test.example
in TESTSUITE/aux-fixed/0471.rw
lookup yielded: rwtest.example
search_open: lsearch "TESTSUITE/aux-fixed/0471.rw"
cached open
search_find: file="TESTSUITE/aux-fixed/0471.rw"
- key="test.example" partial=2 affix=*. starflags=0
+ key="test.example" partial=2 affix=*. starflags=0 opts=NULL
LRU list:
0TESTSUITE/aux-fixed/0471.rw
End
internal_search_find: file="TESTSUITE/aux-fixed/0471.rw"
- type=lsearch key="test.example"
+ type=lsearch key="test.example" opts=NULL
cached data used for lookup of test.example
in TESTSUITE/aux-fixed/0471.rw
lookup yielded: rwtest.example
search_open: lsearch "TESTSUITE/aux-fixed/0471.rw"
cached open
search_find: file="TESTSUITE/aux-fixed/0471.rw"
- key="test.example" partial=2 affix=*. starflags=0
+ key="test.example" partial=2 affix=*. starflags=0 opts=NULL
LRU list:
0TESTSUITE/aux-fixed/0471.rw
End
internal_search_find: file="TESTSUITE/aux-fixed/0471.rw"
- type=lsearch key="test.example"
+ type=lsearch key="test.example" opts=NULL
cached data used for lookup of test.example
in TESTSUITE/aux-fixed/0471.rw
lookup yielded: rwtest.example
search_open: lsearch "TESTSUITE/aux-fixed/0471.rw"
cached open
search_find: file="TESTSUITE/aux-fixed/0471.rw"
- key="test.example" partial=2 affix=*. starflags=0
+ key="test.example" partial=2 affix=*. starflags=0 opts=NULL
LRU list:
0TESTSUITE/aux-fixed/0471.rw
End
internal_search_find: file="TESTSUITE/aux-fixed/0471.rw"
- type=lsearch key="test.example"
+ type=lsearch key="test.example" opts=NULL
cached data used for lookup of test.example
in TESTSUITE/aux-fixed/0471.rw
lookup yielded: rwtest.example
search_open: lsearch "TESTSUITE/aux-fixed/0471.rw"
cached open
search_find: file="TESTSUITE/aux-fixed/0471.rw"
- key="test.example" partial=2 affix=*. starflags=0
+ key="test.example" partial=2 affix=*. starflags=0 opts=NULL
LRU list:
0TESTSUITE/aux-fixed/0471.rw
End
internal_search_find: file="TESTSUITE/aux-fixed/0471.rw"
- type=lsearch key="test.example"
+ type=lsearch key="test.example" opts=NULL
cached data used for lookup of test.example
in TESTSUITE/aux-fixed/0471.rw
lookup yielded: rwtest.example
search_open: lsearch "TESTSUITE/aux-fixed/0471.rw"
cached open
search_find: file="TESTSUITE/aux-fixed/0471.rw"
- key="test.example" partial=2 affix=*. starflags=0
+ key="test.example" partial=2 affix=*. starflags=0 opts=NULL
LRU list:
0TESTSUITE/aux-fixed/0471.rw
End
internal_search_find: file="TESTSUITE/aux-fixed/0471.rw"
- type=lsearch key="test.example"
+ type=lsearch key="test.example" opts=NULL
cached data used for lookup of test.example
in TESTSUITE/aux-fixed/0471.rw
lookup yielded: rwtest.example
search_open: lsearch "TESTSUITE/aux-fixed/0471.rw"
cached open
search_find: file="TESTSUITE/aux-fixed/0471.rw"
- key="test.example" partial=2 affix=*. starflags=0
+ key="test.example" partial=2 affix=*. starflags=0 opts=NULL
LRU list:
0TESTSUITE/aux-fixed/0471.rw
End
internal_search_find: file="TESTSUITE/aux-fixed/0471.rw"
- type=lsearch key="test.example"
+ type=lsearch key="test.example" opts=NULL
cached data used for lookup of test.example
in TESTSUITE/aux-fixed/0471.rw
lookup yielded: rwtest.example
search_open: lsearch "TESTSUITE/aux-fixed/0471.rw"
cached open
search_find: file="TESTSUITE/aux-fixed/0471.rw"
- key="test.example" partial=2 affix=*. starflags=0
+ key="test.example" partial=2 affix=*. starflags=0 opts=NULL
LRU list:
0TESTSUITE/aux-fixed/0471.rw
End
internal_search_find: file="TESTSUITE/aux-fixed/0471.rw"
- type=lsearch key="test.example"
+ type=lsearch key="test.example" opts=NULL
cached data used for lookup of test.example
in TESTSUITE/aux-fixed/0471.rw
lookup yielded: rwtest.example
search_open: lsearch "TESTSUITE/aux-fixed/0471.rw"
cached open
search_find: file="TESTSUITE/aux-fixed/0471.rw"
- key="test.example" partial=2 affix=*. starflags=0
+ key="test.example" partial=2 affix=*. starflags=0 opts=NULL
LRU list:
0TESTSUITE/aux-fixed/0471.rw
End
internal_search_find: file="TESTSUITE/aux-fixed/0471.rw"
- type=lsearch key="test.example"
+ type=lsearch key="test.example" opts=NULL
cached data used for lookup of test.example
in TESTSUITE/aux-fixed/0471.rw
lookup yielded: rwtest.example
search_open: lsearch "TESTSUITE/aux-fixed/0471.rw"
cached open
search_find: file="TESTSUITE/aux-fixed/0471.rw"
- key="test.example" partial=2 affix=*. starflags=0
+ key="test.example" partial=2 affix=*. starflags=0 opts=NULL
LRU list:
0TESTSUITE/aux-fixed/0471.rw
End
internal_search_find: file="TESTSUITE/aux-fixed/0471.rw"
- type=lsearch key="test.example"
+ type=lsearch key="test.example" opts=NULL
cached data used for lookup of test.example
in TESTSUITE/aux-fixed/0471.rw
lookup yielded: rwtest.example
search_open: lsearch "TESTSUITE/aux-fixed/0471.rw"
cached open
search_find: file="TESTSUITE/aux-fixed/0471.rw"
- key="test.example" partial=2 affix=*. starflags=0
+ key="test.example" partial=2 affix=*. starflags=0 opts=NULL
LRU list:
0TESTSUITE/aux-fixed/0471.rw
End
internal_search_find: file="TESTSUITE/aux-fixed/0471.rw"
- type=lsearch key="test.example"
+ type=lsearch key="test.example" opts=NULL
cached data used for lookup of test.example
in TESTSUITE/aux-fixed/0471.rw
lookup yielded: rwtest.example
search_open: lsearch "TESTSUITE/aux-fixed/0471.rw"
cached open
search_find: file="TESTSUITE/aux-fixed/0471.rw"
- key="test.example" partial=2 affix=*. starflags=0
+ key="test.example" partial=2 affix=*. starflags=0 opts=NULL
LRU list:
0TESTSUITE/aux-fixed/0471.rw
End
internal_search_find: file="TESTSUITE/aux-fixed/0471.rw"
- type=lsearch key="test.example"
+ type=lsearch key="test.example" opts=NULL
cached data used for lookup of test.example
in TESTSUITE/aux-fixed/0471.rw
lookup yielded: rwtest.example
search_open: lsearch "TESTSUITE/aux-fixed/0471.rw"
cached open
search_find: file="TESTSUITE/aux-fixed/0471.rw"
- key="test.example" partial=2 affix=*. starflags=0
+ key="test.example" partial=2 affix=*. starflags=0 opts=NULL
LRU list:
0TESTSUITE/aux-fixed/0471.rw
End
internal_search_find: file="TESTSUITE/aux-fixed/0471.rw"
- type=lsearch key="test.example"
+ type=lsearch key="test.example" opts=NULL
cached data used for lookup of test.example
in TESTSUITE/aux-fixed/0471.rw
lookup yielded: rwtest.example
search_open: lsearch "TESTSUITE/aux-fixed/0471.rw"
cached open
search_find: file="TESTSUITE/aux-fixed/0471.rw"
- key="test.example" partial=2 affix=*. starflags=0
+ key="test.example" partial=2 affix=*. starflags=0 opts=NULL
LRU list:
0TESTSUITE/aux-fixed/0471.rw
End
internal_search_find: file="TESTSUITE/aux-fixed/0471.rw"
- type=lsearch key="test.example"
+ type=lsearch key="test.example" opts=NULL
cached data used for lookup of test.example
in TESTSUITE/aux-fixed/0471.rw
lookup yielded: rwtest.example
search_open: lsearch "TESTSUITE/aux-fixed/0471.rw"
cached open
search_find: file="TESTSUITE/aux-fixed/0471.rw"
- key="test.example" partial=2 affix=*. starflags=0
+ key="test.example" partial=2 affix=*. starflags=0 opts=NULL
LRU list:
0TESTSUITE/aux-fixed/0471.rw
End
internal_search_find: file="TESTSUITE/aux-fixed/0471.rw"
- type=lsearch key="test.example"
+ type=lsearch key="test.example" opts=NULL
cached data used for lookup of test.example
in TESTSUITE/aux-fixed/0471.rw
lookup yielded: rwtest.example
search_open: lsearch "TESTSUITE/aux-fixed/0471.rw"
cached open
search_find: file="TESTSUITE/aux-fixed/0471.rw"
- key="test.example" partial=2 affix=*. starflags=0
+ key="test.example" partial=2 affix=*. starflags=0 opts=NULL
LRU list:
0TESTSUITE/aux-fixed/0471.rw
End
internal_search_find: file="TESTSUITE/aux-fixed/0471.rw"
- type=lsearch key="test.example"
+ type=lsearch key="test.example" opts=NULL
cached data used for lookup of test.example
in TESTSUITE/aux-fixed/0471.rw
lookup yielded: rwtest.example
search_open: lsearch "TESTSUITE/aux-fixed/0471.rw"
cached open
search_find: file="TESTSUITE/aux-fixed/0471.rw"
- key="test.example" partial=2 affix=*. starflags=0
+ key="test.example" partial=2 affix=*. starflags=0 opts=NULL
LRU list:
0TESTSUITE/aux-fixed/0471.rw
End
internal_search_find: file="TESTSUITE/aux-fixed/0471.rw"
- type=lsearch key="test.example"
+ type=lsearch key="test.example" opts=NULL
cached data used for lookup of test.example
in TESTSUITE/aux-fixed/0471.rw
lookup yielded: rwtest.example
search_open: lsearch "TESTSUITE/aux-fixed/0471.rw"
cached open
search_find: file="TESTSUITE/aux-fixed/0471.rw"
- key="test.example" partial=2 affix=*. starflags=0
+ key="test.example" partial=2 affix=*. starflags=0 opts=NULL
LRU list:
0TESTSUITE/aux-fixed/0471.rw
End
internal_search_find: file="TESTSUITE/aux-fixed/0471.rw"
- type=lsearch key="test.example"
+ type=lsearch key="test.example" opts=NULL
cached data used for lookup of test.example
in TESTSUITE/aux-fixed/0471.rw
lookup yielded: rwtest.example
search_open: lsearch "TESTSUITE/aux-fixed/0471.rw"
cached open
search_find: file="TESTSUITE/aux-fixed/0471.rw"
- key="test.example" partial=2 affix=*. starflags=0
+ key="test.example" partial=2 affix=*. starflags=0 opts=NULL
LRU list:
0TESTSUITE/aux-fixed/0471.rw
End
internal_search_find: file="TESTSUITE/aux-fixed/0471.rw"
- type=lsearch key="test.example"
+ type=lsearch key="test.example" opts=NULL
cached data used for lookup of test.example
in TESTSUITE/aux-fixed/0471.rw
lookup yielded: rwtest.example
search_open: lsearch "TESTSUITE/aux-fixed/0471.rw"
cached open
search_find: file="TESTSUITE/aux-fixed/0471.rw"
- key="test.example" partial=2 affix=*. starflags=0
+ key="test.example" partial=2 affix=*. starflags=0 opts=NULL
LRU list:
0TESTSUITE/aux-fixed/0471.rw
End
internal_search_find: file="TESTSUITE/aux-fixed/0471.rw"
- type=lsearch key="test.example"
+ type=lsearch key="test.example" opts=NULL
cached data used for lookup of test.example
in TESTSUITE/aux-fixed/0471.rw
lookup yielded: rwtest.example
search_open: lsearch "TESTSUITE/aux-fixed/0471.rw"
cached open
search_find: file="TESTSUITE/aux-fixed/0471.rw"
- key="test.example" partial=2 affix=*. starflags=0
+ key="test.example" partial=2 affix=*. starflags=0 opts=NULL
LRU list:
0TESTSUITE/aux-fixed/0471.rw
End
internal_search_find: file="TESTSUITE/aux-fixed/0471.rw"
- type=lsearch key="test.example"
+ type=lsearch key="test.example" opts=NULL
cached data used for lookup of test.example
in TESTSUITE/aux-fixed/0471.rw
lookup yielded: rwtest.example
search_open: lsearch "TESTSUITE/aux-fixed/0471.rw"
cached open
search_find: file="TESTSUITE/aux-fixed/0471.rw"
- key="test.example" partial=2 affix=*. starflags=0
+ key="test.example" partial=2 affix=*. starflags=0 opts=NULL
LRU list:
0TESTSUITE/aux-fixed/0471.rw
End
internal_search_find: file="TESTSUITE/aux-fixed/0471.rw"
- type=lsearch key="test.example"
+ type=lsearch key="test.example" opts=NULL
cached data used for lookup of test.example
in TESTSUITE/aux-fixed/0471.rw
lookup yielded: rwtest.example
search_open: lsearch "TESTSUITE/aux-fixed/0471.rw"
cached open
search_find: file="TESTSUITE/aux-fixed/0471.rw"
- key="test.example" partial=2 affix=*. starflags=0
+ key="test.example" partial=2 affix=*. starflags=0 opts=NULL
LRU list:
0TESTSUITE/aux-fixed/0471.rw
End
internal_search_find: file="TESTSUITE/aux-fixed/0471.rw"
- type=lsearch key="test.example"
+ type=lsearch key="test.example" opts=NULL
cached data used for lookup of test.example
in TESTSUITE/aux-fixed/0471.rw
lookup yielded: rwtest.example
search_open: lsearch "TESTSUITE/aux-fixed/0471.rw"
cached open
search_find: file="TESTSUITE/aux-fixed/0471.rw"
- key="test.example" partial=2 affix=*. starflags=0
+ key="test.example" partial=2 affix=*. starflags=0 opts=NULL
LRU list:
0TESTSUITE/aux-fixed/0471.rw
End
internal_search_find: file="TESTSUITE/aux-fixed/0471.rw"
- type=lsearch key="test.example"
+ type=lsearch key="test.example" opts=NULL
cached data used for lookup of test.example
in TESTSUITE/aux-fixed/0471.rw
lookup yielded: rwtest.example
search_open: lsearch "TESTSUITE/aux-fixed/0471.rw"
cached open
search_find: file="TESTSUITE/aux-fixed/0471.rw"
- key="test.example" partial=2 affix=*. starflags=0
+ key="test.example" partial=2 affix=*. starflags=0 opts=NULL
LRU list:
0TESTSUITE/aux-fixed/0471.rw
End
internal_search_find: file="TESTSUITE/aux-fixed/0471.rw"
- type=lsearch key="test.example"
+ type=lsearch key="test.example" opts=NULL
cached data used for lookup of test.example
in TESTSUITE/aux-fixed/0471.rw
lookup yielded: rwtest.example
search_open: lsearch "TESTSUITE/aux-fixed/0471.rw"
cached open
search_find: file="TESTSUITE/aux-fixed/0471.rw"
- key="test.example" partial=2 affix=*. starflags=0
+ key="test.example" partial=2 affix=*. starflags=0 opts=NULL
LRU list:
0TESTSUITE/aux-fixed/0471.rw
End
internal_search_find: file="TESTSUITE/aux-fixed/0471.rw"
- type=lsearch key="test.example"
+ type=lsearch key="test.example" opts=NULL
cached data used for lookup of test.example
in TESTSUITE/aux-fixed/0471.rw
lookup yielded: rwtest.example
search_open: lsearch "TESTSUITE/aux-fixed/0471.rw"
cached open
search_find: file="TESTSUITE/aux-fixed/0471.rw"
- key="test.example" partial=2 affix=*. starflags=0
+ key="test.example" partial=2 affix=*. starflags=0 opts=NULL
LRU list:
0TESTSUITE/aux-fixed/0471.rw
End
internal_search_find: file="TESTSUITE/aux-fixed/0471.rw"
- type=lsearch key="test.example"
+ type=lsearch key="test.example" opts=NULL
cached data used for lookup of test.example
in TESTSUITE/aux-fixed/0471.rw
lookup yielded: rwtest.example
search_open: lsearch "TESTSUITE/aux-fixed/0471.rw"
cached open
search_find: file="TESTSUITE/aux-fixed/0471.rw"
- key="test.example" partial=2 affix=*. starflags=0
+ key="test.example" partial=2 affix=*. starflags=0 opts=NULL
LRU list:
0TESTSUITE/aux-fixed/0471.rw
End
internal_search_find: file="TESTSUITE/aux-fixed/0471.rw"
- type=lsearch key="test.example"
+ type=lsearch key="test.example" opts=NULL
cached data used for lookup of test.example
in TESTSUITE/aux-fixed/0471.rw
lookup yielded: rwtest.example
search_open: lsearch "TESTSUITE/aux-fixed/0471.rw"
cached open
search_find: file="TESTSUITE/aux-fixed/0471.rw"
- key="test.example" partial=2 affix=*. starflags=0
+ key="test.example" partial=2 affix=*. starflags=0 opts=NULL
LRU list:
0TESTSUITE/aux-fixed/0471.rw
End
internal_search_find: file="TESTSUITE/aux-fixed/0471.rw"
- type=lsearch key="test.example"
+ type=lsearch key="test.example" opts=NULL
cached data used for lookup of test.example
in TESTSUITE/aux-fixed/0471.rw
lookup yielded: rwtest.example
search_open: lsearch "TESTSUITE/aux-fixed/0471.rw"
cached open
search_find: file="TESTSUITE/aux-fixed/0471.rw"
- key="test.example" partial=2 affix=*. starflags=0
+ key="test.example" partial=2 affix=*. starflags=0 opts=NULL
LRU list:
0TESTSUITE/aux-fixed/0471.rw
End
internal_search_find: file="TESTSUITE/aux-fixed/0471.rw"
- type=lsearch key="test.example"
+ type=lsearch key="test.example" opts=NULL
cached data used for lookup of test.example
in TESTSUITE/aux-fixed/0471.rw
lookup yielded: rwtest.example
search_open: lsearch "TESTSUITE/aux-fixed/0471.rw"
cached open
search_find: file="TESTSUITE/aux-fixed/0471.rw"
- key="test.example" partial=2 affix=*. starflags=0
+ key="test.example" partial=2 affix=*. starflags=0 opts=NULL
LRU list:
0TESTSUITE/aux-fixed/0471.rw
End
internal_search_find: file="TESTSUITE/aux-fixed/0471.rw"
- type=lsearch key="test.example"
+ type=lsearch key="test.example" opts=NULL
cached data used for lookup of test.example
in TESTSUITE/aux-fixed/0471.rw
lookup yielded: rwtest.example
search_open: lsearch "TESTSUITE/aux-fixed/0471.rw"
cached open
search_find: file="TESTSUITE/aux-fixed/0471.rw"
- key="test.example" partial=2 affix=*. starflags=0
+ key="test.example" partial=2 affix=*. starflags=0 opts=NULL
LRU list:
0TESTSUITE/aux-fixed/0471.rw
End
internal_search_find: file="TESTSUITE/aux-fixed/0471.rw"
- type=lsearch key="test.example"
+ type=lsearch key="test.example" opts=NULL
cached data used for lookup of test.example
in TESTSUITE/aux-fixed/0471.rw
lookup yielded: rwtest.example
search_open: lsearch "TESTSUITE/aux-fixed/0471.rw"
cached open
search_find: file="TESTSUITE/aux-fixed/0471.rw"
- key="test.example" partial=2 affix=*. starflags=0
+ key="test.example" partial=2 affix=*. starflags=0 opts=NULL
LRU list:
0TESTSUITE/aux-fixed/0471.rw
End
internal_search_find: file="TESTSUITE/aux-fixed/0471.rw"
- type=lsearch key="test.example"
+ type=lsearch key="test.example" opts=NULL
cached data used for lookup of test.example
in TESTSUITE/aux-fixed/0471.rw
lookup yielded: rwtest.example
search_open: lsearch "TESTSUITE/aux-fixed/0471.rw"
cached open
search_find: file="TESTSUITE/aux-fixed/0471.rw"
- key="test.example" partial=2 affix=*. starflags=0
+ key="test.example" partial=2 affix=*. starflags=0 opts=NULL
LRU list:
0TESTSUITE/aux-fixed/0471.rw
End
internal_search_find: file="TESTSUITE/aux-fixed/0471.rw"
- type=lsearch key="test.example"
+ type=lsearch key="test.example" opts=NULL
cached data used for lookup of test.example
in TESTSUITE/aux-fixed/0471.rw
lookup yielded: rwtest.example
search_open: lsearch "TESTSUITE/aux-fixed/0471.rw"
cached open
search_find: file="TESTSUITE/aux-fixed/0471.rw"
- key="test.example" partial=2 affix=*. starflags=0
+ key="test.example" partial=2 affix=*. starflags=0 opts=NULL
LRU list:
0TESTSUITE/aux-fixed/0471.rw
End
internal_search_find: file="TESTSUITE/aux-fixed/0471.rw"
- type=lsearch key="test.example"
+ type=lsearch key="test.example" opts=NULL
cached data used for lookup of test.example
in TESTSUITE/aux-fixed/0471.rw
lookup yielded: rwtest.example
search_open: lsearch "TESTSUITE/aux-fixed/0471.rw"
cached open
search_find: file="TESTSUITE/aux-fixed/0471.rw"
- key="test.example" partial=2 affix=*. starflags=0
+ key="test.example" partial=2 affix=*. starflags=0 opts=NULL
LRU list:
0TESTSUITE/aux-fixed/0471.rw
End
internal_search_find: file="TESTSUITE/aux-fixed/0471.rw"
- type=lsearch key="test.example"
+ type=lsearch key="test.example" opts=NULL
cached data used for lookup of test.example
in TESTSUITE/aux-fixed/0471.rw
lookup yielded: rwtest.example
search_open: lsearch "TESTSUITE/aux-fixed/0471.rw"
cached open
search_find: file="TESTSUITE/aux-fixed/0471.rw"
- key="test.example" partial=2 affix=*. starflags=0
+ key="test.example" partial=2 affix=*. starflags=0 opts=NULL
LRU list:
0TESTSUITE/aux-fixed/0471.rw
End
internal_search_find: file="TESTSUITE/aux-fixed/0471.rw"
- type=lsearch key="test.example"
+ type=lsearch key="test.example" opts=NULL
cached data used for lookup of test.example
in TESTSUITE/aux-fixed/0471.rw
lookup yielded: rwtest.example
search_open: lsearch "TESTSUITE/aux-fixed/0471.rw"
cached open
search_find: file="TESTSUITE/aux-fixed/0471.rw"
- key="test.example" partial=2 affix=*. starflags=0
+ key="test.example" partial=2 affix=*. starflags=0 opts=NULL
LRU list:
0TESTSUITE/aux-fixed/0471.rw
End
internal_search_find: file="TESTSUITE/aux-fixed/0471.rw"
- type=lsearch key="test.example"
+ type=lsearch key="test.example" opts=NULL
cached data used for lookup of test.example
in TESTSUITE/aux-fixed/0471.rw
lookup yielded: rwtest.example
search_open: lsearch "TESTSUITE/aux-fixed/0471.rw"
cached open
search_find: file="TESTSUITE/aux-fixed/0471.rw"
- key="test.example" partial=2 affix=*. starflags=0
+ key="test.example" partial=2 affix=*. starflags=0 opts=NULL
LRU list:
0TESTSUITE/aux-fixed/0471.rw
End
internal_search_find: file="TESTSUITE/aux-fixed/0471.rw"
- type=lsearch key="test.example"
+ type=lsearch key="test.example" opts=NULL
cached data used for lookup of test.example
in TESTSUITE/aux-fixed/0471.rw
lookup yielded: rwtest.example
search_open: lsearch "TESTSUITE/aux-fixed/0471.rw"
cached open
search_find: file="TESTSUITE/aux-fixed/0471.rw"
- key="test.example" partial=2 affix=*. starflags=0
+ key="test.example" partial=2 affix=*. starflags=0 opts=NULL
LRU list:
0TESTSUITE/aux-fixed/0471.rw
End
internal_search_find: file="TESTSUITE/aux-fixed/0471.rw"
- type=lsearch key="test.example"
+ type=lsearch key="test.example" opts=NULL
cached data used for lookup of test.example
in TESTSUITE/aux-fixed/0471.rw
lookup yielded: rwtest.example
search_open: lsearch "TESTSUITE/aux-fixed/0471.rw"
cached open
search_find: file="TESTSUITE/aux-fixed/0471.rw"
- key="test.example" partial=2 affix=*. starflags=0
+ key="test.example" partial=2 affix=*. starflags=0 opts=NULL
LRU list:
0TESTSUITE/aux-fixed/0471.rw
End
internal_search_find: file="TESTSUITE/aux-fixed/0471.rw"
- type=lsearch key="test.example"
+ type=lsearch key="test.example" opts=NULL
cached data used for lookup of test.example
in TESTSUITE/aux-fixed/0471.rw
lookup yielded: rwtest.example
search_open: lsearch "TESTSUITE/aux-fixed/0471.rw"
cached open
search_find: file="TESTSUITE/aux-fixed/0471.rw"
- key="test.example" partial=2 affix=*. starflags=0
+ key="test.example" partial=2 affix=*. starflags=0 opts=NULL
LRU list:
0TESTSUITE/aux-fixed/0471.rw
End
internal_search_find: file="TESTSUITE/aux-fixed/0471.rw"
- type=lsearch key="test.example"
+ type=lsearch key="test.example" opts=NULL
cached data used for lookup of test.example
in TESTSUITE/aux-fixed/0471.rw
lookup yielded: rwtest.example
search_open: lsearch "TESTSUITE/aux-fixed/0471.rw"
cached open
search_find: file="TESTSUITE/aux-fixed/0471.rw"
- key="test.example" partial=2 affix=*. starflags=0
+ key="test.example" partial=2 affix=*. starflags=0 opts=NULL
LRU list:
0TESTSUITE/aux-fixed/0471.rw
End
internal_search_find: file="TESTSUITE/aux-fixed/0471.rw"
- type=lsearch key="test.example"
+ type=lsearch key="test.example" opts=NULL
cached data used for lookup of test.example
in TESTSUITE/aux-fixed/0471.rw
lookup yielded: rwtest.example
search_open: lsearch "TESTSUITE/aux-fixed/0471.rw"
cached open
search_find: file="TESTSUITE/aux-fixed/0471.rw"
- key="test.example" partial=2 affix=*. starflags=0
+ key="test.example" partial=2 affix=*. starflags=0 opts=NULL
LRU list:
0TESTSUITE/aux-fixed/0471.rw
End
internal_search_find: file="TESTSUITE/aux-fixed/0471.rw"
- type=lsearch key="test.example"
+ type=lsearch key="test.example" opts=NULL
cached data used for lookup of test.example
in TESTSUITE/aux-fixed/0471.rw
lookup yielded: rwtest.example
search_open: lsearch "TESTSUITE/aux-fixed/0471.rw"
cached open
search_find: file="TESTSUITE/aux-fixed/0471.rw"
- key="test.example" partial=2 affix=*. starflags=0
+ key="test.example" partial=2 affix=*. starflags=0 opts=NULL
LRU list:
0TESTSUITE/aux-fixed/0471.rw
End
internal_search_find: file="TESTSUITE/aux-fixed/0471.rw"
- type=lsearch key="test.example"
+ type=lsearch key="test.example" opts=NULL
cached data used for lookup of test.example
in TESTSUITE/aux-fixed/0471.rw
lookup yielded: rwtest.example
search_open: lsearch "TESTSUITE/aux-fixed/0471.rw"
cached open
search_find: file="TESTSUITE/aux-fixed/0471.rw"
- key="test.example" partial=2 affix=*. starflags=0
+ key="test.example" partial=2 affix=*. starflags=0 opts=NULL
LRU list:
0TESTSUITE/aux-fixed/0471.rw
End
internal_search_find: file="TESTSUITE/aux-fixed/0471.rw"
- type=lsearch key="test.example"
+ type=lsearch key="test.example" opts=NULL
cached data used for lookup of test.example
in TESTSUITE/aux-fixed/0471.rw
lookup yielded: rwtest.example
search_open: lsearch "TESTSUITE/aux-fixed/0471.rw"
cached open
search_find: file="TESTSUITE/aux-fixed/0471.rw"
- key="test.example" partial=2 affix=*. starflags=0
+ key="test.example" partial=2 affix=*. starflags=0 opts=NULL
LRU list:
0TESTSUITE/aux-fixed/0471.rw
End
internal_search_find: file="TESTSUITE/aux-fixed/0471.rw"
- type=lsearch key="test.example"
+ type=lsearch key="test.example" opts=NULL
cached data used for lookup of test.example
in TESTSUITE/aux-fixed/0471.rw
lookup yielded: rwtest.example
search_open: lsearch "TESTSUITE/aux-fixed/0471.rw"
cached open
search_find: file="TESTSUITE/aux-fixed/0471.rw"
- key="test.example" partial=2 affix=*. starflags=0
+ key="test.example" partial=2 affix=*. starflags=0 opts=NULL
LRU list:
0TESTSUITE/aux-fixed/0471.rw
End
internal_search_find: file="TESTSUITE/aux-fixed/0471.rw"
- type=lsearch key="test.example"
+ type=lsearch key="test.example" opts=NULL
cached data used for lookup of test.example
in TESTSUITE/aux-fixed/0471.rw
lookup yielded: rwtest.example
search_open: lsearch "TESTSUITE/aux-fixed/0471.rw"
cached open
search_find: file="TESTSUITE/aux-fixed/0471.rw"
- key="test.example" partial=2 affix=*. starflags=0
+ key="test.example" partial=2 affix=*. starflags=0 opts=NULL
LRU list:
0TESTSUITE/aux-fixed/0471.rw
End
internal_search_find: file="TESTSUITE/aux-fixed/0471.rw"
- type=lsearch key="test.example"
+ type=lsearch key="test.example" opts=NULL
cached data used for lookup of test.example
in TESTSUITE/aux-fixed/0471.rw
lookup yielded: rwtest.example
search_open: lsearch "TESTSUITE/aux-fixed/0471.rw"
cached open
search_find: file="TESTSUITE/aux-fixed/0471.rw"
- key="test.example" partial=2 affix=*. starflags=0
+ key="test.example" partial=2 affix=*. starflags=0 opts=NULL
LRU list:
0TESTSUITE/aux-fixed/0471.rw
End
internal_search_find: file="TESTSUITE/aux-fixed/0471.rw"
- type=lsearch key="test.example"
+ type=lsearch key="test.example" opts=NULL
cached data used for lookup of test.example
in TESTSUITE/aux-fixed/0471.rw
lookup yielded: rwtest.example
search_open: lsearch "TESTSUITE/aux-fixed/0471.rw"
cached open
search_find: file="TESTSUITE/aux-fixed/0471.rw"
- key="test.example" partial=2 affix=*. starflags=0
+ key="test.example" partial=2 affix=*. starflags=0 opts=NULL
LRU list:
0TESTSUITE/aux-fixed/0471.rw
End
internal_search_find: file="TESTSUITE/aux-fixed/0471.rw"
- type=lsearch key="test.example"
+ type=lsearch key="test.example" opts=NULL
cached data used for lookup of test.example
in TESTSUITE/aux-fixed/0471.rw
lookup yielded: rwtest.example
search_open: lsearch "TESTSUITE/aux-fixed/0471.rw"
cached open
search_find: file="TESTSUITE/aux-fixed/0471.rw"
- key="test.example" partial=2 affix=*. starflags=0
+ key="test.example" partial=2 affix=*. starflags=0 opts=NULL
LRU list:
0TESTSUITE/aux-fixed/0471.rw
End
internal_search_find: file="TESTSUITE/aux-fixed/0471.rw"
- type=lsearch key="test.example"
+ type=lsearch key="test.example" opts=NULL
cached data used for lookup of test.example
in TESTSUITE/aux-fixed/0471.rw
lookup yielded: rwtest.example
search_open: lsearch "TESTSUITE/aux-fixed/0471.rw"
cached open
search_find: file="TESTSUITE/aux-fixed/0471.rw"
- key="test.example" partial=2 affix=*. starflags=0
+ key="test.example" partial=2 affix=*. starflags=0 opts=NULL
LRU list:
0TESTSUITE/aux-fixed/0471.rw
End
internal_search_find: file="TESTSUITE/aux-fixed/0471.rw"
- type=lsearch key="test.example"
+ type=lsearch key="test.example" opts=NULL
cached data used for lookup of test.example
in TESTSUITE/aux-fixed/0471.rw
lookup yielded: rwtest.example
search_open: lsearch "TESTSUITE/aux-fixed/0471.rw"
cached open
search_find: file="TESTSUITE/aux-fixed/0471.rw"
- key="test.example" partial=2 affix=*. starflags=0
+ key="test.example" partial=2 affix=*. starflags=0 opts=NULL
LRU list:
0TESTSUITE/aux-fixed/0471.rw
End
internal_search_find: file="TESTSUITE/aux-fixed/0471.rw"
- type=lsearch key="test.example"
+ type=lsearch key="test.example" opts=NULL
cached data used for lookup of test.example
in TESTSUITE/aux-fixed/0471.rw
lookup yielded: rwtest.example
search_open: lsearch "TESTSUITE/aux-fixed/0471.rw"
cached open
search_find: file="TESTSUITE/aux-fixed/0471.rw"
- key="test.example" partial=2 affix=*. starflags=0
+ key="test.example" partial=2 affix=*. starflags=0 opts=NULL
LRU list:
0TESTSUITE/aux-fixed/0471.rw
End
internal_search_find: file="TESTSUITE/aux-fixed/0471.rw"
- type=lsearch key="test.example"
+ type=lsearch key="test.example" opts=NULL
cached data used for lookup of test.example
in TESTSUITE/aux-fixed/0471.rw
lookup yielded: rwtest.example
search_open: lsearch "TESTSUITE/aux-fixed/0471.rw"
cached open
search_find: file="TESTSUITE/aux-fixed/0471.rw"
- key="test.example" partial=2 affix=*. starflags=0
+ key="test.example" partial=2 affix=*. starflags=0 opts=NULL
LRU list:
0TESTSUITE/aux-fixed/0471.rw
End
internal_search_find: file="TESTSUITE/aux-fixed/0471.rw"
- type=lsearch key="test.example"
+ type=lsearch key="test.example" opts=NULL
cached data used for lookup of test.example
in TESTSUITE/aux-fixed/0471.rw
lookup yielded: rwtest.example
search_open: lsearch "TESTSUITE/aux-fixed/0471.rw"
cached open
search_find: file="TESTSUITE/aux-fixed/0471.rw"
- key="test.example" partial=2 affix=*. starflags=0
+ key="test.example" partial=2 affix=*. starflags=0 opts=NULL
LRU list:
0TESTSUITE/aux-fixed/0471.rw
End
internal_search_find: file="TESTSUITE/aux-fixed/0471.rw"
- type=lsearch key="test.example"
+ type=lsearch key="test.example" opts=NULL
cached data used for lookup of test.example
in TESTSUITE/aux-fixed/0471.rw
lookup yielded: rwtest.example
search_open: lsearch "TESTSUITE/aux-fixed/0471.rw"
cached open
search_find: file="TESTSUITE/aux-fixed/0471.rw"
- key="test.example" partial=2 affix=*. starflags=0
+ key="test.example" partial=2 affix=*. starflags=0 opts=NULL
LRU list:
0TESTSUITE/aux-fixed/0471.rw
End
internal_search_find: file="TESTSUITE/aux-fixed/0471.rw"
- type=lsearch key="test.example"
+ type=lsearch key="test.example" opts=NULL
cached data used for lookup of test.example
in TESTSUITE/aux-fixed/0471.rw
lookup yielded: rwtest.example
search_open: lsearch "TESTSUITE/aux-fixed/0471.rw"
cached open
search_find: file="TESTSUITE/aux-fixed/0471.rw"
- key="test.example" partial=2 affix=*. starflags=0
+ key="test.example" partial=2 affix=*. starflags=0 opts=NULL
LRU list:
0TESTSUITE/aux-fixed/0471.rw
End
internal_search_find: file="TESTSUITE/aux-fixed/0471.rw"
- type=lsearch key="test.example"
+ type=lsearch key="test.example" opts=NULL
cached data used for lookup of test.example
in TESTSUITE/aux-fixed/0471.rw
lookup yielded: rwtest.example
search_open: lsearch "TESTSUITE/aux-fixed/0471.rw"
cached open
search_find: file="TESTSUITE/aux-fixed/0471.rw"
- key="test.example" partial=2 affix=*. starflags=0
+ key="test.example" partial=2 affix=*. starflags=0 opts=NULL
LRU list:
0TESTSUITE/aux-fixed/0471.rw
End
internal_search_find: file="TESTSUITE/aux-fixed/0471.rw"
- type=lsearch key="test.example"
+ type=lsearch key="test.example" opts=NULL
cached data used for lookup of test.example
in TESTSUITE/aux-fixed/0471.rw
lookup yielded: rwtest.example
search_open: lsearch "TESTSUITE/aux-fixed/0471.rw"
cached open
search_find: file="TESTSUITE/aux-fixed/0471.rw"
- key="test.example" partial=2 affix=*. starflags=0
+ key="test.example" partial=2 affix=*. starflags=0 opts=NULL
LRU list:
0TESTSUITE/aux-fixed/0471.rw
End
internal_search_find: file="TESTSUITE/aux-fixed/0471.rw"
- type=lsearch key="test.example"
+ type=lsearch key="test.example" opts=NULL
cached data used for lookup of test.example
in TESTSUITE/aux-fixed/0471.rw
lookup yielded: rwtest.example
search_open: lsearch "TESTSUITE/aux-fixed/0471.rw"
cached open
search_find: file="TESTSUITE/aux-fixed/0471.rw"
- key="test.example" partial=2 affix=*. starflags=0
+ key="test.example" partial=2 affix=*. starflags=0 opts=NULL
LRU list:
0TESTSUITE/aux-fixed/0471.rw
End
internal_search_find: file="TESTSUITE/aux-fixed/0471.rw"
- type=lsearch key="test.example"
+ type=lsearch key="test.example" opts=NULL
cached data used for lookup of test.example
in TESTSUITE/aux-fixed/0471.rw
lookup yielded: rwtest.example
search_open: lsearch "TESTSUITE/aux-fixed/0471.rw"
cached open
search_find: file="TESTSUITE/aux-fixed/0471.rw"
- key="test.example" partial=2 affix=*. starflags=0
+ key="test.example" partial=2 affix=*. starflags=0 opts=NULL
LRU list:
0TESTSUITE/aux-fixed/0471.rw
End
internal_search_find: file="TESTSUITE/aux-fixed/0471.rw"
- type=lsearch key="test.example"
+ type=lsearch key="test.example" opts=NULL
cached data used for lookup of test.example
in TESTSUITE/aux-fixed/0471.rw
lookup yielded: rwtest.example
search_open: lsearch "TESTSUITE/aux-fixed/0471.rw"
cached open
search_find: file="TESTSUITE/aux-fixed/0471.rw"
- key="test.example" partial=2 affix=*. starflags=0
+ key="test.example" partial=2 affix=*. starflags=0 opts=NULL
LRU list:
0TESTSUITE/aux-fixed/0471.rw
End
internal_search_find: file="TESTSUITE/aux-fixed/0471.rw"
- type=lsearch key="test.example"
+ type=lsearch key="test.example" opts=NULL
cached data used for lookup of test.example
in TESTSUITE/aux-fixed/0471.rw
lookup yielded: rwtest.example
search_open: lsearch "TESTSUITE/aux-fixed/0471.rw"
cached open
search_find: file="TESTSUITE/aux-fixed/0471.rw"
- key="test.example" partial=2 affix=*. starflags=0
+ key="test.example" partial=2 affix=*. starflags=0 opts=NULL
LRU list:
0TESTSUITE/aux-fixed/0471.rw
End
internal_search_find: file="TESTSUITE/aux-fixed/0471.rw"
- type=lsearch key="test.example"
+ type=lsearch key="test.example" opts=NULL
cached data used for lookup of test.example
in TESTSUITE/aux-fixed/0471.rw
lookup yielded: rwtest.example
search_open: lsearch "TESTSUITE/aux-fixed/0471.rw"
cached open
search_find: file="TESTSUITE/aux-fixed/0471.rw"
- key="test.example" partial=2 affix=*. starflags=0
+ key="test.example" partial=2 affix=*. starflags=0 opts=NULL
LRU list:
0TESTSUITE/aux-fixed/0471.rw
End
internal_search_find: file="TESTSUITE/aux-fixed/0471.rw"
- type=lsearch key="test.example"
+ type=lsearch key="test.example" opts=NULL
cached data used for lookup of test.example
in TESTSUITE/aux-fixed/0471.rw
lookup yielded: rwtest.example
search_open: lsearch "TESTSUITE/aux-fixed/0471.rw"
cached open
search_find: file="TESTSUITE/aux-fixed/0471.rw"
- key="test.example" partial=2 affix=*. starflags=0
+ key="test.example" partial=2 affix=*. starflags=0 opts=NULL
LRU list:
0TESTSUITE/aux-fixed/0471.rw
End
internal_search_find: file="TESTSUITE/aux-fixed/0471.rw"
- type=lsearch key="test.example"
+ type=lsearch key="test.example" opts=NULL
cached data used for lookup of test.example
in TESTSUITE/aux-fixed/0471.rw
lookup yielded: rwtest.example
search_open: lsearch "TESTSUITE/aux-fixed/0471.rw"
cached open
search_find: file="TESTSUITE/aux-fixed/0471.rw"
- key="test.example" partial=2 affix=*. starflags=0
+ key="test.example" partial=2 affix=*. starflags=0 opts=NULL
LRU list:
0TESTSUITE/aux-fixed/0471.rw
End
internal_search_find: file="TESTSUITE/aux-fixed/0471.rw"
- type=lsearch key="test.example"
+ type=lsearch key="test.example" opts=NULL
cached data used for lookup of test.example
in TESTSUITE/aux-fixed/0471.rw
lookup yielded: rwtest.example
search_open: lsearch "TESTSUITE/aux-fixed/0471.rw"
cached open
search_find: file="TESTSUITE/aux-fixed/0471.rw"
- key="test.example" partial=2 affix=*. starflags=0
+ key="test.example" partial=2 affix=*. starflags=0 opts=NULL
LRU list:
0TESTSUITE/aux-fixed/0471.rw
End
internal_search_find: file="TESTSUITE/aux-fixed/0471.rw"
- type=lsearch key="test.example"
+ type=lsearch key="test.example" opts=NULL
cached data used for lookup of test.example
in TESTSUITE/aux-fixed/0471.rw
lookup yielded: rwtest.example
search_open: lsearch "TESTSUITE/aux-fixed/0471.rw"
cached open
search_find: file="TESTSUITE/aux-fixed/0471.rw"
- key="test.example" partial=2 affix=*. starflags=0
+ key="test.example" partial=2 affix=*. starflags=0 opts=NULL
LRU list:
0TESTSUITE/aux-fixed/0471.rw
End
internal_search_find: file="TESTSUITE/aux-fixed/0471.rw"
- type=lsearch key="test.example"
+ type=lsearch key="test.example" opts=NULL
cached data used for lookup of test.example
in TESTSUITE/aux-fixed/0471.rw
lookup yielded: rwtest.example
search_open: lsearch "TESTSUITE/aux-fixed/0471.rw"
cached open
search_find: file="TESTSUITE/aux-fixed/0471.rw"
- key="test.example" partial=2 affix=*. starflags=0
+ key="test.example" partial=2 affix=*. starflags=0 opts=NULL
LRU list:
0TESTSUITE/aux-fixed/0471.rw
End
internal_search_find: file="TESTSUITE/aux-fixed/0471.rw"
- type=lsearch key="test.example"
+ type=lsearch key="test.example" opts=NULL
cached data used for lookup of test.example
in TESTSUITE/aux-fixed/0471.rw
lookup yielded: rwtest.example
search_open: lsearch "TESTSUITE/aux-fixed/0471.rw"
cached open
search_find: file="TESTSUITE/aux-fixed/0471.rw"
- key="test.example" partial=2 affix=*. starflags=0
+ key="test.example" partial=2 affix=*. starflags=0 opts=NULL
LRU list:
0TESTSUITE/aux-fixed/0471.rw
End
internal_search_find: file="TESTSUITE/aux-fixed/0471.rw"
- type=lsearch key="test.example"
+ type=lsearch key="test.example" opts=NULL
cached data used for lookup of test.example
in TESTSUITE/aux-fixed/0471.rw
lookup yielded: rwtest.example
search_open: lsearch "TESTSUITE/aux-fixed/0471.rw"
cached open
search_find: file="TESTSUITE/aux-fixed/0471.rw"
- key="test.example" partial=2 affix=*. starflags=0
+ key="test.example" partial=2 affix=*. starflags=0 opts=NULL
LRU list:
0TESTSUITE/aux-fixed/0471.rw
End
internal_search_find: file="TESTSUITE/aux-fixed/0471.rw"
- type=lsearch key="test.example"
+ type=lsearch key="test.example" opts=NULL
cached data used for lookup of test.example
in TESTSUITE/aux-fixed/0471.rw
lookup yielded: rwtest.example
search_open: lsearch "TESTSUITE/aux-fixed/0471.rw"
cached open
search_find: file="TESTSUITE/aux-fixed/0471.rw"
- key="test.example" partial=2 affix=*. starflags=0
+ key="test.example" partial=2 affix=*. starflags=0 opts=NULL
LRU list:
0TESTSUITE/aux-fixed/0471.rw
End
internal_search_find: file="TESTSUITE/aux-fixed/0471.rw"
- type=lsearch key="test.example"
+ type=lsearch key="test.example" opts=NULL
cached data used for lookup of test.example
in TESTSUITE/aux-fixed/0471.rw
lookup yielded: rwtest.example
search_open: lsearch "TESTSUITE/aux-fixed/0471.rw"
cached open
search_find: file="TESTSUITE/aux-fixed/0471.rw"
- key="test.example" partial=2 affix=*. starflags=0
+ key="test.example" partial=2 affix=*. starflags=0 opts=NULL
LRU list:
0TESTSUITE/aux-fixed/0471.rw
End
internal_search_find: file="TESTSUITE/aux-fixed/0471.rw"
- type=lsearch key="test.example"
+ type=lsearch key="test.example" opts=NULL
cached data used for lookup of test.example
in TESTSUITE/aux-fixed/0471.rw
lookup yielded: rwtest.example
search_open: lsearch "TESTSUITE/aux-fixed/0471.rw"
cached open
search_find: file="TESTSUITE/aux-fixed/0471.rw"
- key="test.example" partial=2 affix=*. starflags=0
+ key="test.example" partial=2 affix=*. starflags=0 opts=NULL
LRU list:
0TESTSUITE/aux-fixed/0471.rw
End
internal_search_find: file="TESTSUITE/aux-fixed/0471.rw"
- type=lsearch key="test.example"
+ type=lsearch key="test.example" opts=NULL
cached data used for lookup of test.example
in TESTSUITE/aux-fixed/0471.rw
lookup yielded: rwtest.example
search_open: lsearch "TESTSUITE/aux-fixed/0471.rw"
cached open
search_find: file="TESTSUITE/aux-fixed/0471.rw"
- key="test.example" partial=2 affix=*. starflags=0
+ key="test.example" partial=2 affix=*. starflags=0 opts=NULL
LRU list:
0TESTSUITE/aux-fixed/0471.rw
End
internal_search_find: file="TESTSUITE/aux-fixed/0471.rw"
- type=lsearch key="test.example"
+ type=lsearch key="test.example" opts=NULL
cached data used for lookup of test.example
in TESTSUITE/aux-fixed/0471.rw
lookup yielded: rwtest.example
search_open: lsearch "TESTSUITE/aux-fixed/0471.rw"
cached open
search_find: file="TESTSUITE/aux-fixed/0471.rw"
- key="test.example" partial=2 affix=*. starflags=0
+ key="test.example" partial=2 affix=*. starflags=0 opts=NULL
LRU list:
0TESTSUITE/aux-fixed/0471.rw
End
internal_search_find: file="TESTSUITE/aux-fixed/0471.rw"
- type=lsearch key="test.example"
+ type=lsearch key="test.example" opts=NULL
cached data used for lookup of test.example
in TESTSUITE/aux-fixed/0471.rw
lookup yielded: rwtest.example
search_open: lsearch "TESTSUITE/aux-fixed/0471.rw"
cached open
search_find: file="TESTSUITE/aux-fixed/0471.rw"
- key="test.example" partial=2 affix=*. starflags=0
+ key="test.example" partial=2 affix=*. starflags=0 opts=NULL
LRU list:
0TESTSUITE/aux-fixed/0471.rw
End
internal_search_find: file="TESTSUITE/aux-fixed/0471.rw"
- type=lsearch key="test.example"
+ type=lsearch key="test.example" opts=NULL
cached data used for lookup of test.example
in TESTSUITE/aux-fixed/0471.rw
lookup yielded: rwtest.example
search_open: lsearch "TESTSUITE/aux-fixed/0471.rw"
cached open
search_find: file="TESTSUITE/aux-fixed/0471.rw"
- key="test.example" partial=2 affix=*. starflags=0
+ key="test.example" partial=2 affix=*. starflags=0 opts=NULL
LRU list:
0TESTSUITE/aux-fixed/0471.rw
End
internal_search_find: file="TESTSUITE/aux-fixed/0471.rw"
- type=lsearch key="test.example"
+ type=lsearch key="test.example" opts=NULL
cached data used for lookup of test.example
in TESTSUITE/aux-fixed/0471.rw
lookup yielded: rwtest.example
search_open: lsearch "TESTSUITE/aux-fixed/0471.rw"
cached open
search_find: file="TESTSUITE/aux-fixed/0471.rw"
- key="test.example" partial=2 affix=*. starflags=0
+ key="test.example" partial=2 affix=*. starflags=0 opts=NULL
LRU list:
0TESTSUITE/aux-fixed/0471.rw
End
internal_search_find: file="TESTSUITE/aux-fixed/0471.rw"
- type=lsearch key="test.example"
+ type=lsearch key="test.example" opts=NULL
cached data used for lookup of test.example
in TESTSUITE/aux-fixed/0471.rw
lookup yielded: rwtest.example
search_open: lsearch "TESTSUITE/aux-fixed/0471.rw"
cached open
search_find: file="TESTSUITE/aux-fixed/0471.rw"
- key="test.example" partial=2 affix=*. starflags=0
+ key="test.example" partial=2 affix=*. starflags=0 opts=NULL
LRU list:
0TESTSUITE/aux-fixed/0471.rw
End
internal_search_find: file="TESTSUITE/aux-fixed/0471.rw"
- type=lsearch key="test.example"
+ type=lsearch key="test.example" opts=NULL
cached data used for lookup of test.example
in TESTSUITE/aux-fixed/0471.rw
lookup yielded: rwtest.example
search_open: lsearch "TESTSUITE/aux-fixed/0471.rw"
cached open
search_find: file="TESTSUITE/aux-fixed/0471.rw"
- key="test.example" partial=2 affix=*. starflags=0
+ key="test.example" partial=2 affix=*. starflags=0 opts=NULL
LRU list:
0TESTSUITE/aux-fixed/0471.rw
End
internal_search_find: file="TESTSUITE/aux-fixed/0471.rw"
- type=lsearch key="test.example"
+ type=lsearch key="test.example" opts=NULL
cached data used for lookup of test.example
in TESTSUITE/aux-fixed/0471.rw
lookup yielded: rwtest.example
search_open: lsearch "TESTSUITE/aux-fixed/0471.rw"
cached open
search_find: file="TESTSUITE/aux-fixed/0471.rw"
- key="test.example" partial=2 affix=*. starflags=0
+ key="test.example" partial=2 affix=*. starflags=0 opts=NULL
LRU list:
0TESTSUITE/aux-fixed/0471.rw
End
internal_search_find: file="TESTSUITE/aux-fixed/0471.rw"
- type=lsearch key="test.example"
+ type=lsearch key="test.example" opts=NULL
cached data used for lookup of test.example
in TESTSUITE/aux-fixed/0471.rw
lookup yielded: rwtest.example
search_open: lsearch "TESTSUITE/aux-fixed/0471.rw"
cached open
search_find: file="TESTSUITE/aux-fixed/0471.rw"
- key="test.example" partial=2 affix=*. starflags=0
+ key="test.example" partial=2 affix=*. starflags=0 opts=NULL
LRU list:
0TESTSUITE/aux-fixed/0471.rw
End
internal_search_find: file="TESTSUITE/aux-fixed/0471.rw"
- type=lsearch key="test.example"
+ type=lsearch key="test.example" opts=NULL
cached data used for lookup of test.example
in TESTSUITE/aux-fixed/0471.rw
lookup yielded: rwtest.example
search_open: lsearch "TESTSUITE/aux-fixed/0471.rw"
cached open
search_find: file="TESTSUITE/aux-fixed/0471.rw"
- key="test.example" partial=2 affix=*. starflags=0
+ key="test.example" partial=2 affix=*. starflags=0 opts=NULL
LRU list:
0TESTSUITE/aux-fixed/0471.rw
End
internal_search_find: file="TESTSUITE/aux-fixed/0471.rw"
- type=lsearch key="test.example"
+ type=lsearch key="test.example" opts=NULL
cached data used for lookup of test.example
in TESTSUITE/aux-fixed/0471.rw
lookup yielded: rwtest.example
search_open: lsearch "TESTSUITE/aux-fixed/0471.rw"
cached open
search_find: file="TESTSUITE/aux-fixed/0471.rw"
- key="test.example" partial=2 affix=*. starflags=0
+ key="test.example" partial=2 affix=*. starflags=0 opts=NULL
LRU list:
0TESTSUITE/aux-fixed/0471.rw
End
internal_search_find: file="TESTSUITE/aux-fixed/0471.rw"
- type=lsearch key="test.example"
+ type=lsearch key="test.example" opts=NULL
cached data used for lookup of test.example
in TESTSUITE/aux-fixed/0471.rw
lookup yielded: rwtest.example
search_open: lsearch "TESTSUITE/aux-fixed/0471.rw"
cached open
search_find: file="TESTSUITE/aux-fixed/0471.rw"
- key="test.example" partial=2 affix=*. starflags=0
+ key="test.example" partial=2 affix=*. starflags=0 opts=NULL
LRU list:
0TESTSUITE/aux-fixed/0471.rw
End
internal_search_find: file="TESTSUITE/aux-fixed/0471.rw"
- type=lsearch key="test.example"
+ type=lsearch key="test.example" opts=NULL
cached data used for lookup of test.example
in TESTSUITE/aux-fixed/0471.rw
lookup yielded: rwtest.example
search_open: lsearch "TESTSUITE/aux-fixed/0471.rw"
cached open
search_find: file="TESTSUITE/aux-fixed/0471.rw"
- key="test.example" partial=2 affix=*. starflags=0
+ key="test.example" partial=2 affix=*. starflags=0 opts=NULL
LRU list:
0TESTSUITE/aux-fixed/0471.rw
End
internal_search_find: file="TESTSUITE/aux-fixed/0471.rw"
- type=lsearch key="test.example"
+ type=lsearch key="test.example" opts=NULL
cached data used for lookup of test.example
in TESTSUITE/aux-fixed/0471.rw
lookup yielded: rwtest.example
search_open: lsearch "TESTSUITE/aux-fixed/0471.rw"
cached open
search_find: file="TESTSUITE/aux-fixed/0471.rw"
- key="test.example" partial=2 affix=*. starflags=0
+ key="test.example" partial=2 affix=*. starflags=0 opts=NULL
LRU list:
0TESTSUITE/aux-fixed/0471.rw
End
internal_search_find: file="TESTSUITE/aux-fixed/0471.rw"
- type=lsearch key="test.example"
+ type=lsearch key="test.example" opts=NULL
cached data used for lookup of test.example
in TESTSUITE/aux-fixed/0471.rw
lookup yielded: rwtest.example
search_open: lsearch "TESTSUITE/aux-fixed/0471.rw"
cached open
search_find: file="TESTSUITE/aux-fixed/0471.rw"
- key="test.example" partial=2 affix=*. starflags=0
+ key="test.example" partial=2 affix=*. starflags=0 opts=NULL
LRU list:
0TESTSUITE/aux-fixed/0471.rw
End
internal_search_find: file="TESTSUITE/aux-fixed/0471.rw"
- type=lsearch key="test.example"
+ type=lsearch key="test.example" opts=NULL
cached data used for lookup of test.example
in TESTSUITE/aux-fixed/0471.rw
lookup yielded: rwtest.example
search_open: lsearch "TESTSUITE/aux-fixed/0471.rw"
cached open
search_find: file="TESTSUITE/aux-fixed/0471.rw"
- key="myhost.test.ex" partial=2 affix=*. starflags=0
+ key="myhost.test.ex" partial=2 affix=*. starflags=0 opts=NULL
LRU list:
0TESTSUITE/aux-fixed/0471.rw
End
internal_search_find: file="TESTSUITE/aux-fixed/0471.rw"
- type=lsearch key="myhost.test.ex"
+ type=lsearch key="myhost.test.ex" opts=NULL
cached data used for lookup of myhost.test.ex
in TESTSUITE/aux-fixed/0471.rw
lookup failed
trying partial match *.myhost.test.ex
internal_search_find: file="TESTSUITE/aux-fixed/0471.rw"
- type=lsearch key="*.myhost.test.ex"
+ type=lsearch key="*.myhost.test.ex" opts=NULL
cached data used for lookup of *.myhost.test.ex
in TESTSUITE/aux-fixed/0471.rw
lookup failed
trying partial match *.test.ex
internal_search_find: file="TESTSUITE/aux-fixed/0471.rw"
- type=lsearch key="*.test.ex"
+ type=lsearch key="*.test.ex" opts=NULL
cached data used for lookup of *.test.ex
in TESTSUITE/aux-fixed/0471.rw
lookup failed
sender address = CALLER@myhost.test.ex
search_open: lsearch "TESTSUITE/aux-fixed/0484.aliases"
search_find: file="TESTSUITE/aux-fixed/0484.aliases"
- key="list" partial=-1 affix=NULL starflags=0
+ key="list" partial=-1 affix=NULL starflags=0 opts=NULL
LRU list:
0TESTSUITE/aux-fixed/0484.aliases
End
internal_search_find: file="TESTSUITE/aux-fixed/0484.aliases"
- type=lsearch key="list"
+ type=lsearch key="list" opts=NULL
file lookup required for list
in TESTSUITE/aux-fixed/0484.aliases
lookup yielded: userx, usery
search_open: lsearch "TESTSUITE/aux-fixed/0484.aliases"
cached open
search_find: file="TESTSUITE/aux-fixed/0484.aliases"
- key="list" partial=-1 affix=NULL starflags=0
+ key="list" partial=-1 affix=NULL starflags=0 opts=NULL
LRU list:
0TESTSUITE/aux-fixed/0484.aliases
End
internal_search_find: file="TESTSUITE/aux-fixed/0484.aliases"
- type=lsearch key="list"
+ type=lsearch key="list" opts=NULL
cached data used for lookup of list
in TESTSUITE/aux-fixed/0484.aliases
lookup yielded: userx, usery
search_open: lsearch "TESTSUITE/aux-fixed/0484.aliases"
cached open
search_find: file="TESTSUITE/aux-fixed/0484.aliases"
- key="root" partial=-1 affix=NULL starflags=0
+ key="root" partial=-1 affix=NULL starflags=0 opts=NULL
LRU list:
0TESTSUITE/aux-fixed/0484.aliases
End
internal_search_find: file="TESTSUITE/aux-fixed/0484.aliases"
- type=lsearch key="root"
+ type=lsearch key="root" opts=NULL
file lookup required for root
in TESTSUITE/aux-fixed/0484.aliases
lookup yielded: userx
search_open: lsearch "TESTSUITE/aux-fixed/0484.aliases"
cached open
search_find: file="TESTSUITE/aux-fixed/0484.aliases"
- key="root" partial=-1 affix=NULL starflags=0
+ key="root" partial=-1 affix=NULL starflags=0 opts=NULL
LRU list:
0TESTSUITE/aux-fixed/0484.aliases
End
internal_search_find: file="TESTSUITE/aux-fixed/0484.aliases"
- type=lsearch key="root"
+ type=lsearch key="root" opts=NULL
cached data used for lookup of root
in TESTSUITE/aux-fixed/0484.aliases
lookup yielded: userx
search_open: lsearch "TESTSUITE/aux-fixed/0484.aliases"
cached open
search_find: file="TESTSUITE/aux-fixed/0484.aliases"
- key="list" partial=-1 affix=NULL starflags=0
+ key="list" partial=-1 affix=NULL starflags=0 opts=NULL
LRU list:
0TESTSUITE/aux-fixed/0484.aliases
End
internal_search_find: file="TESTSUITE/aux-fixed/0484.aliases"
- type=lsearch key="list"
+ type=lsearch key="list" opts=NULL
cached data used for lookup of list
in TESTSUITE/aux-fixed/0484.aliases
lookup yielded: userx, usery
search_open: lsearch "TESTSUITE/aux-fixed/0484.aliases2"
search_find: file="TESTSUITE/aux-fixed/0484.aliases2"
- key="list" partial=-1 affix=NULL starflags=0
+ key="list" partial=-1 affix=NULL starflags=0 opts=NULL
LRU list:
0TESTSUITE/aux-fixed/0484.aliases2
0TESTSUITE/aux-fixed/0484.aliases
End
internal_search_find: file="TESTSUITE/aux-fixed/0484.aliases2"
- type=lsearch key="list"
+ type=lsearch key="list" opts=NULL
file lookup required for list
in TESTSUITE/aux-fixed/0484.aliases2
lookup yielded: userx2, usery2
search_open: lsearch "TESTSUITE/aux-fixed/0484.aliases2"
cached open
search_find: file="TESTSUITE/aux-fixed/0484.aliases2"
- key="root" partial=-1 affix=NULL starflags=0
+ key="root" partial=-1 affix=NULL starflags=0 opts=NULL
LRU list:
0TESTSUITE/aux-fixed/0484.aliases2
0TESTSUITE/aux-fixed/0484.aliases
End
internal_search_find: file="TESTSUITE/aux-fixed/0484.aliases2"
- type=lsearch key="root"
+ type=lsearch key="root" opts=NULL
file lookup required for root
in TESTSUITE/aux-fixed/0484.aliases2
lookup failed
search_open: lsearch "TESTSUITE/aux-fixed/0484.aliases2"
cached open
search_find: file="TESTSUITE/aux-fixed/0484.aliases2"
- key="list" partial=-1 affix=NULL starflags=0
+ key="list" partial=-1 affix=NULL starflags=0 opts=NULL
LRU list:
0TESTSUITE/aux-fixed/0484.aliases2
0TESTSUITE/aux-fixed/0484.aliases
End
internal_search_find: file="TESTSUITE/aux-fixed/0484.aliases2"
- type=lsearch key="list"
+ type=lsearch key="list" opts=NULL
cached data used for lookup of list
in TESTSUITE/aux-fixed/0484.aliases2
lookup yielded: userx2, usery2
search_open: lsearch "TESTSUITE/aux-fixed/0484.aliases"
cached open
search_find: file="TESTSUITE/aux-fixed/0484.aliases"
- key="list" partial=-1 affix=NULL starflags=0
+ key="list" partial=-1 affix=NULL starflags=0 opts=NULL
LRU list:
0TESTSUITE/aux-fixed/0484.aliases
0TESTSUITE/aux-fixed/0484.aliases2
End
internal_search_find: file="TESTSUITE/aux-fixed/0484.aliases"
- type=lsearch key="list"
+ type=lsearch key="list" opts=NULL
cached data used for lookup of list
in TESTSUITE/aux-fixed/0484.aliases
lookup yielded: userx, usery
search_open: lsearch "TESTSUITE/aux-fixed/0484.aliases"
cached open
search_find: file="TESTSUITE/aux-fixed/0484.aliases"
- key="root" partial=-1 affix=NULL starflags=0
+ key="root" partial=-1 affix=NULL starflags=0 opts=NULL
LRU list:
0TESTSUITE/aux-fixed/0484.aliases
0TESTSUITE/aux-fixed/0484.aliases2
End
internal_search_find: file="TESTSUITE/aux-fixed/0484.aliases"
- type=lsearch key="root"
+ type=lsearch key="root" opts=NULL
cached data used for lookup of root
in TESTSUITE/aux-fixed/0484.aliases
lookup yielded: userx
2017-07-30 18:51:05.712 End queue run: pid=pppp -qq
81 messages in
daemon did make at least one delivery
-81 messages received by dest
+80 messages received by dest
******** SERVER ********
dropping to exim gid; retaining priv uid
search_open: dnsdb "NULL"
search_find: file="NULL"
- key="a=localhost.test.ex" partial=-1 affix=NULL starflags=0
+ key="a=localhost.test.ex" partial=-1 affix=NULL starflags=0 opts=NULL
LRU list:
internal_search_find: file="NULL"
- type=dnsdb key="a=localhost.test.ex"
+ type=dnsdb key="a=localhost.test.ex" opts=NULL
database lookup required for a=localhost.test.ex
dnsdb key: localhost.test.ex
lookup yielded: 127.0.0.1
search_open: dnsdb "NULL"
cached open
search_find: file="NULL"
- key="a=localhost.test.ex" partial=-1 affix=NULL starflags=0
+ key="a=localhost.test.ex" partial=-1 affix=NULL starflags=0 opts=NULL
LRU list:
internal_search_find: file="NULL"
- type=dnsdb key="a=localhost.test.ex"
+ type=dnsdb key="a=localhost.test.ex" opts=NULL
cached data used for lookup of a=localhost.test.ex
lookup yielded: 127.0.0.1
search_tidyup called
search_tidyup called
search_open: dnsdb "NULL"
search_find: file="NULL"
- key="a=shorthost.test.ex" partial=-1 affix=NULL starflags=0
+ key="a=shorthost.test.ex" partial=-1 affix=NULL starflags=0 opts=NULL
LRU list:
internal_search_find: file="NULL"
- type=dnsdb key="a=shorthost.test.ex"
+ type=dnsdb key="a=shorthost.test.ex" opts=NULL
database lookup required for a=shorthost.test.ex
dnsdb key: shorthost.test.ex
lookup yielded: 127.0.0.1
search_open: dnsdb "NULL"
cached open
search_find: file="NULL"
- key="a=shorthost.test.ex" partial=-1 affix=NULL starflags=0
+ key="a=shorthost.test.ex" partial=-1 affix=NULL starflags=0 opts=NULL
LRU list:
internal_search_find: file="NULL"
- type=dnsdb key="a=shorthost.test.ex"
+ type=dnsdb key="a=shorthost.test.ex" opts=NULL
cached data found but past valid time; database lookup required for a=shorthost.test.ex
dnsdb key: shorthost.test.ex
lookup yielded: 127.0.0.1
checking domains
search_open: dnsdb "NULL"
search_find: file="NULL"
- key="test.ex" partial=-1 affix=NULL starflags=0
+ key="test.ex" partial=-1 affix=NULL starflags=0 opts=NULL
LRU list:
internal_search_find: file="NULL"
- type=dnsdb key="test.ex"
+ type=dnsdb key="test.ex" opts=NULL
database lookup required for test.ex
dnsdb key: test.ex
DNS lookup of test.ex (TXT) using fakens
search_open: dnsdb "NULL"
cached open
search_find: file="NULL"
- key="test.ex" partial=-1 affix=NULL starflags=0
+ key="test.ex" partial=-1 affix=NULL starflags=0 opts=NULL
LRU list:
internal_search_find: file="NULL"
- type=dnsdb key="test.ex"
+ type=dnsdb key="test.ex" opts=NULL
cached data used for lookup of test.ex
lookup yielded: A TXT record for test.ex.
test.ex in "dnsdb;test.ex"? yes (matched "dnsdb;test.ex")
search_open: dnsdb "NULL"
cached open
search_find: file="NULL"
- key="test.ex" partial=-1 affix=NULL starflags=0
+ key="test.ex" partial=-1 affix=NULL starflags=0 opts=NULL
LRU list:
internal_search_find: file="NULL"
- type=dnsdb key="test.ex"
+ type=dnsdb key="test.ex" opts=NULL
cached data used for lookup of test.ex
lookup yielded: A TXT record for test.ex.
test.ex in "dnsdb;test.ex"? yes (matched "dnsdb;test.ex")
search_open: dnsdb "NULL"
cached open
search_find: file="NULL"
- key="unknown" partial=-1 affix=NULL starflags=0
+ key="unknown" partial=-1 affix=NULL starflags=0 opts=NULL
LRU list:
internal_search_find: file="NULL"
- type=dnsdb key="unknown"
+ type=dnsdb key="unknown" opts=NULL
database lookup required for unknown
dnsdb key: unknown
DNS lookup of unknown (TXT) using fakens
search_open: dnsdb "NULL"
cached open
search_find: file="NULL"
- key="test.ex" partial=-1 affix=NULL starflags=0
+ key="test.ex" partial=-1 affix=NULL starflags=0 opts=NULL
LRU list:
internal_search_find: file="NULL"
- type=dnsdb key="test.ex"
+ type=dnsdb key="test.ex" opts=NULL
cached data used for lookup of test.ex
lookup yielded: A TXT record for test.ex.
test.ex in "dnsdb;test.ex"? yes (matched "dnsdb;test.ex")
search_open: dnsdb "NULL"
cached open
search_find: file="NULL"
- key="A=myhost.test.ex" partial=-1 affix=NULL starflags=0
+ key="A=myhost.test.ex" partial=-1 affix=NULL starflags=0 opts=NULL
LRU list:
internal_search_find: file="NULL"
- type=dnsdb key="A=myhost.test.ex"
+ type=dnsdb key="A=myhost.test.ex" opts=NULL
database lookup required for A=myhost.test.ex
dnsdb key: myhost.test.ex
DNS lookup of myhost.test.ex (A) using fakens
search_tidyup called
search_open: dnsdb "NULL"
search_find: file="NULL"
- key="a=shorthost.test.ex" partial=-1 affix=NULL starflags=0
+ key="a=shorthost.test.ex" partial=-1 affix=NULL starflags=0 opts=NULL
LRU list:
internal_search_find: file="NULL"
- type=dnsdb key="a=shorthost.test.ex"
+ type=dnsdb key="a=shorthost.test.ex" opts=NULL
database lookup required for a=shorthost.test.ex
dnsdb key: shorthost.test.ex
lookup yielded: 127.0.0.1
search_open: dnsdb "NULL"
cached open
search_find: file="NULL"
- key="a=shorthost.test.ex" partial=-1 affix=NULL starflags=0
+ key="a=shorthost.test.ex" partial=-1 affix=NULL starflags=0 opts=NULL
LRU list:
internal_search_find: file="NULL"
- type=dnsdb key="a=shorthost.test.ex"
+ type=dnsdb key="a=shorthost.test.ex" opts=NULL
cached data used for lookup of a=shorthost.test.ex
lookup yielded: 127.0.0.1
search_open: dnsdb "NULL"
cached open
search_find: file="NULL"
- key="a=shorthost.test.ex" partial=-1 affix=NULL starflags=0
+ key="a=shorthost.test.ex" partial=-1 affix=NULL starflags=0 opts=NULL
LRU list:
internal_search_find: file="NULL"
- type=dnsdb key="a=shorthost.test.ex"
+ type=dnsdb key="a=shorthost.test.ex" opts=NULL
cached data found but past valid time; database lookup required for a=shorthost.test.ex
dnsdb key: shorthost.test.ex
lookup yielded: 127.0.0.1
check hosts = +ignore_unknown : *.$sender_address_domain : $sender_address_domain : ${lookup dnsdb{>:defer_never,mxh=$sender_address_domain}}
search_open: dnsdb "NULL"
search_find: file="NULL"
- key=">:defer_never,mxh=cioce.test.again.dns" partial=-1 affix=NULL starflags=0
+ key=">:defer_never,mxh=cioce.test.again.dns" partial=-1 affix=NULL starflags=0 opts=NULL
LRU list:
internal_search_find: file="NULL"
- type=dnsdb key=">:defer_never,mxh=cioce.test.again.dns"
+ type=dnsdb key=">:defer_never,mxh=cioce.test.again.dns" opts=NULL
database lookup required for >:defer_never,mxh=cioce.test.again.dns
dnsdb key: cioce.test.again.dns
DNS lookup of cioce.test.again.dns (MX) using fakens
dropping to exim gid; retaining priv uid
search_open: sqlite "TESTSUITE/aux-fixed/sqlitedb"
search_find: file="TESTSUITE/aux-fixed/sqlitedb"
- key="select name from them where id='userx';" partial=-1 affix=NULL starflags=0
+ key="select name from them where id='userx';" partial=-1 affix=NULL starflags=0 opts=NULL
LRU list:
internal_search_find: file="TESTSUITE/aux-fixed/sqlitedb"
- type=sqlite key="select name from them where id='userx';"
+ type=sqlite key="select name from them where id='userx';" opts=NULL
file lookup required for select name from them where id='userx';
in TESTSUITE/aux-fixed/sqlitedb
lookup yielded: Ayen Other
search_open: sqlite "TESTSUITE/aux-fixed/sqlitedb"
cached open
search_find: file="TESTSUITE/aux-fixed/sqlitedb"
- key="select name from them where id='userx';" partial=-1 affix=NULL starflags=0
+ key="select name from them where id='userx';" partial=-1 affix=NULL starflags=0 opts=NULL
LRU list:
internal_search_find: file="TESTSUITE/aux-fixed/sqlitedb"
- type=sqlite key="select name from them where id='userx';"
+ type=sqlite key="select name from them where id='userx';" opts=NULL
cached data used for lookup of select name from them where id='userx';
in TESTSUITE/aux-fixed/sqlitedb
lookup yielded: Ayen Other
search_open: sqlite "TESTSUITE/aux-fixed/sqlitedb"
cached open
search_find: file="TESTSUITE/aux-fixed/sqlitedb"
- key="select name from them where id='xxxx';" partial=-1 affix=NULL starflags=0
+ key="select name from them where id='xxxx';" partial=-1 affix=NULL starflags=0 opts=NULL
LRU list:
internal_search_find: file="TESTSUITE/aux-fixed/sqlitedb"
- type=sqlite key="select name from them where id='xxxx';"
+ type=sqlite key="select name from them where id='xxxx';" opts=NULL
file lookup required for select name from them where id='xxxx';
in TESTSUITE/aux-fixed/sqlitedb
lookup forced cache cleanup
search_open: sqlite "TESTSUITE/aux-fixed/sqlitedb"
cached open
search_find: file="TESTSUITE/aux-fixed/sqlitedb"
- key="select name from them where id='nothing';" partial=-1 affix=NULL starflags=0
+ key="select name from them where id='nothing';" partial=-1 affix=NULL starflags=0 opts=NULL
LRU list:
internal_search_find: file="TESTSUITE/aux-fixed/sqlitedb"
- type=sqlite key="select name from them where id='nothing';"
+ type=sqlite key="select name from them where id='nothing';" opts=NULL
file lookup required for select name from them where id='nothing';
in TESTSUITE/aux-fixed/sqlitedb
lookup yielded:
search_open: sqlite "TESTSUITE/aux-fixed/sqlitedb"
cached open
search_find: file="TESTSUITE/aux-fixed/sqlitedb"
- key="select id,name from them where id='nothing';" partial=-1 affix=NULL starflags=0
+ key="select id,name from them where id='nothing';" partial=-1 affix=NULL starflags=0 opts=NULL
LRU list:
internal_search_find: file="TESTSUITE/aux-fixed/sqlitedb"
- type=sqlite key="select id,name from them where id='nothing';"
+ type=sqlite key="select id,name from them where id='nothing';" opts=NULL
file lookup required for select id,name from them where id='nothing';
in TESTSUITE/aux-fixed/sqlitedb
lookup yielded: id=nothing name=""
search_open: sqlite "TESTSUITE/aux-fixed/sqlitedb"
cached open
search_find: file="TESTSUITE/aux-fixed/sqlitedb"
- key="select * from them where id='quote2';" partial=-1 affix=NULL starflags=0
+ key="select * from them where id='quote2';" partial=-1 affix=NULL starflags=0 opts=NULL
LRU list:
internal_search_find: file="TESTSUITE/aux-fixed/sqlitedb"
- type=sqlite key="select * from them where id='quote2';"
+ type=sqlite key="select * from them where id='quote2';" opts=NULL
file lookup required for select * from them where id='quote2';
in TESTSUITE/aux-fixed/sqlitedb
lookup yielded: name="\"stquot" id=quote2
search_open: sqlite "TESTSUITE/aux-fixed/sqlitedb"
cached open
search_find: file="TESTSUITE/aux-fixed/sqlitedb"
- key="select * from them where id='newline';" partial=-1 affix=NULL starflags=0
+ key="select * from them where id='newline';" partial=-1 affix=NULL starflags=0 opts=NULL
LRU list:
internal_search_find: file="TESTSUITE/aux-fixed/sqlitedb"
- type=sqlite key="select * from them where id='newline';"
+ type=sqlite key="select * from them where id='newline';" opts=NULL
file lookup required for select * from them where id='newline';
in TESTSUITE/aux-fixed/sqlitedb
lookup yielded: name="before
search_open: sqlite "TESTSUITE/aux-fixed/sqlitedb"
cached open
search_find: file="TESTSUITE/aux-fixed/sqlitedb"
- key="select * from them where id='tab';" partial=-1 affix=NULL starflags=0
+ key="select * from them where id='tab';" partial=-1 affix=NULL starflags=0 opts=NULL
LRU list:
internal_search_find: file="TESTSUITE/aux-fixed/sqlitedb"
- type=sqlite key="select * from them where id='tab';"
+ type=sqlite key="select * from them where id='tab';" opts=NULL
file lookup required for select * from them where id='tab';
in TESTSUITE/aux-fixed/sqlitedb
lookup yielded: name="x x" id=tab
search_open: sqlite "TESTSUITE/aux-fixed/sqlitedb"
cached open
search_find: file="TESTSUITE/aux-fixed/sqlitedb"
- key="select * from them where id='its';" partial=-1 affix=NULL starflags=0
+ key="select * from them where id='its';" partial=-1 affix=NULL starflags=0 opts=NULL
LRU list:
internal_search_find: file="TESTSUITE/aux-fixed/sqlitedb"
- type=sqlite key="select * from them where id='its';"
+ type=sqlite key="select * from them where id='its';" opts=NULL
file lookup required for select * from them where id='its';
in TESTSUITE/aux-fixed/sqlitedb
lookup yielded: name=it's id=its
search_open: sqlite "TESTSUITE/aux-fixed/sqlitedb"
cached open
search_find: file="TESTSUITE/aux-fixed/sqlitedb"
- key="select * from them where name='it''s';" partial=-1 affix=NULL starflags=0
+ key="select * from them where name='it''s';" partial=-1 affix=NULL starflags=0 opts=NULL
LRU list:
internal_search_find: file="TESTSUITE/aux-fixed/sqlitedb"
- type=sqlite key="select * from them where name='it''s';"
+ type=sqlite key="select * from them where name='it''s';" opts=NULL
file lookup required for select * from them where name='it''s';
in TESTSUITE/aux-fixed/sqlitedb
lookup yielded: name=it's id=its
check hosts = +relay_hosts
search_open: sqlite "TESTSUITE/aux-fixed/sqlitedb"
search_find: file="TESTSUITE/aux-fixed/sqlitedb"
- key="select * from them where id='10.0.0.0'" partial=-1 affix=NULL starflags=0
+ key="select * from them where id='10.0.0.0'" partial=-1 affix=NULL starflags=0 opts=NULL
LRU list:
internal_search_find: file="TESTSUITE/aux-fixed/sqlitedb"
- type=sqlite key="select * from them where id='10.0.0.0'"
+ type=sqlite key="select * from them where id='10.0.0.0'" opts=NULL
file lookup required for select * from them where id='10.0.0.0'
in TESTSUITE/aux-fixed/sqlitedb
lookup forced cache cleanup
search_open: sqlite "TESTSUITE/aux-fixed/sqlitedb"
cached open
search_find: file="TESTSUITE/aux-fixed/sqlitedb"
- key="select * from them where id='10.0.0.0'" partial=-1 affix=NULL starflags=0
+ key="select * from them where id='10.0.0.0'" partial=-1 affix=NULL starflags=0 opts=NULL
LRU list:
internal_search_find: file="TESTSUITE/aux-fixed/sqlitedb"
- type=sqlite key="select * from them where id='10.0.0.0'"
+ type=sqlite key="select * from them where id='10.0.0.0'" opts=NULL
file lookup required for select * from them where id='10.0.0.0'
in TESTSUITE/aux-fixed/sqlitedb
lookup forced cache cleanup
check hosts = +relay_hosts
search_open: sqlite "TESTSUITE/aux-fixed/sqlitedb"
search_find: file="TESTSUITE/aux-fixed/sqlitedb"
- key="select * from them where id='10.10.10.10'" partial=-1 affix=NULL starflags=0
+ key="select * from them where id='10.10.10.10'" partial=-1 affix=NULL starflags=0 opts=NULL
LRU list:
internal_search_find: file="TESTSUITE/aux-fixed/sqlitedb"
- type=sqlite key="select * from them where id='10.10.10.10'"
+ type=sqlite key="select * from them where id='10.10.10.10'" opts=NULL
file lookup required for select * from them where id='10.10.10.10'
in TESTSUITE/aux-fixed/sqlitedb
lookup yielded: name=ok id=10.10.10.10
search_open: sqlite "TESTSUITE/aux-fixed/sqlitedb"
cached open
search_find: file="TESTSUITE/aux-fixed/sqlitedb"
- key="select * from them where id='10.10.10.10'" partial=-1 affix=NULL starflags=0
+ key="select * from them where id='10.10.10.10'" partial=-1 affix=NULL starflags=0 opts=NULL
LRU list:
internal_search_find: file="TESTSUITE/aux-fixed/sqlitedb"
- type=sqlite key="select * from them where id='10.10.10.10'"
+ type=sqlite key="select * from them where id='10.10.10.10'" opts=NULL
cached data used for lookup of select * from them where id='10.10.10.10'
in TESTSUITE/aux-fixed/sqlitedb
lookup yielded: name=ok id=10.10.10.10
processing address_data
search_open: sqlite "TESTSUITE/aux-fixed/sqlitedb"
search_find: file="TESTSUITE/aux-fixed/sqlitedb"
- key="select name from them where id='userx'" partial=-1 affix=NULL starflags=0
+ key="select name from them where id='userx'" partial=-1 affix=NULL starflags=0 opts=NULL
LRU list:
internal_search_find: file="TESTSUITE/aux-fixed/sqlitedb"
- type=sqlite key="select name from them where id='userx'"
+ type=sqlite key="select name from them where id='userx'" opts=NULL
file lookup required for select name from them where id='userx'
in TESTSUITE/aux-fixed/sqlitedb
lookup yielded: Ayen Other
appendfile transport entered
search_open: sqlite "TESTSUITE/aux-fixed/sqlitedb"
search_find: file="TESTSUITE/aux-fixed/sqlitedb"
- key="select id from them where id='userx'" partial=-1 affix=NULL starflags=0
+ key="select id from them where id='userx'" partial=-1 affix=NULL starflags=0 opts=NULL
LRU list:
internal_search_find: file="TESTSUITE/aux-fixed/sqlitedb"
- type=sqlite key="select id from them where id='userx'"
+ type=sqlite key="select id from them where id='userx'" opts=NULL
file lookup required for select id from them where id='userx'
in TESTSUITE/aux-fixed/sqlitedb
lookup yielded: userx
dropping to exim gid; retaining priv uid
search_open: sqlite "TESTSUITE/aux-fixed/sqlitedb"
search_find: file="TESTSUITE/aux-fixed/sqlitedb"
- key="select name from them where id='userx';" partial=-1 affix=NULL starflags=0
+ key="select name from them where id='userx';" partial=-1 affix=NULL starflags=0 opts=NULL
LRU list:
internal_search_find: file="TESTSUITE/aux-fixed/sqlitedb"
- type=sqlite key="select name from them where id='userx';"
+ type=sqlite key="select name from them where id='userx';" opts=NULL
file lookup required for select name from them where id='userx';
in TESTSUITE/aux-fixed/sqlitedb
lookup yielded: Ayen Other
dropping to exim gid; retaining priv uid
search_open: mysql "NULL"
search_find: file="NULL"
- key="select name from them where id='ph10';" partial=-1 affix=NULL starflags=0
+ key="select name from them where id='ph10';" partial=-1 affix=NULL starflags=0 opts=NULL
LRU list:
internal_search_find: file="NULL"
- type=mysql key="select name from them where id='ph10';"
+ type=mysql key="select name from them where id='ph10';" opts=NULL
database lookup required for select name from them where id='ph10';
MySQL query: select name from them where id='ph10';
MYSQL new connection: host=127.0.0.1 port=1223 socket=NULL database=test user=root
search_open: mysql "NULL"
cached open
search_find: file="NULL"
- key="select name from them where id='ph10';" partial=-1 affix=NULL starflags=0
+ key="select name from them where id='ph10';" partial=-1 affix=NULL starflags=0 opts=NULL
LRU list:
internal_search_find: file="NULL"
- type=mysql key="select name from them where id='ph10';"
+ type=mysql key="select name from them where id='ph10';" opts=NULL
cached data used for lookup of select name from them where id='ph10';
lookup yielded: Philip Hazel
search_open: mysql "NULL"
cached open
search_find: file="NULL"
- key="select name from them where id='xxxx';" partial=-1 affix=NULL starflags=0
+ key="select name from them where id='xxxx';" partial=-1 affix=NULL starflags=0 opts=NULL
LRU list:
internal_search_find: file="NULL"
- type=mysql key="select name from them where id='xxxx';"
+ type=mysql key="select name from them where id='xxxx';" opts=NULL
database lookup required for select name from them where id='xxxx';
MySQL query: select name from them where id='xxxx';
MYSQL using cached connection for 127.0.0.1:1223/test/root
search_open: mysql "NULL"
cached open
search_find: file="NULL"
- key="select name from them where id='nothing';" partial=-1 affix=NULL starflags=0
+ key="select name from them where id='nothing';" partial=-1 affix=NULL starflags=0 opts=NULL
LRU list:
internal_search_find: file="NULL"
- type=mysql key="select name from them where id='nothing';"
+ type=mysql key="select name from them where id='nothing';" opts=NULL
database lookup required for select name from them where id='nothing';
MySQL query: select name from them where id='nothing';
MYSQL using cached connection for 127.0.0.1:1223/test/root
search_open: mysql "NULL"
cached open
search_find: file="NULL"
- key="select id,name from them where id='nothing';" partial=-1 affix=NULL starflags=0
+ key="select id,name from them where id='nothing';" partial=-1 affix=NULL starflags=0 opts=NULL
LRU list:
internal_search_find: file="NULL"
- type=mysql key="select id,name from them where id='nothing';"
+ type=mysql key="select id,name from them where id='nothing';" opts=NULL
database lookup required for select id,name from them where id='nothing';
MySQL query: select id,name from them where id='nothing';
MYSQL using cached connection for 127.0.0.1:1223/test/root
search_open: mysql "NULL"
cached open
search_find: file="NULL"
- key="delete from them where id='nonexist';" partial=-1 affix=NULL starflags=0
+ key="delete from them where id='nonexist';" partial=-1 affix=NULL starflags=0 opts=NULL
LRU list:
internal_search_find: file="NULL"
- type=mysql key="delete from them where id='nonexist';"
+ type=mysql key="delete from them where id='nonexist';" opts=NULL
database lookup required for delete from them where id='nonexist';
MySQL query: delete from them where id='nonexist';
MYSQL using cached connection for 127.0.0.1:1223/test/root
search_open: mysql "NULL"
cached open
search_find: file="NULL"
- key="select * from them where id='quote';" partial=-1 affix=NULL starflags=0
+ key="select * from them where id='quote';" partial=-1 affix=NULL starflags=0 opts=NULL
LRU list:
internal_search_find: file="NULL"
- type=mysql key="select * from them where id='quote';"
+ type=mysql key="select * from them where id='quote';" opts=NULL
database lookup required for select * from them where id='quote';
MySQL query: select * from them where id='quote';
MYSQL using cached connection for 127.0.0.1:1223/test/root
search_open: mysql "NULL"
cached open
search_find: file="NULL"
- key="select * from them where id='filter';" partial=-1 affix=NULL starflags=0
+ key="select * from them where id='filter';" partial=-1 affix=NULL starflags=0 opts=NULL
LRU list:
internal_search_find: file="NULL"
- type=mysql key="select * from them where id='filter';"
+ type=mysql key="select * from them where id='filter';" opts=NULL
database lookup required for select * from them where id='filter';
MySQL query: select * from them where id='filter';
MYSQL using cached connection for 127.0.0.1:1223/test/root
search_open: mysql "NULL"
cached open
search_find: file="NULL"
- key="select * from them where id='quote2';" partial=-1 affix=NULL starflags=0
+ key="select * from them where id='quote2';" partial=-1 affix=NULL starflags=0 opts=NULL
LRU list:
internal_search_find: file="NULL"
- type=mysql key="select * from them where id='quote2';"
+ type=mysql key="select * from them where id='quote2';" opts=NULL
database lookup required for select * from them where id='quote2';
MySQL query: select * from them where id='quote2';
MYSQL using cached connection for 127.0.0.1:1223/test/root
search_open: mysql "NULL"
cached open
search_find: file="NULL"
- key="select * from them where id='nlonly';" partial=-1 affix=NULL starflags=0
+ key="select * from them where id='nlonly';" partial=-1 affix=NULL starflags=0 opts=NULL
LRU list:
internal_search_find: file="NULL"
- type=mysql key="select * from them where id='nlonly';"
+ type=mysql key="select * from them where id='nlonly';" opts=NULL
database lookup required for select * from them where id='nlonly';
MySQL query: select * from them where id='nlonly';
MYSQL using cached connection for 127.0.0.1:1223/test/root
search_open: mysql "NULL"
cached open
search_find: file="NULL"
- key="servers=x:127.0.0.1::1223; select name from them where id='ph10';" partial=-1 affix=NULL starflags=0
+ key="servers=x:127.0.0.1::1223; select name from them where id='ph10';" partial=-1 affix=NULL starflags=0 opts=NULL
LRU list:
internal_search_find: file="NULL"
- type=mysql key="servers=x:127.0.0.1::1223; select name from them where id='ph10';"
+ type=mysql key="servers=x:127.0.0.1::1223; select name from them where id='ph10';" opts=NULL
database lookup required for servers=x:127.0.0.1::1223; select name from them where id='ph10';
MySQL query: servers=x:127.0.0.1::1223; select name from them where id='ph10';
lookup deferred: MySQL server "x" not found in mysql_servers
search_open: mysql "NULL"
cached open
search_find: file="NULL"
- key="servers=127.0.0.1::1223:x; select name from them where id='ph10';" partial=-1 affix=NULL starflags=0
+ key="servers=127.0.0.1::1223:x; select name from them where id='ph10';" partial=-1 affix=NULL starflags=0 opts=NULL
LRU list:
internal_search_find: file="NULL"
- type=mysql key="servers=127.0.0.1::1223:x; select name from them where id='ph10';"
+ type=mysql key="servers=127.0.0.1::1223:x; select name from them where id='ph10';" opts=NULL
database lookup required for servers=127.0.0.1::1223:x; select name from them where id='ph10';
MySQL query: servers=127.0.0.1::1223:x; select name from them where id='ph10';
MYSQL using cached connection for 127.0.0.1:1223/test/root
search_open: mysql "NULL"
cached open
search_find: file="NULL"
- key="servers=127.0.0.1::1223/test/root/:x; select name from them where id='ph10';" partial=-1 affix=NULL starflags=0
+ key="servers=127.0.0.1::1223/test/root/:x; select name from them where id='ph10';" partial=-1 affix=NULL starflags=0 opts=NULL
LRU list:
internal_search_find: file="NULL"
- type=mysql key="servers=127.0.0.1::1223/test/root/:x; select name from them where id='ph10';"
+ type=mysql key="servers=127.0.0.1::1223/test/root/:x; select name from them where id='ph10';" opts=NULL
database lookup required for servers=127.0.0.1::1223/test/root/:x; select name from them where id='ph10';
MySQL query: servers=127.0.0.1::1223/test/root/:x; select name from them where id='ph10';
MYSQL using cached connection for 127.0.0.1:1223/test/root
search_open: mysql "NULL"
cached open
search_find: file="NULL"
- key="servers=ip4.ip4.ip4.ip4::1223/test/root/:127.0.0.1::1223; select name from them where id='ph10';" partial=-1 affix=NULL starflags=0
+ key="servers=ip4.ip4.ip4.ip4::1223/test/root/:127.0.0.1::1223; select name from them where id='ph10';" partial=-1 affix=NULL starflags=0 opts=NULL
LRU list:
internal_search_find: file="NULL"
- type=mysql key="servers=ip4.ip4.ip4.ip4::1223/test/root/:127.0.0.1::1223; select name from them where id='ph10';"
+ type=mysql key="servers=ip4.ip4.ip4.ip4::1223/test/root/:127.0.0.1::1223; select name from them where id='ph10';" opts=NULL
database lookup required for servers=ip4.ip4.ip4.ip4::1223/test/root/:127.0.0.1::1223; select name from them where id='ph10';
MySQL query: servers=ip4.ip4.ip4.ip4::1223/test/root/:127.0.0.1::1223; select name from them where id='ph10';
MYSQL new connection: host=ip4.ip4.ip4.ip4 port=1223 socket=NULL database=test user=root
search_open: mysql "NULL"
cached open
search_find: file="NULL"
- key="servers=localhost(TESTSUITE/mysql/sock)/test/root/; select name from them where id='ph10';" partial=-1 affix=NULL starflags=0
+ key="servers=localhost(TESTSUITE/mysql/sock)/test/root/; select name from them where id='ph10';" partial=-1 affix=NULL starflags=0 opts=NULL
LRU list:
internal_search_find: file="NULL"
- type=mysql key="servers=localhost(TESTSUITE/mysql/sock)/test/root/; select name from them where id='ph10';"
+ type=mysql key="servers=localhost(TESTSUITE/mysql/sock)/test/root/; select name from them where id='ph10';" opts=NULL
database lookup required for servers=localhost(TESTSUITE/mysql/sock)/test/root/; select name from them where id='ph10';
MySQL query: servers=localhost(TESTSUITE/mysql/sock)/test/root/; select name from them where id='ph10';
MYSQL new connection: host=localhost port=0 socket=TESTSUITE/mysql/sock database=test user=root
search_open: mysql "NULL"
cached open
search_find: file="NULL"
- key="SELECT name FROM them WHERE id IN ('ph10', 'aaaa');" partial=-1 affix=NULL starflags=0
+ key="SELECT name FROM them WHERE id IN ('ph10', 'aaaa');" partial=-1 affix=NULL starflags=0 opts=NULL
LRU list:
internal_search_find: file="NULL"
- type=mysql key="SELECT name FROM them WHERE id IN ('ph10', 'aaaa');"
+ type=mysql key="SELECT name FROM them WHERE id IN ('ph10', 'aaaa');" opts=NULL
database lookup required for SELECT name FROM them WHERE id IN ('ph10', 'aaaa');
MySQL query: SELECT name FROM them WHERE id IN ('ph10', 'aaaa');
MYSQL using cached connection for 127.0.0.1:1223/test/root
search_open: mysql "NULL"
cached open
search_find: file="NULL"
- key="SELECT * FROM them WHERE id IN ('ph10', 'aaaa');" partial=-1 affix=NULL starflags=0
+ key="SELECT * FROM them WHERE id IN ('ph10', 'aaaa');" partial=-1 affix=NULL starflags=0 opts=NULL
LRU list:
internal_search_find: file="NULL"
- type=mysql key="SELECT * FROM them WHERE id IN ('ph10', 'aaaa');"
+ type=mysql key="SELECT * FROM them WHERE id IN ('ph10', 'aaaa');" opts=NULL
database lookup required for SELECT * FROM them WHERE id IN ('ph10', 'aaaa');
MySQL query: SELECT * FROM them WHERE id IN ('ph10', 'aaaa');
MYSQL using cached connection for 127.0.0.1:1223/test/root
search_open: mysql "NULL"
cached open
search_find: file="NULL"
- key="delete from them where id='aaaa'" partial=-1 affix=NULL starflags=0
+ key="delete from them where id='aaaa'" partial=-1 affix=NULL starflags=0 opts=NULL
LRU list:
internal_search_find: file="NULL"
- type=mysql key="delete from them where id='aaaa'"
+ type=mysql key="delete from them where id='aaaa'" opts=NULL
database lookup required for delete from them where id='aaaa'
MySQL query: delete from them where id='aaaa'
MYSQL using cached connection for 127.0.0.1:1223/test/root
check hosts = +relay_hosts
search_open: mysql "NULL"
search_find: file="NULL"
- key="select * from them where id='10.0.0.0'" partial=-1 affix=NULL starflags=0
+ key="select * from them where id='10.0.0.0'" partial=-1 affix=NULL starflags=0 opts=NULL
LRU list:
internal_search_find: file="NULL"
- type=mysql key="select * from them where id='10.0.0.0'"
+ type=mysql key="select * from them where id='10.0.0.0'" opts=NULL
database lookup required for select * from them where id='10.0.0.0'
MySQL query: select * from them where id='10.0.0.0'
MYSQL new connection: host=127.0.0.1 port=1223 socket=NULL database=test user=root
processing address_data
search_open: mysql "NULL"
search_find: file="NULL"
- key="select name from them where id='ph10'" partial=-1 affix=NULL starflags=0
+ key="select name from them where id='ph10'" partial=-1 affix=NULL starflags=0 opts=NULL
LRU list:
internal_search_find: file="NULL"
- type=mysql key="select name from them where id='ph10'"
+ type=mysql key="select name from them where id='ph10'" opts=NULL
database lookup required for select name from them where id='ph10'
MySQL query: select name from them where id='ph10'
MYSQL new connection: host=127.0.0.1 port=1223 socket=NULL database=test user=root
appendfile transport entered
search_open: mysql "NULL"
search_find: file="NULL"
- key="select id from them where id='ph10'" partial=-1 affix=NULL starflags=0
+ key="select id from them where id='ph10'" partial=-1 affix=NULL starflags=0 opts=NULL
LRU list:
internal_search_find: file="NULL"
- type=mysql key="select id from them where id='ph10'"
+ type=mysql key="select id from them where id='ph10'" opts=NULL
database lookup required for select id from them where id='ph10'
MySQL query: select id from them where id='ph10'
MYSQL new connection: host=127.0.0.1 port=1223 socket=NULL database=test user=root
dropping to exim gid; retaining priv uid
search_open: pgsql "NULL"
search_find: file="NULL"
- key="select name from them where id='ph10';" partial=-1 affix=NULL starflags=0
+ key="select name from them where id='ph10';" partial=-1 affix=NULL starflags=0 opts=NULL
LRU list:
internal_search_find: file="NULL"
- type=pgsql key="select name from them where id='ph10';"
+ type=pgsql key="select name from them where id='ph10';" opts=NULL
database lookup required for select name from them where id='ph10';
PostgreSQL query: select name from them where id='ph10';
PGSQL new connection: host=localhost port=1223 database=test user=CALLER
search_open: pgsql "NULL"
cached open
search_find: file="NULL"
- key="select name from them where id='ph10';" partial=-1 affix=NULL starflags=0
+ key="select name from them where id='ph10';" partial=-1 affix=NULL starflags=0 opts=NULL
LRU list:
internal_search_find: file="NULL"
- type=pgsql key="select name from them where id='ph10';"
+ type=pgsql key="select name from them where id='ph10';" opts=NULL
cached data used for lookup of select name from them where id='ph10';
lookup yielded: Philip Hazel
search_open: pgsql "NULL"
cached open
search_find: file="NULL"
- key="select name from them where id='xxxx';" partial=-1 affix=NULL starflags=0
+ key="select name from them where id='xxxx';" partial=-1 affix=NULL starflags=0 opts=NULL
LRU list:
internal_search_find: file="NULL"
- type=pgsql key="select name from them where id='xxxx';"
+ type=pgsql key="select name from them where id='xxxx';" opts=NULL
database lookup required for select name from them where id='xxxx';
PostgreSQL query: select name from them where id='xxxx';
PGSQL using cached connection for localhost:1223/test/CALLER
search_open: pgsql "NULL"
cached open
search_find: file="NULL"
- key="select name from them where id='nothing';" partial=-1 affix=NULL starflags=0
+ key="select name from them where id='nothing';" partial=-1 affix=NULL starflags=0 opts=NULL
LRU list:
internal_search_find: file="NULL"
- type=pgsql key="select name from them where id='nothing';"
+ type=pgsql key="select name from them where id='nothing';" opts=NULL
database lookup required for select name from them where id='nothing';
PostgreSQL query: select name from them where id='nothing';
PGSQL using cached connection for localhost:1223/test/CALLER
search_open: pgsql "NULL"
cached open
search_find: file="NULL"
- key="select id,name from them where id='nothing';" partial=-1 affix=NULL starflags=0
+ key="select id,name from them where id='nothing';" partial=-1 affix=NULL starflags=0 opts=NULL
LRU list:
internal_search_find: file="NULL"
- type=pgsql key="select id,name from them where id='nothing';"
+ type=pgsql key="select id,name from them where id='nothing';" opts=NULL
database lookup required for select id,name from them where id='nothing';
PostgreSQL query: select id,name from them where id='nothing';
PGSQL using cached connection for localhost:1223/test/CALLER
search_open: pgsql "NULL"
cached open
search_find: file="NULL"
- key="delete from them where id='nonexist';" partial=-1 affix=NULL starflags=0
+ key="delete from them where id='nonexist';" partial=-1 affix=NULL starflags=0 opts=NULL
LRU list:
internal_search_find: file="NULL"
- type=pgsql key="delete from them where id='nonexist';"
+ type=pgsql key="delete from them where id='nonexist';" opts=NULL
database lookup required for delete from them where id='nonexist';
PostgreSQL query: delete from them where id='nonexist';
PGSQL using cached connection for localhost:1223/test/CALLER
search_open: pgsql "NULL"
cached open
search_find: file="NULL"
- key="select * from them where id='quote2';" partial=-1 affix=NULL starflags=0
+ key="select * from them where id='quote2';" partial=-1 affix=NULL starflags=0 opts=NULL
LRU list:
internal_search_find: file="NULL"
- type=pgsql key="select * from them where id='quote2';"
+ type=pgsql key="select * from them where id='quote2';" opts=NULL
database lookup required for select * from them where id='quote2';
PostgreSQL query: select * from them where id='quote2';
PGSQL using cached connection for localhost:1223/test/CALLER
search_open: pgsql "NULL"
cached open
search_find: file="NULL"
- key="select * from them where id='newline';" partial=-1 affix=NULL starflags=0
+ key="select * from them where id='newline';" partial=-1 affix=NULL starflags=0 opts=NULL
LRU list:
internal_search_find: file="NULL"
- type=pgsql key="select * from them where id='newline';"
+ type=pgsql key="select * from them where id='newline';" opts=NULL
database lookup required for select * from them where id='newline';
PostgreSQL query: select * from them where id='newline';
PGSQL using cached connection for localhost:1223/test/CALLER
search_open: pgsql "NULL"
cached open
search_find: file="NULL"
- key="select * from them where id='tab';" partial=-1 affix=NULL starflags=0
+ key="select * from them where id='tab';" partial=-1 affix=NULL starflags=0 opts=NULL
LRU list:
internal_search_find: file="NULL"
- type=pgsql key="select * from them where id='tab';"
+ type=pgsql key="select * from them where id='tab';" opts=NULL
database lookup required for select * from them where id='tab';
PostgreSQL query: select * from them where id='tab';
PGSQL using cached connection for localhost:1223/test/CALLER
search_open: pgsql "NULL"
cached open
search_find: file="NULL"
- key="select * from them where name='''stquot';" partial=-1 affix=NULL starflags=0
+ key="select * from them where name='''stquot';" partial=-1 affix=NULL starflags=0 opts=NULL
LRU list:
internal_search_find: file="NULL"
- type=pgsql key="select * from them where name='''stquot';"
+ type=pgsql key="select * from them where name='''stquot';" opts=NULL
database lookup required for select * from them where name='''stquot';
PostgreSQL query: select * from them where name='''stquot';
PGSQL using cached connection for localhost:1223/test/CALLER
search_open: pgsql "NULL"
cached open
search_find: file="NULL"
- key="servers=x:localhost; select name from them where id='ph10';" partial=-1 affix=NULL starflags=0
+ key="servers=x:localhost; select name from them where id='ph10';" partial=-1 affix=NULL starflags=0 opts=NULL
LRU list:
internal_search_find: file="NULL"
- type=pgsql key="servers=x:localhost; select name from them where id='ph10';"
+ type=pgsql key="servers=x:localhost; select name from them where id='ph10';" opts=NULL
database lookup required for servers=x:localhost; select name from them where id='ph10';
PostgreSQL query: servers=x:localhost; select name from them where id='ph10';
lookup deferred: PostgreSQL server "x" not found in pgsql_servers
search_open: pgsql "NULL"
cached open
search_find: file="NULL"
- key="servers=localhost::1223:x; select name from them where id='ph10';" partial=-1 affix=NULL starflags=0
+ key="servers=localhost::1223:x; select name from them where id='ph10';" partial=-1 affix=NULL starflags=0 opts=NULL
LRU list:
internal_search_find: file="NULL"
- type=pgsql key="servers=localhost::1223:x; select name from them where id='ph10';"
+ type=pgsql key="servers=localhost::1223:x; select name from them where id='ph10';" opts=NULL
database lookup required for servers=localhost::1223:x; select name from them where id='ph10';
PostgreSQL query: servers=localhost::1223:x; select name from them where id='ph10';
PGSQL using cached connection for localhost:1223/test/CALLER
search_open: pgsql "NULL"
cached open
search_find: file="NULL"
- key="servers=localhost::1223/test/CALLER/:x; select name from them where id='ph10';" partial=-1 affix=NULL starflags=0
+ key="servers=localhost::1223/test/CALLER/:x; select name from them where id='ph10';" partial=-1 affix=NULL starflags=0 opts=NULL
LRU list:
internal_search_find: file="NULL"
- type=pgsql key="servers=localhost::1223/test/CALLER/:x; select name from them where id='ph10';"
+ type=pgsql key="servers=localhost::1223/test/CALLER/:x; select name from them where id='ph10';" opts=NULL
database lookup required for servers=localhost::1223/test/CALLER/:x; select name from them where id='ph10';
PostgreSQL query: servers=localhost::1223/test/CALLER/:x; select name from them where id='ph10';
PGSQL using cached connection for localhost:1223/test/CALLER
search_open: pgsql "NULL"
cached open
search_find: file="NULL"
- key="servers=(TESTSUITE/pgsql/.s.PGSQL.1223)/test/CALLER/:x; select name from them where id='ph10';" partial=-1 affix=NULL starflags=0
+ key="servers=(TESTSUITE/pgsql/.s.PGSQL.1223)/test/CALLER/:x; select name from them where id='ph10';" partial=-1 affix=NULL starflags=0 opts=NULL
LRU list:
internal_search_find: file="NULL"
- type=pgsql key="servers=(TESTSUITE/pgsql/.s.PGSQL.1223)/test/CALLER/:x; select name from them where id='ph10';"
+ type=pgsql key="servers=(TESTSUITE/pgsql/.s.PGSQL.1223)/test/CALLER/:x; select name from them where id='ph10';" opts=NULL
database lookup required for servers=(TESTSUITE/pgsql/.s.PGSQL.1223)/test/CALLER/:x; select name from them where id='ph10';
PostgreSQL query: servers=(TESTSUITE/pgsql/.s.PGSQL.1223)/test/CALLER/:x; select name from them where id='ph10';
PGSQL new connection: socket=TESTSUITE/pgsql/.s.PGSQL.1223 database=test user=CALLER
search_open: pgsql "NULL"
cached open
search_find: file="NULL"
- key="SELECT name FROM them WHERE id IN ('ph10', 'aaaa');" partial=-1 affix=NULL starflags=0
+ key="SELECT name FROM them WHERE id IN ('ph10', 'aaaa');" partial=-1 affix=NULL starflags=0 opts=NULL
LRU list:
internal_search_find: file="NULL"
- type=pgsql key="SELECT name FROM them WHERE id IN ('ph10', 'aaaa');"
+ type=pgsql key="SELECT name FROM them WHERE id IN ('ph10', 'aaaa');" opts=NULL
database lookup required for SELECT name FROM them WHERE id IN ('ph10', 'aaaa');
PostgreSQL query: SELECT name FROM them WHERE id IN ('ph10', 'aaaa');
PGSQL using cached connection for localhost:1223/test/CALLER
search_open: pgsql "NULL"
cached open
search_find: file="NULL"
- key="SELECT * FROM them WHERE id IN ('ph10', 'aaaa');" partial=-1 affix=NULL starflags=0
+ key="SELECT * FROM them WHERE id IN ('ph10', 'aaaa');" partial=-1 affix=NULL starflags=0 opts=NULL
LRU list:
internal_search_find: file="NULL"
- type=pgsql key="SELECT * FROM them WHERE id IN ('ph10', 'aaaa');"
+ type=pgsql key="SELECT * FROM them WHERE id IN ('ph10', 'aaaa');" opts=NULL
database lookup required for SELECT * FROM them WHERE id IN ('ph10', 'aaaa');
PostgreSQL query: SELECT * FROM them WHERE id IN ('ph10', 'aaaa');
PGSQL using cached connection for localhost:1223/test/CALLER
search_open: pgsql "NULL"
cached open
search_find: file="NULL"
- key="delete from them where id='aaaa'" partial=-1 affix=NULL starflags=0
+ key="delete from them where id='aaaa'" partial=-1 affix=NULL starflags=0 opts=NULL
LRU list:
internal_search_find: file="NULL"
- type=pgsql key="delete from them where id='aaaa'"
+ type=pgsql key="delete from them where id='aaaa'" opts=NULL
database lookup required for delete from them where id='aaaa'
PostgreSQL query: delete from them where id='aaaa'
PGSQL using cached connection for localhost:1223/test/CALLER
check hosts = +relay_hosts
search_open: pgsql "NULL"
search_find: file="NULL"
- key="select * from them where id='10.0.0.0'" partial=-1 affix=NULL starflags=0
+ key="select * from them where id='10.0.0.0'" partial=-1 affix=NULL starflags=0 opts=NULL
LRU list:
internal_search_find: file="NULL"
- type=pgsql key="select * from them where id='10.0.0.0'"
+ type=pgsql key="select * from them where id='10.0.0.0'" opts=NULL
database lookup required for select * from them where id='10.0.0.0'
PostgreSQL query: select * from them where id='10.0.0.0'
PGSQL new connection: host=localhost port=1223 database=test user=CALLER
search_open: pgsql "NULL"
cached open
search_find: file="NULL"
- key="select * from them where id='10.0.0.0'" partial=-1 affix=NULL starflags=0
+ key="select * from them where id='10.0.0.0'" partial=-1 affix=NULL starflags=0 opts=NULL
LRU list:
internal_search_find: file="NULL"
- type=pgsql key="select * from them where id='10.0.0.0'"
+ type=pgsql key="select * from them where id='10.0.0.0'" opts=NULL
cached data used for lookup of select * from them where id='10.0.0.0'
lookup failed
host in "net-pgsql;select * from them where id='10.0.0.0'"? no (end of list)
processing address_data
search_open: pgsql "NULL"
search_find: file="NULL"
- key="select name from them where id='ph10'" partial=-1 affix=NULL starflags=0
+ key="select name from them where id='ph10'" partial=-1 affix=NULL starflags=0 opts=NULL
LRU list:
internal_search_find: file="NULL"
- type=pgsql key="select name from them where id='ph10'"
+ type=pgsql key="select name from them where id='ph10'" opts=NULL
database lookup required for select name from them where id='ph10'
PostgreSQL query: select name from them where id='ph10'
PGSQL new connection: host=localhost port=1223 database=test user=CALLER
appendfile transport entered
search_open: pgsql "NULL"
search_find: file="NULL"
- key="select id from them where id='ph10'" partial=-1 affix=NULL starflags=0
+ key="select id from them where id='ph10'" partial=-1 affix=NULL starflags=0 opts=NULL
LRU list:
internal_search_find: file="NULL"
- type=pgsql key="select id from them where id='ph10'"
+ type=pgsql key="select id from them where id='ph10'" opts=NULL
database lookup required for select id from them where id='ph10'
PostgreSQL query: select id from them where id='ph10'
PGSQL new connection: host=localhost port=1223 database=test user=CALLER
dropping to exim gid; retaining priv uid
search_open: pgsql "NULL"
search_find: file="NULL"
- key="select name from them where id='ph10';" partial=-1 affix=NULL starflags=0
+ key="select name from them where id='ph10';" partial=-1 affix=NULL starflags=0 opts=NULL
LRU list:
internal_search_find: file="NULL"
- type=pgsql key="select name from them where id='ph10';"
+ type=pgsql key="select name from them where id='ph10';" opts=NULL
database lookup required for select name from them where id='ph10';
PostgreSQL query: select name from them where id='ph10';
PGSQL new connection: socket=TESTSUITE/pgsql/.s.PGSQL.1223 database=test user=CALLER
check hosts = testdb;fail
search_open: testdb "NULL"
search_find: file="NULL"
- key="fail" partial=-1 affix=NULL starflags=0
+ key="fail" partial=-1 affix=NULL starflags=0 opts=NULL
LRU list:
internal_search_find: file="NULL"
- type=testdb key="fail"
+ type=testdb key="fail" opts=NULL
database lookup required for fail
testdb lookup forced FAIL
lookup failed
check hosts = net-testdb;fail
search_open: testdb "NULL"
search_find: file="NULL"
- key="fail" partial=-1 affix=NULL starflags=0
+ key="fail" partial=-1 affix=NULL starflags=0 opts=NULL
LRU list:
internal_search_find: file="NULL"
- type=testdb key="fail"
+ type=testdb key="fail" opts=NULL
database lookup required for fail
testdb lookup forced FAIL
lookup failed
checking domains
search_open: testdb "NULL"
search_find: file="NULL"
- key="defer" partial=-1 affix=NULL starflags=0
+ key="defer" partial=-1 affix=NULL starflags=0 opts=NULL
LRU list:
internal_search_find: file="NULL"
- type=testdb key="defer"
+ type=testdb key="defer" opts=NULL
database lookup required for defer
testdb lookup forced DEFER
lookup deferred: testdb lookup forced DEFER
sender address = CALLER@myhost.test.ex
search_open: lsearch "TESTSUITE/aux-fixed/3212.aliases"
search_find: file="TESTSUITE/aux-fixed/3212.aliases"
- key="list" partial=-1 affix=NULL starflags=0
+ key="list" partial=-1 affix=NULL starflags=0 opts=NULL
LRU list:
0TESTSUITE/aux-fixed/3212.aliases
End
internal_search_find: file="TESTSUITE/aux-fixed/3212.aliases"
- type=lsearch key="list"
+ type=lsearch key="list" opts=NULL
file lookup required for list
in TESTSUITE/aux-fixed/3212.aliases
lookup yielded: userx, usery
search_open: lsearch "TESTSUITE/aux-fixed/3212.aliases"
cached open
search_find: file="TESTSUITE/aux-fixed/3212.aliases"
- key="list" partial=-1 affix=NULL starflags=0
+ key="list" partial=-1 affix=NULL starflags=0 opts=NULL
LRU list:
0TESTSUITE/aux-fixed/3212.aliases
End
internal_search_find: file="TESTSUITE/aux-fixed/3212.aliases"
- type=lsearch key="list"
+ type=lsearch key="list" opts=NULL
cached data used for lookup of list
in TESTSUITE/aux-fixed/3212.aliases
lookup yielded: userx, usery
search_open: lsearch "TESTSUITE/aux-fixed/3212.aliases"
cached open
search_find: file="TESTSUITE/aux-fixed/3212.aliases"
- key="root" partial=-1 affix=NULL starflags=0
+ key="root" partial=-1 affix=NULL starflags=0 opts=NULL
LRU list:
0TESTSUITE/aux-fixed/3212.aliases
End
internal_search_find: file="TESTSUITE/aux-fixed/3212.aliases"
- type=lsearch key="root"
+ type=lsearch key="root" opts=NULL
file lookup required for root
in TESTSUITE/aux-fixed/3212.aliases
lookup yielded: userx
search_open: lsearch "TESTSUITE/aux-fixed/3212.aliases"
cached open
search_find: file="TESTSUITE/aux-fixed/3212.aliases"
- key="root" partial=-1 affix=NULL starflags=0
+ key="root" partial=-1 affix=NULL starflags=0 opts=NULL
LRU list:
0TESTSUITE/aux-fixed/3212.aliases
End
internal_search_find: file="TESTSUITE/aux-fixed/3212.aliases"
- type=lsearch key="root"
+ type=lsearch key="root" opts=NULL
cached data used for lookup of root
in TESTSUITE/aux-fixed/3212.aliases
lookup yielded: userx
search_open: lsearch "TESTSUITE/aux-fixed/3212.aliases"
cached open
search_find: file="TESTSUITE/aux-fixed/3212.aliases"
- key="list" partial=-1 affix=NULL starflags=0
+ key="list" partial=-1 affix=NULL starflags=0 opts=NULL
LRU list:
0TESTSUITE/aux-fixed/3212.aliases
End
internal_search_find: file="TESTSUITE/aux-fixed/3212.aliases"
- type=lsearch key="list"
+ type=lsearch key="list" opts=NULL
cached data used for lookup of list
in TESTSUITE/aux-fixed/3212.aliases
lookup yielded: userx, usery
search_open: testdb "NULL"
search_find: file="NULL"
- key="something" partial=-1 affix=NULL starflags=0
+ key="something" partial=-1 affix=NULL starflags=0 opts=NULL
LRU list:
0TESTSUITE/aux-fixed/3212.aliases
End
internal_search_find: file="NULL"
- type=testdb key="something"
+ type=testdb key="something" opts=NULL
database lookup required for something
lookup yielded: something
search_open: testdb "NULL"
cached open
search_find: file="NULL"
- key="something" partial=-1 affix=NULL starflags=0
+ key="something" partial=-1 affix=NULL starflags=0 opts=NULL
LRU list:
0TESTSUITE/aux-fixed/3212.aliases
End
internal_search_find: file="NULL"
- type=testdb key="something"
+ type=testdb key="something" opts=NULL
cached data used for lookup of something
lookup yielded: something
search_open: testdb "NULL"
cached open
search_find: file="NULL"
- key="nocache" partial=-1 affix=NULL starflags=0
+ key="nocache" partial=-1 affix=NULL starflags=0 opts=NULL
LRU list:
0TESTSUITE/aux-fixed/3212.aliases
End
internal_search_find: file="NULL"
- type=testdb key="nocache"
+ type=testdb key="nocache" opts=NULL
database lookup required for nocache
lookup forced cache cleanup
lookup yielded: nocache
search_open: testdb "NULL"
cached open
search_find: file="NULL"
- key="something" partial=-1 affix=NULL starflags=0
+ key="something" partial=-1 affix=NULL starflags=0 opts=NULL
LRU list:
0TESTSUITE/aux-fixed/3212.aliases
End
internal_search_find: file="NULL"
- type=testdb key="something"
+ type=testdb key="something" opts=NULL
database lookup required for something
lookup yielded: something
search_open: lsearch "TESTSUITE/aux-fixed/3212.aliases"
cached open
search_find: file="TESTSUITE/aux-fixed/3212.aliases"
- key="list" partial=-1 affix=NULL starflags=0
+ key="list" partial=-1 affix=NULL starflags=0 opts=NULL
LRU list:
0TESTSUITE/aux-fixed/3212.aliases
End
internal_search_find: file="TESTSUITE/aux-fixed/3212.aliases"
- type=lsearch key="list"
+ type=lsearch key="list" opts=NULL
cached data used for lookup of list
in TESTSUITE/aux-fixed/3212.aliases
lookup yielded: userx, usery
search_open: lsearch "TESTSUITE/aux-fixed/3212.aliases"
cached open
search_find: file="TESTSUITE/aux-fixed/3212.aliases"
- key="root" partial=-1 affix=NULL starflags=0
+ key="root" partial=-1 affix=NULL starflags=0 opts=NULL
LRU list:
0TESTSUITE/aux-fixed/3212.aliases
End
internal_search_find: file="TESTSUITE/aux-fixed/3212.aliases"
- type=lsearch key="root"
+ type=lsearch key="root" opts=NULL
cached data used for lookup of root
in TESTSUITE/aux-fixed/3212.aliases
lookup yielded: userx