src/strip.vala
[app.mailtrimmer] / src / strip.vala
index e219c62..1123c47 100644 (file)
@@ -374,7 +374,7 @@ public class Strip : GLib.Object {
                        int.parse(sid)));  
 
                 
-               if (matches !="") {      
+               if (matches == "") {     
                        // our old mailfort code deleted the crap out of old records...
                        // if this occurs we will need to create the record again..
                        this.fix_deleted_attachment_db(int.parse(sid),attachment);
@@ -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  = opt_target_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)
@@ -455,7 +463,7 @@ public class Strip : GLib.Object {
                                  this.mysql_escape(mime_filename),                       
                                      int.parse(filesize)
                        ));
-                       
+               */
     }