From d3034de5602b5f4a71e700d349d2f3d3cc322978 Mon Sep 17 00:00:00 2001 From: Francois Fleuret Date: Fri, 20 Sep 2013 17:54:17 +0200 Subject: [PATCH] Added "2weeks" as a criterion. --- mymail.c | 1 + 1 file changed, 1 insertion(+) diff --git a/mymail.c b/mymail.c index 7394c71..8c211f0 100644 --- a/mymail.c +++ b/mymail.c @@ -827,6 +827,7 @@ static struct time_criterion time_criteria[] = { { "24h", 0, 24, -1, -1 }, { "48h", 0, 48, -1, -1 }, { "week", 0, 24 * 7, -1, -1 }, + { "2weeks", 0, 24 * 14, -1, -1 }, { "month", 0, 24 * 31, -1, -1 }, { "trimester", 0, 24 * 92, -1, -1 }, { "year", 0, 24 * 365, -1, -1 }, -- 2.20.1