src/strip.vala
[app.mailtrimmer] / 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?");
     }