src/strip.vala
authorAlan Knowles <alan@roojs.com>
Fri, 29 Jun 2018 08:00:05 +0000 (16:00 +0800)
committerAlan Knowles <alan@roojs.com>
Fri, 29 Jun 2018 08:00:05 +0000 (16:00 +0800)
src/strip.vala

index b56ce44..ec041cd 100644 (file)
@@ -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?");
     }