add Mailbox.get(JS)
[org.ibex.mail.git] / src / org / ibex / mail / SqliteMailbox.java
index c6fb377..f58bc19 100644 (file)
@@ -65,6 +65,7 @@ public class SqliteMailbox extends Mailbox.Default implements MailTree {
         try {
             this.file = new File(filename);
             this.db = new SqliteDB(filename);
+            this.db.setFastButDangerous(false);  // actually changes from FULL to ON
             /*
             Class.forName("org.sqlite.JDBC");
             conn = DriverManager.getConnection("jdbc:sqlite:"+filename);