Change the default query window to be open ended, allowing for mail
from the future to appear in a query. This may occur if the sender's
time settings are improperly configured.
Signed-off-by: Austin Ray <austin@austinray.io>
if (end == 0)
{
- snprintf(buf, buflen, "date:%d%s..now and %s", beg, NmQueryWindowTimebase,
+ // Open-ended date allows mail from the future.
+ // This may occur is the sender's time settings are off.
+ snprintf(buf, buflen, "date:%d%s.. and %s", beg, NmQueryWindowTimebase,
NmQueryWindowCurrentSearch);
}
else