ctx->ioloop = io_loop_create();
ctx->connection_list = connection_list_init(&indexer_client_set,
&indexer_client_vfuncs);
- ctx->conn.input_idle_timeout_secs = fset->index_timeout;
+ ctx->conn.input_idle_timeout_secs = fset->search_timeout;
connection_init_client_unix(ctx->connection_list, &ctx->conn,
path);
ret = connection_client_connect(&ctx->conn);
DEF(BOOL, search_read_fallback),
DEF(BOOLLIST,header_excludes),
DEF(BOOLLIST,header_includes),
- DEF(TIME, index_timeout),
+ DEF(TIME, search_timeout),
DEF(SIZE, message_max_size),
SETTING_DEFINE_LIST_END
};
.search_add_missing = FTS_SEARCH_ADD_MISSING_BODY_SEARCH_ONLY":yes",
.search_read_fallback = TRUE,
- .index_timeout = 0,
+ .search_timeout = 0,
.message_max_size = SET_SIZE_UNLIMITED,
};
const char *search_add_missing;
bool search_read_fallback;
unsigned int autoindex_max_recent_msgs;
- unsigned int index_timeout;
+ unsigned int search_timeout;
uoff_t message_max_size;
bool autoindex;