From 05f9d2aa6ebe4a699311ff9b71c2fbcbd48418bd Mon Sep 17 00:00:00 2001 From: Alan Knowles Date: Wed, 9 May 2018 18:02:12 +0800 Subject: [PATCH] src/strip.vala --- src/strip.vala | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/strip.vala b/src/strip.vala index fe34bf7..4224d4a 100644 --- a/src/strip.vala +++ b/src/strip.vala @@ -721,7 +721,7 @@ public class Strip : GLib.Object { var recvd = message.get_header("received"); this.active_message_exim_id = ""; if (recvd != null && recvd.length > 1) { - // GLib.debug("RECV: %s", recvd); + GLib.debug("RECV: %s", recvd); var lines = recvd.split("\t"); for (var i = 0; i < lines.length;i++) { var bits = lines[i].strip().split(" "); @@ -760,7 +760,7 @@ public class Strip : GLib.Object { rtspan = mailtime.difference(newest) / GLib.TimeSpan.DAY; if (rtspan > 0) { GLib.debug("skip(2) file is %d days newer than %d months : %s", (int)rtspan, StripApplication.opt_age_newest, - mailtime.format("%Y-%m-%d %H:%i:%s")); + mailtime.format("%Y-%m-%d %H:%i:%s")); return; } -- 2.39.2