Instant expunge is now the only mode of operation. The expunge semantics have been...
[citadel.git] / citadel / modules / imap / imap_store.c
index 959e1235d783391abf8f6758fd872fccf82f55fb..5685e239225f39a05c5ec8a73cc2e18721e32619 100644 (file)
@@ -195,14 +195,8 @@ void imap_do_store(citimap_command *Cmd) {
        }
 
        free(ss_msglist);
-
-       /*
-        * The following two commands implement "instant expunge" if enabled.
-        */
-       if (config.c_instant_expunge) {
-               imap_do_expunge();
-               imap_rescan_msgids();
-       }
+       imap_do_expunge();              // Citadel always expunges immediately.
+       imap_rescan_msgids();
 }