| Server IP : 88.99.149.37 / Your IP : 216.73.216.141 Web Server : nginx/1.31.2 System : Linux server-88-99-149-37 6.12.0-124.56.5.el10_1.x86_64 #1 SMP PREEMPT_DYNAMIC Fri May 15 06:12:08 EDT 2026 x86_64 User : muralimurth ( 1015) PHP Version : 8.4.23 Disable Function : exec,system,passthru,shell_exec,proc_close,proc_open,dl,popen,show_source,posix_kill,posix_mkfifo,posix_getpwuid,posix_setpgid,posix_setsid,posix_setuid,posix_setgid,posix_seteuid,posix_setegid,posix_uname MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /proc/thread-self/root/usr/include/dovecot/ |
Upload File : |
#ifndef INDEX_SEARCH_PRIVATE_H
#define INDEX_SEARCH_PRIVATE_H
#include "mail-storage-private.h"
#include <sys/time.h>
struct mail_search_mime_part;
struct imap_message_part;
struct index_search_context {
struct mail_search_context mail_ctx;
struct mail_index_view *view;
struct mailbox *box;
uint32_t pvt_uid, pvt_seq;
enum mail_fetch_field extra_wanted_fields;
struct mailbox_header_lookup_ctx *extra_wanted_headers;
uint32_t seq1, seq2;
struct mail *cur_mail;
struct index_mail *cur_imail;
struct mail_thread_context *thread_ctx;
pool_t temp_pool;
struct timeval last_nonblock_timeval;
struct timeval interrupt_start_time;
unsigned long long cost, next_time_check_cost;
bool failed:1;
bool sorted:1;
bool have_seqsets:1;
bool have_index_args:1;
bool have_mailbox_args:1;
bool have_nonmatch_always:1;
};
struct mail *index_search_get_mail(struct index_search_context *ctx);
int index_search_mime_arg_match(struct mail_search_arg *args,
struct index_search_context *ctx);
void index_search_mime_arg_deinit(struct mail_search_arg *arg,
struct index_search_context *ctx);
#endif