ソースを参照

fixed a bug with result and maildir creation on the first run

Yurii Sokolovskyi 1 日 前
コミット
e8f951b2f5
1 ファイル変更4 行追加0 行削除
  1. 4 0
      src/main.rs

+ 4 - 0
src/main.rs

@@ -399,6 +399,10 @@ async fn run(){
     // parse args from CLI
     parse_args();
 
+    // create all folders
+    fs::create_dir_all(Config::global().out_dir.clone()).unwrap();
+    fs::create_dir_all(Config::global().maildir.clone()).unwrap();
+
     // monitor the sonic server
     SONIC_MONITOR.run();