ea40d1e599e043265d94a5c5bba78861beb3c6a1
[app.mailtrimmer] / src / strip.vala
1 /**
2
3   needs to scan 2 things
4   a) our mailfort email database
5        point it at the top directory, containing YEAR/MONTH/DAY.... directories.
6        scan each file (over a year old...)
7        extract out the attachment, and replace with HTML
8        DATABASE? - mysql or sqlite? - 
9            filesize / name / date / checksum / mimetype -- into mailfort should be OK.
10   b) the imap user emails
11            loop through user's directories
12            check age of email .. over 1 years..
13            ?? how to prevent 'repeat' scanning of emails?
14               ??? hidden '.' files containing last scan date?
15
16            check if file exists in our DB.. - replace the link...
17            otherwise generate a file. + add to DB...
18            
19    c) retreival system
20      -> URL -> get file
21    d) redirect system.
22      -> URL -> redirect to correct server
23
24
25 More notes on our Mailfort DB sync:
26 * some of these attachments are already in the database...
27  - so we need to update the DB..
28  - probably worth putting the code in a stored procedure..
29  
30  -- key scenarios
31    * first scan (and extract)
32    * rescan (as I messed up the first time - fix the DB...)
33    * email scan - attachments might not have related messages.
34  
35  
36  - {id} attachment_init(
37                 {exim_msg_id}
38                 {chksum}
39                 {filename),
40         )
41         // creates or returns id (can look for existing messages?
42         // can do a merge?? - copy 'old' record data into 'new'....  "prefer checksummed"
43         
44         attachment_update(
45                 {id}
46                 {exim_msg_id}
47                 {mailfort_msg_sig}
48                 {file_size}
49                 {created} // message date..
50                 {chksum}
51                 {filename),
52         {mime_type}
53         )
54         attachment_update_store(
55                         {id}
56                         {stored_filename}
57         )
58
59
60 */ 
61
62 // valac --pkg gmime --vapi
63 /*
64
65 // http://www.fromdual.com/mysql-vala-program-example << check mysql if this does not work.
66
67  valac  -g --vapidir=. --thread  strip.vala   --vapidir=../vapi \
68      --pkg glib-2.0 --pkg mysql --pkg gio-2.0 --pkg posix --pkg gmime-2.6 \
69       --Xcc=-lmysqlclient  -v \
70        -o /tmp/strip
71 */ 
72  
73 public class StripApplication : GLib.Application {
74
75         public static string? opt_path = null;
76         public static string? opt_file = null;  
77         public static string? opt_target_path = null;
78         public static string? opt_db_host = "127.0.0.1";
79         public static string? opt_db_name = null;       
80         public static string? opt_db_user = null;               
81         public static string? opt_db_pass = null;               
82
83         public static int    opt_limit = -1;
84
85         public static bool      opt_is_extracting = false;
86         public static bool      opt_is_replacing = false;
87         public static bool      opt_scan_imap  = false; 
88         public static bool      opt_scan_mailfort  = false;     
89         public static bool              opt_dump = false;       
90         public static bool              opt_debug = false; 
91         
92         public static bool opt_debug_sql = false;       
93         public static string? opt_replace_link = null;
94         
95         
96         public const GLib.OptionEntry[] options = {
97                 
98                 { "debug", 0, 0, OptionArg.NONE, ref opt_debug, "show debug messages for components", null },
99                 { "debug-sql", 0, 0, OptionArg.NONE, ref opt_debug_sql, "debug the SQL statements", null },         
100
101                 { "path", 0, 0, OptionArg.STRING, ref opt_path, "Directory where email to be parsed is", null },        
102                 { "file", 0, 0, OptionArg.STRING, ref opt_file, "A specific file to be parsed", null }, 
103
104                 { "target-path", 0, 0, OptionArg.STRING, ref opt_target_path, "Directory where attachments are to be put", null },
105
106                 { "link", 0, 0, OptionArg.STRING, ref opt_replace_link, "url for the replement link: eg. http://www.mysite.com/xxxx/%s", null },         
107                         
108                 { "host", 0, 0, OptionArg.STRING, ref opt_db_host, "Mysql host (default localhost)", null },    
109                 { "name", 0, 0, OptionArg.STRING, ref opt_db_name, "Mysql database name REQUIRED", null },      
110                 { "user", 0, 0, OptionArg.STRING, ref opt_db_user, "Mysql database user REQUIRED", null },      
111                 { "pass", 0, 0, OptionArg.STRING, ref opt_db_pass, "Mysql database password (default empty)", null },            
112
113                 { "extract", 0, 0, OptionArg.NONE, ref opt_is_extracting, "Should attachments be extracted (default NO)", null },
114                 { "replace", 0, 0, OptionArg.NONE, ref opt_is_replacing, "Should attachments be replaced (default NO)", null },
115                 { "dump", 0, 0, OptionArg.NONE, ref opt_dump, "Print the replaced mail contents to stdout", null },         
116
117                 { "limit", 0, 0, OptionArg.INT, ref opt_limit, "stop after X number of messages with attachments have been processed", null },         
118
119                 { "scan-imap", 0, 0, OptionArg.NONE, ref opt_scan_imap, "scan an imap tree", null },
120                 { "scan-mailfort", 0, 0, OptionArg.NONE, ref opt_scan_mailfort, "scan a mailfort tree", null },  
121                 { null }       
122         };         
123     public StripApplication( string[] args ) 
124     {
125                  Object(
126             application_id: "org.roojs.mailstripper",
127             flags: ApplicationFlags.FLAGS_NONE
128          );
129  
130                         
131          var opt_context =  new GLib.OptionContext ("Mail Stripper");
132                         
133          try {
134                                 
135             opt_context.set_help_enabled (true);
136             opt_context.add_main_entries (options, null);
137             opt_context.parse ( ref  args);
138             //opt_detach = !optx_no_detach;
139                             
140  
141                             
142              // options that have to be set.. bee or hive... (or stop all)
143             if ((!opt_scan_mailfort && !opt_scan_imap) || (opt_scan_mailfort && opt_scan_imap))  {
144                stdout.printf ("You must specify the type of directory tree to scan - either imap or mailfort\n%s",
145                    opt_context.get_help(true, null));
146                GLib.Process.exit(Posix.EXIT_FAILURE);
147             }
148                         
149                          if ((opt_db_name == null || opt_db_name.length < 1 || opt_db_user == null || opt_db_user.length < 1))  {
150                stdout.printf ("You must specify the database name / user \n%s",
151                    opt_context.get_help(true, null));
152                GLib.Process.exit(Posix.EXIT_FAILURE);
153             }
154                          if ((opt_path == null || opt_path.length < 1)   )  {
155                stdout.printf ("You must specify the scan start path\n%s",
156                    opt_context.get_help(true, null));
157                GLib.Process.exit(Posix.EXIT_FAILURE);
158             }
159                         if (opt_replace_link == null || (opt_replace_link.length < 1))  {
160                stdout.printf ("You must specify the link to use in the replacement \n%s",
161                    opt_context.get_help(true, null));
162                GLib.Process.exit(Posix.EXIT_FAILURE);
163             }
164             if ((opt_is_replacing || opt_is_extracting ) && (opt_target_path == null || opt_target_path.length < 1)) {
165                       stdout.printf ("You must specify a target path to put attachments\n%s",
166                    opt_context.get_help(true, null));
167                GLib.Process.exit(Posix.EXIT_FAILURE);
168             }
169             
170             
171          } catch (GLib.OptionError e) {
172             stdout.printf ("error: %s\n", e.message);
173             stdout.printf ("Run '%s --help' to see a full list of available command line options.\n%s", 
174                       args[0], opt_context.get_help(true, null));
175             GLib.Process.exit(Posix.EXIT_FAILURE);
176          }
177         }
178          
179     public static int main(string[] args) 
180     {
181                 
182                 var application = new StripApplication(  args);
183                 
184                 GLib.Log.set_always_fatal(LogLevelFlags.LEVEL_ERROR | LogLevelFlags.LEVEL_CRITICAL); 
185            
186            if (opt_debug || opt_debug_sql) {
187                         GLib.Log.set_handler(null, 
188                         GLib.LogLevelFlags.LEVEL_DEBUG | GLib.LogLevelFlags.LEVEL_WARNING | GLib.LogLevelFlags.LEVEL_INFO, 
189                         (dom, lvl, msg) => {
190                                         print("%s\n", msg);
191                                 }
192                         );
193                 }
194         
195         GMime.init(0);
196                 if (StripApplication.opt_is_replacing) {
197                         StripApplication.opt_is_extracting = true;
198                 }
199   
200                 GLib.debug("scanning folder: %s", opt_path );
201                 
202                 var strip = new Strip( opt_path );
203  
204                 
205                 strip.mysql  = new Mysql.Database();
206                 if (!strip.mysql.real_connect(
207                                 opt_db_host,
208                                 opt_db_user ,
209                                 opt_db_pass == null ? "" : opt_db_pass, //passwd
210                                 opt_db_name, //DB
211                                 3306, // not changable...?
212                                 null
213                         )
214                 ) {
215                         stdout.printf("ERROR %u: Connection failed: %s\n", 
216                                 strip.mysql.errno(), strip.mysql.error()
217                         );
218                         return 1;
219                 }
220         if (opt_file != null) {
221                 strip.base_dir = opt_path;
222                 strip.scan_file( GLib.Path.get_dirname(opt_file),  GLib.Path.get_basename(opt_file));
223                 return 0;
224         }
225
226                 strip.scan_dir(opt_path);
227         
228
229         
230         return 0;
231     }
232 }
233
234 public class Strip : GLib.Object {
235         
236  
237         
238         public string base_dir = "";
239         
240         public Mysql.Database mysql;
241         
242         int processed = 0;
243     
244     uint64 used_space_before = 0;
245     uint64 used_space_after = 0;
246     
247     
248     public Strip(string base_dir)
249     {
250         this.base_dir = base_dir;
251     }
252     
253     public void handle_part(GMime.Object parent, GMime.Object mime_obj)
254     {
255                 if (mime_obj is GMime.Part) {
256                    var  p = (GMime.Part)mime_obj;
257                         var ct = p.get_content_type();
258                         var cd = p.get_content_disposition();
259                         
260                         var sid = p.get_header("X-strip-id");
261                     if (sid != null && sid.length > 0) {
262                         this.update_attachment_db(p);
263                             GLib.debug("Skip attachment replace - it's already been done");
264                         return;
265                         }
266                         
267                         if (cd == null || cd.get_disposition().down() != "attachment") {
268                                 return;
269                         }
270                         if (ct.get_media_type() == "text") {
271                                 return;
272                         }
273                         if (ct.to_string() == "application/pgp-encrypted") {
274                                 return;
275                         }
276                         if (ct.to_string() == "application/pgp-keys") {
277                                 return;
278                         }
279                         if (p.get_filename() == null) {
280                                 return;
281                         }
282                          // print("got part %s\n", ct.to_string());
283                          if (parent is GMime.Multipart) {
284                                 
285                                 this.replace_attachment(((GMime.Multipart)parent), p);
286                                 // remove it !?
287
288                           }
289
290
291                         return;
292                 }
293                 if (mime_obj is GMime.Multipart) {
294                         
295
296                         var  mp = (GMime.Multipart)mime_obj;
297                         //var ct = mp.get_content_type();
298
299                         //print("got multi-part %s\n", ct.to_string());
300                         for (var i = 0; i< mp.get_count(); i++) { 
301                           var mo = mp.get_part(i);
302                           this.handle_part(mime_obj,mo);
303                         }
304                    // ((GMime.Multipart)mime_obj).foreach((sub_obj) => {
305                    //     Strip.handle_part(sub_obj);
306                 //
307                    // });
308
309
310                         return;
311                 }
312
313                 if (mime_obj is GMime.MessagePart) {
314                         var msg = ((GMime.MessagePart)mime_obj).get_message();
315                         msg.foreach((subobj) => {
316                          this.handle_part(msg,subobj);
317                     });
318                 
319                         //print("got message-part\n");
320                         return;
321                 }
322                 
323                 if (mime_obj is GMime.Message) {
324                         var mp = ((GMime.Message) mime_obj).get_mime_part();
325
326                         if (!(mp is GMime.Multipart)) {
327                                 GLib.debug("get mimepart does not return a Multipart?");
328                                 return;
329                         }
330                         
331                         var mpc = ((GMime.Multipart)mp).get_count();
332                         
333                         //GLib.debug("Message has %d parts", mpc); 
334                         for (var i =0 ; i < mpc; i++) {
335                                 //GLib.debug("Getting part %d", i); 
336                                 var submime_obj = ((GMime.Multipart)mp).get_part(i);
337                         this.handle_part(mp,submime_obj);                       
338                     }
339                         print("got message??\n");
340                         return;
341                 }
342                 
343                 print("got something else\n");
344
345
346     }
347     public void update_attachment_db(GMime.Part attachment)
348     {
349         // only called when we have an sid...
350         var sid = attachment.get_header("X-strip-id");
351         if (sid == null || sid.length < 1) {
352                 GLib.debug("Strange - update attachment db called ?");
353                 return;
354         }
355         this.query("""
356                 SELECT attachment_update(
357                                 %d, -- in_id INT(11),
358                                 '%s', -- in_mime_type varchar(255),
359                                 %d, -- in_mime_size int(11),
360                                 '%s', -- in_created DATETIME,
361                                 '%s' -- in_mailfort_sig varchar(64)
362                                 
363                     )""
364         
365                                  
366               """.printf(
367                         int.parse(sid),
368                         "", // this will be ignored..
369                         0, // this will be ingored..
370                                 this.created_date,
371                                 this.mysql_escape(this.active_message_x_mailfort_sig)
372               
373               )
374                 );
375         
376         
377     
378     }
379     
380     
381     public void replace_attachment(GMime.Multipart parent, GMime.Part attachment)
382     {
383         var sid = attachment.get_header("X-strip-id");
384         if (sid != null && sid.length > 0) {
385                 GLib.debug("Skip attachment replace - it's already been done");
386                 return;
387         }
388         
389         var c = attachment.get_content_object();
390         
391         var filename = attachment.get_filename().replace("/", "-");
392         var fn = GLib.Environment.get_tmp_dir() +
393                         "/"+ this.active_name + "."+   filename;
394
395             var outfile = new GMime.StreamFile.for_path(fn, "w");
396             outfile.set_owner(true);
397             var file_size = (int) c.write_to_stream(outfile);
398             var chksum = this.md5_file(fn);
399             outfile.flush();
400             outfile = null;
401         
402         if (file_size == 0) {
403
404                 GLib.debug("ERROR - file size of write to stream returned 0?");
405                 Posix.unlink(fn);               
406                 return;
407         }
408         
409         
410         
411  
412         var mime_type= attachment.get_content_type().to_string();
413         // at this point we have to do our database magic...
414         //filesize / name / date / checksum / mimetype -- into mailfort should be OK.
415         
416         this.query("""
417                 SELECT 
418                 
419                 attachment_init(
420                                 '%s', -- in_msgid VARCHAR(32),
421                                 '%s', -- in_checksum VARCHAR(64),
422                                 '%s', -- in_mime_filename varchar(255)
423                                 %d -- filesize
424                         ) as id 
425                         
426           """.printf(
427                         this.mysql_escape(this.active_message_exim_id),
428                         chksum,
429                         this.mysql_escape( attachment.get_filename() ), // what is thsi is invalid?
430                          file_size)
431                 );
432                 var file_id = "0";
433         var rs = mysql.use_result();
434  
435                 var row = rs.fetch_row();
436                 
437                 var target_fn = "";
438                 
439                 //var create_dir = this.created_dir;
440                 
441                 
442                 if (rs == null  || rs.num_rows() < 1) {
443                         GLib.debug("ERROR - file size of write to stream returned 0?");
444                 Posix.unlink(fn);               
445                 return;
446                 
447                 }
448                         file_id =  row[0];
449                         //create_dir = row[1];
450                         //GLib.debug("msgid %s", row[2]);
451  
452                         this.used_space_after += file_size;
453                         if (StripApplication.opt_is_extracting) {
454                                 target_fn = StripApplication.opt_target_path + "/" + this.created_dir +"/"+ file_id  + "-" + filename;
455                         } 
456                         
457                         
458                 } else {
459                 
460                         GLib.debug("fn = %s, m5=%s, id= %s", filename, mime_type, this.active_message_id);
461                         this.query("""
462                         
463                         SELECT attachment_update(
464                                 %d, -- in_id INT(11),
465                                 '%s', -- in_mime_type varchar(255),
466                                 %d, -- in_mime_size int(11),
467                                 '%s', --in_created DATETIME,
468                                 '%s', -- in_mailfort_sig varchar(64)
469                                 
470                                 ) as result
471                       """.printf(
472                       
473                                 this.mysql_escape(this.active_message_exim_id), this.mysql_escape(this.active_message_x_mailfort_sig),
474                                 "",
475                                 "attachment",
476                                  file_size,
477                                  
478                                 this.mysql_escape(this.active_message_exim_id), // msgid ?
479                                 this.mysql_escape(this.active_message_exim_id), this.mysql_escape(this.active_message_x_mailfort_sig), // maillog_id
480                                 this.created_date, // delivered (from lookup)
481                                  
482                                          chksum,
483                                          file_size,
484                                          "", // filled in after we find out the id..
485                                          
486                                          this.created_date,
487                                          this.mysql_escape(filename),
488                                          this.mysql_escape(mime_type) 
489                                          
490  
491                       
492                       
493                       )
494                         );
495                         this.used_space_after += file_size;
496                         
497                         var file_id_real = this.mysql.insert_id();
498                         GLib.debug("Got file_id = %d\n", (int)file_id_real);                    
499                         if (file_id_real == 0) {
500                                 GLib.Process.exit(1);
501                         }
502                         file_id = "%d".printf((int)file_id_real);
503                         
504                         
505
506                    if (StripApplication.opt_is_extracting) {
507                                 target_fn = StripApplication.opt_target_path + "/" + this.created_dir +"/"+ file_id  + "-" + filename;
508                         } 
509                     
510                     var stored =  "/" + this.created_dir +"/"+ file_id  + "-" + filename;
511                     
512                         this.query("""
513                                 UPDATE
514                                         Attachment
515                                 SET
516                                         stored_filename = '%s'
517                                 WHERE
518                                         id = %s
519                         """.printf(
520                                 this.mysql_escape( stored),
521                                 file_id
522                         ));
523                 
524                 } 
525                 
526         var rep = new GMime.Part.with_type("text","html");
527         // we have to set up a redirect server - to redirect hpasite... to their internal service..
528         rep.set_filename(filename);
529         var txt = "<html><body>"+
530             "<a href=\"" + StripApplication.opt_replace_link + "/" +
531                         file_id + "/" + create_dir + "/"+chksum+"/"+ GLib.Uri.escape_string( filename) +"\">" + 
532             GLib.Uri.escape_string( filename) + // fixme needs html escaping...
533             "</a>" +
534             "</body></html>";
535
536         rep.get_content_type().set_parameter("charset", "utf-8");
537                 rep.set_header("X-strip-id", file_id);
538                 rep.set_header("X-strip-content-name",  filename);                              
539                 rep.set_header("X-strip-path", create_dir + "/" + file_id + "-" + filename);            
540                 rep.set_header("X-strip-content-type", mime_type);              
541         var stream =  new GMime.StreamMem.with_buffer(txt.data);
542         var con = new GMime.DataWrapper.with_stream(stream,GMime.ContentEncoding.DEFAULT);
543
544         rep.set_content_object(con);
545         GLib.debug("Replacing Attachment with HTML");
546         parent.replace(parent.index_of(attachment), rep);
547                 this.has_replaced = true;
548                  
549                 if (StripApplication.opt_is_extracting && target_fn.length > 0) {
550                         var dir = GLib.Path.get_dirname(target_fn);
551                         if (!FileUtils.test (dir, FileTest.IS_DIR)) {
552                                 GLib.DirUtils.create_with_parents(dir, 0755);
553                         }
554                         GLib.debug("Creating file %s", target_fn);
555                         if (!FileUtils.test (target_fn, FileTest.EXISTS)) {
556                                 Posix.link(fn, target_fn);
557                         }
558                 } else { 
559                         GLib.debug("Skipping extraction %s", target_fn);
560                 }
561                 Posix.unlink(fn);
562                 
563
564
565     }
566     
567     public int query(string str)
568     {
569         if (StripApplication.opt_debug_sql) {
570                 GLib.debug("SQL: %s\n", str);
571                 }
572         
573         var rc=  this.mysql.query(str);         
574         if ( rc != 0 ) {
575
576                     GLib.debug("ERROR %u: Query failed: %s\n", this.mysql.errno(), this.mysql.error());
577                 }
578                 return rc;
579         }
580     
581     public string mysql_escape(string str)
582     {
583             unichar[] value_escaped = new unichar[str.length * 2 + 1];
584                 this.mysql.real_escape_string ((string) value_escaped, str, str.length);
585                 return (string) value_escaped;
586     }
587     
588     public string  md5_file(string fn) {
589               Checksum checksum = new Checksum (ChecksumType.MD5);
590
591               FileStream stream = FileStream.open (fn, "rb");
592               uint8 fbuf[100];
593               size_t size;
594
595               while ((size = stream.read (fbuf)) > 0) {
596                       checksum.update (fbuf, size);
597               }
598
599               unowned string digest = checksum.get_string ();
600               return digest;
601     }
602
603         string active_path = "";    
604     string active_name = "";
605     string active_message_id = "";
606     string active_message_x_mailfort_sig = "";
607     string active_message_exim_id = "";
608     bool has_replaced = false;
609     string created_date = ""; // should be YYYY-mm-dd
610     string created_dir = ""; // should be YYY/mm/dd
611     
612     public void scan_file(string path, string name)
613     {
614                 GLib.debug("Scan: %s/%s", path,name); 
615                 
616                 this.has_replaced = false; 
617         this.active_path = path;
618         this.active_name = name;
619         this.active_message_id = "";
620
621         this.created_dir = this.active_path.substring(this.base_dir.length + 1 );
622                 this.created_date = this.created_dir.replace("/", "-");
623         
624         var file_size = (int) File.new_for_path(path +"/" + name)
625                                         .query_info(GLib.FileAttribute.STANDARD_SIZE,GLib.FileQueryInfoFlags.NONE,null)
626                                         .get_size();
627                                                
628         this.used_space_before += file_size;
629         
630         var stream = new GMime.StreamFs.for_path (path +"/" + name,Posix.O_RDONLY, 0);
631         //stream.set_owner(true);
632         var parser = new GMime.Parser.with_stream(stream);
633         var message = parser.construct_message();
634  
635                 if (message == null) {
636                         GLib.debug("Could not parse file? %s/%s", path,name);
637                 this.used_space_after += file_size;                     
638                 return;
639                 }       
640
641
642                 // check : - is message over a year old?                
643                 // get various msg info..
644                 this.active_message_id = message.get_message_id();
645                 this.active_message_x_mailfort_sig = message.get_header("x-mailfort-sig");
646                 var recvd = message.get_header("received");
647                 this.active_message_exim_id = "";
648                 if (recvd != null && recvd.length > 1) {
649                         GLib.debug("RECV: %s", recvd);
650                         var lines = recvd.split("\t");
651                         for (var i = 0; i < lines.length;i++) {
652                                 var bits = lines[i].strip().split(" ");
653                                 if (bits[0] == "id") {
654                                         this.active_message_exim_id = bits[1];
655                                 }
656                         }
657                 }
658                 GLib.debug("Message DATA:\n mid: %s\nmailfort: %s \nexim_id: %s",
659                         this.active_message_id,
660                         this.active_message_x_mailfort_sig,
661                         this.active_message_exim_id
662                 );
663                  
664                         
665                 // DATE?
666                 
667                 var mp = message.get_mime_part();
668
669                 if (!(mp is GMime.Multipart)) {
670                         GLib.debug("get mimepart does not return a Multipart?");
671                 this.used_space_after += file_size;                                             
672                         return;
673                 }
674                 
675                 var mpc = ((GMime.Multipart)mp).get_count();
676                 
677                 //GLib.debug("Message has %d parts", mpc); 
678                 for (var i =0 ; i < mpc; i++) {
679                         //GLib.debug("Getting part %d", i); 
680                         var mime_obj = ((GMime.Multipart)mp).get_part(i);
681             this.handle_part(mp,mime_obj);                      
682         }
683                 
684         parser= null;
685
686       //  stream.set_owner(false);
687             //stream.close();
688         stream = null;//.close();
689         
690         
691                 if (!this.has_replaced) {
692                         this.used_space_after += file_size;
693                         GLib.debug("skpping write file - no replacement occured");
694                         return;
695                 }
696                 string tmpfile = "";
697                 GMime.Stream outstream = new GMime.StreamNull();
698                 if (StripApplication.opt_is_replacing) {
699                 
700                         tmpfile = GLib.Environment.get_tmp_dir() +"/" + name;
701                 outstream = new GMime.StreamFile.for_path (tmpfile,"w");
702                 ((GMime.StreamFile)outstream).set_owner(true);
703         }
704                 if (StripApplication.opt_dump) {
705                         outstream = new GMime.StreamMem();
706         }
707         
708         file_size = (int) message.write_to_stream(outstream);
709         if (StripApplication.opt_is_replacing) {
710                 ((GMime.StreamFile)outstream).set_owner(false);
711         }
712                 if (StripApplication.opt_dump) {
713                         var ua = ((GMime.StreamMem)outstream).get_byte_array().data;
714                         print("%s\n", (string) ua);
715                 }        
716         message = null;
717         outstream.flush();
718         outstream.close();
719         GLib.debug("finished writing output %d", file_size);
720
721         //
722         
723           
724         this.used_space_after += file_size;
725         
726         
727         if (StripApplication.opt_is_replacing) {
728                 Posix.unlink(path +"/" + name);         
729                 GLib.debug("copy tmp file %s to %s" , tmpfile, path +"/" + name);               
730                 Posix.link(tmpfile, path +"/" + name);
731                 Posix.unlink(tmpfile);
732                 }
733         this.processed++;
734         
735         if (StripApplication.opt_limit > -1 && this.processed >= StripApplication.opt_limit) {
736                 GLib.debug("Reached replacement limit");
737                 Posix.exit(1);
738         }
739         
740         
741         
742         
743     }
744     
745     
746     public void scan_dir(string path)
747     {
748         var f = File.new_for_path(path);
749                 FileEnumerator file_enum;
750         var cancellable = new Cancellable ();
751         try {      
752             file_enum = f.enumerate_children(
753                 FileAttribute.STANDARD_DISPLAY_NAME + "," +   FileAttribute.STANDARD_TYPE,
754                         FileQueryInfoFlags.NOFOLLOW_SYMLINKS,  // FileQueryInfoFlags.NONE,
755                         cancellable
756                 );
757         } catch (Error e) {
758                 GLib.debug("Got error scanning dir? %s", e.message);
759             // FIXME - show error..
760             return;
761         }
762         FileInfo next_file;
763          
764         while (cancellable.is_cancelled () == false ) {
765             try {
766                 next_file = file_enum.next_file (cancellable);
767             } catch(Error e) {
768                 GLib.debug("error getting next file? %s", e.message);
769                 break;
770             }
771
772             if (next_file == null) {
773                 break;
774             }
775
776
777             if (next_file.get_file_type() != FileType.DIRECTORY) {
778                 
779                 if (next_file.get_display_name()[0] == ',') {
780                         continue;
781                 }
782                 
783                 this.scan_file(path , next_file.get_display_name());
784                 this.report_state("After scanning %s/%s".printf(path , next_file.get_display_name()));
785                 continue;
786             }
787
788
789             //stdout.printf("Monitor.monitor: got file %s : type :%u\n",
790             //        next_file.get_display_name(), next_file.get_file_type());
791
792
793             if (next_file.get_is_symlink()) {
794                 next_file = null;
795                 continue;
796             }
797             
798             var ds = next_file.get_display_name();
799             if (ds[0] == '.') {
800                 next_file = null;
801                 continue;
802             }
803             if (ds == "attachments") {
804                         continue;
805                 }
806             
807             
808             var sp = path+"/"+next_file.get_display_name();
809             // skip modules.
810             //print("got a file : " + sp);
811          
812             next_file = null;
813             
814             
815             this.scan_dir(sp);
816             
817         }
818     
819     
820     }
821     void report_state(string msg) 
822     {
823         // Saved: 2G  Original 10G : 20%
824         GLib.debug("Saved : %s (%.1f%%) | Original %s | %s", 
825                         GLib.format_size(this.used_space_before - this.used_space_after), 
826                         100f * ((1f * (this.used_space_before - this.used_space_after)) / (this.used_space_before * 1f)), 
827                         GLib.format_size(this.used_space_before),                       
828                         msg
829                 );
830         
831         }
832         
833         
834
835 }