.TP
\fBtoday\fR, \fB24h\fR selects mails received during the last 24 hours.
.TP
+\fBweek\fR selects mails received during the last 7*24 hours.
+.TP
\fByesterday\fR selects mails received between 48h and 24h ago.
.TP
\fBmonday\fR, \fBtuesday\fR, ..., \fBsunday\fR selects mails received
condition->interval_stop = 0;
}
+ else if(strcmp(search_field, "week") == 0) {
+ condition->field_id = ID_INTERVAL;
+ condition->interval_start = time(0) - 3600 * 24 * 7;
+ condition->interval_stop = 0;
+ }
+
/* Today and yesterday */
else if(strcmp(search_field, "24h") == 0 ||
paranoid = 0;
action_index = 0;
db_filename = 0;
+ db_filename_regexp_string = 0;
db_root_path = 0;
db_filename_list = 0;
quiet = 0;