From: Alan Knowles Date: Fri, 29 Jun 2018 08:00:05 +0000 (+0800) Subject: src/strip.vala X-Git-Url: http://git.roojs.org/?p=app.mailtrimmer;a=commitdiff_plain;h=5eeb2a700009a32421306c8605f9f520bcdead88 src/strip.vala --- diff --git a/src/strip.vala b/src/strip.vala index b56ce44..ec041cd 100644 --- a/src/strip.vala +++ b/src/strip.vala @@ -471,6 +471,21 @@ public class Strip : GLib.Object { file_size )); + this.query(""" + SELECT attachment_update( + %d, -- in_id INT(11), + '%s', -- in_mime_type varchar(255), + '%s', -- in_created DATETIME, + '%s' -- in_mailfort_sig varchar(64) + ) + """.printf( + id, + "", // this will be ignored.. + this.created_date, + this.mysql_escape(this.active_message_x_mailfort_sig) + + ) + ); GLib.error("added attachment?"); }