diff --git a/enzevalos_iphone/SwiftUI/Read/ReadViewCoordinator.swift b/enzevalos_iphone/SwiftUI/Read/ReadViewCoordinator.swift
index 573c7482a46fe16fea59ba6fad68347eef93b910..c51807cc3da9994038539dc93acdbca4469a9b3c 100644
--- a/enzevalos_iphone/SwiftUI/Read/ReadViewCoordinator.swift
+++ b/enzevalos_iphone/SwiftUI/Read/ReadViewCoordinator.swift
@@ -76,6 +76,7 @@ class ReadViewCoordinator {
         //TODO: make this work
         Logger.log(delete: mail, toTrash: true)
         AppDelegate.getAppDelegate().mailHandler.move(mails: [mail], from: mail.folder.path, to: UserManager.backendTrashFolderPath)
+        AppDelegate.getAppDelegate().presentInboxViewController()
     }
     
     func archive(mail: PersistentMail){
@@ -98,13 +99,6 @@ class ReadViewCoordinator {
         root.pushViewController(vc, animated: true)
     }
     
-    func pushExportKeyView() {
-        //TODO: make this work
-        let vc = mainStoryboard.instantiateViewController(identifier: "exportKeyFromReadView")
-        root.isToolbarHidden = false
-        root.pushViewController(vc, animated: true)
-    }
-    
     func pushContactView(contact: KeyRecord) {
         let vc = mainStoryboard.instantiateViewController(withIdentifier: ViewID.KeyRecordView.rawValue)
         if let vc = vc as? ContactViewController {
@@ -119,37 +113,6 @@ class ReadViewCoordinator {
         root.present(vc, animated: true)
     }
     
-    func setup(){
-        hideUIKitToolbar()
-        setupNavigationbar()
-    }
-    
-    func reset(){
-        animateBarColor(ThemeManager.defaultColor)
-    }
-    
-    func hideUIKitToolbar(){
-        root.isToolbarHidden = true
-    }
-    
-    func setupNavigationbar(){
-        
-        ///those dont work
-        //root.isNavigationBarHidden=true
-        //root.navigationBar.isHidden=true
-        //root.navigationBar.isTranslucent=true
-        
-        /*if mail.trouble{animateBarColor(ThemeManager.troubleMessageColor()) }
-        else{animateBarColor(mail.isSecure ? ThemeManager.encryptedMessageColor() : ThemeManager.unencryptedMessageColor())}*/
-    }
-    
-    private func animateBarColor(_ c:UIColor){
-        
-        //TODO: why desnt it work? it just jumps
-        UIView.animate(withDuration: 0.3, animations: {
-            self.root.navigationBar.barTintColor = c })
-    }
-    
     /// AskUserToImportSK, ImportSK, ImportPK, MoreInformation, ExportSK, OK, IgnoreWarning, SendPK
     func ignoreMail <M: DisplayMail> (mail: M) {
         guard let m = mail.persistentMail else {