From 3225e9b88f4e803d736d00d0a210c15012f4c590 Mon Sep 17 00:00:00 2001 From: Alan Knowles Date: Fri, 29 Jun 2018 15:53:02 +0800 Subject: [PATCH] src/strip.vala --- src/strip.vala | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/strip.vala b/src/strip.vala index e219c62..1265159 100644 --- a/src/strip.vala +++ b/src/strip.vala @@ -440,6 +440,14 @@ public class Strip : GLib.Object { public void fix_deleted_attachment_db(int id, GMime.Part attachment) { + + var filename = attachment.get_header("X-strip-content-name"); + var file_path = attachment.get_header("X-strip-path"); + var content_type = attachment.get_header("X-strip-content-type"); + + GLib.error("GOT FN: %s | PATH: %s | CT: %s", filename, file_path, content_type); + + this.query(""" INSERT INTO Attachments (id, exim_msg?, chksum, filesize) -- 2.39.2