diff --git a/enzevalos_iphone/AuthenticationView.swift b/enzevalos_iphone/AuthenticationView.swift
index ca9a99d343125daa2e59bd200054060419e0be5c..69807630a78ba32fbaffbcaaf9dfd12c6f31b332 100644
--- a/enzevalos_iphone/AuthenticationView.swift
+++ b/enzevalos_iphone/AuthenticationView.swift
@@ -211,12 +211,11 @@ struct LoginAdvancedSection: View{
                 ForEach(0..<encryptionOptions.count) { i in
                     Text(self.encryptionOptions[i]).tag(i)
                         .onTapGesture {
-                            print("Tap!")
-                        if !s {
-                            self.imapEncryption = i
-                        } else {
-                            self.smtpEncryption = i
-                        }
+                            if !s {
+                                self.imapEncryption = i
+                            } else {
+                                self.smtpEncryption = i
+                            }
                     }
                 }
             }
diff --git a/enzevalos_iphone/SwiftUI/Compose/ComposeView.swift b/enzevalos_iphone/SwiftUI/Compose/ComposeView.swift
index 937ceb3fd6d33f013050ec9f272a0d1df42db7a5..ff007ceaeecdde5aa3ad8e7696fa69cd792b3430 100644
--- a/enzevalos_iphone/SwiftUI/Compose/ComposeView.swift
+++ b/enzevalos_iphone/SwiftUI/Compose/ComposeView.swift
@@ -130,7 +130,6 @@ struct RecipientField: View {
             // and Bcc fields getting collapsed again despite the
             // first recipient clearly getting rendered as a blue
             // capsule in the ForEach loop above. 🤔🤔🤔
-            print(model.selectedContacts.count)
         }
         .frame(width: 200)              // TODO: Stretch dynamically over available horizontal space
         .autocapitalization(.none)      //       .frame(maxWidth: .infinity) somehow doesn't work
diff --git a/enzevalos_iphone/SwiftUI/Read/Tabbed Views/SecurityBriefingView.swift b/enzevalos_iphone/SwiftUI/Read/Tabbed Views/SecurityBriefingView.swift
index 1ea78852bf1656a5d6d86d28818389572ffd8f32..003dd869ed924465dfbc4a1efc7e573c9df9cca4 100644
--- a/enzevalos_iphone/SwiftUI/Read/Tabbed Views/SecurityBriefingView.swift	
+++ b/enzevalos_iphone/SwiftUI/Read/Tabbed Views/SecurityBriefingView.swift	
@@ -140,12 +140,7 @@ struct SecurityBriefingView<M: DisplayMail>: View {
     }
     
     func choseAction (action: ButtonAction) {
-           /* TODO guard let coord = AppDelegate.getAppDelegate().readViewCoordinator else {
-               print("No coordinator!")
-               return
-           }
-           coord.makeAction(action: action)
-       */}
+    }
 }
 
 struct WarningView: View {
@@ -205,11 +200,6 @@ struct WarningView: View {
     }
     
     func choseAction (action: ButtonAction) {
-        /* TODO guard let coord = AppDelegate.getAppDelegate().readViewCoordinator else {
-            print("No coordinator!")
-            return
-        }
-        coord.makeAction(action: action) */
     }
 }
 
diff --git a/enzevalos_iphone/SwiftUI/Read/Tabbed Views/SenderViewMain.swift b/enzevalos_iphone/SwiftUI/Read/Tabbed Views/SenderViewMain.swift
index 5426af55d95a15bb985fc8c0210abf361465485b..2549d1d006f7af714e4e6096d0bf78dfec1b6b8b 100644
--- a/enzevalos_iphone/SwiftUI/Read/Tabbed Views/SenderViewMain.swift	
+++ b/enzevalos_iphone/SwiftUI/Read/Tabbed Views/SenderViewMain.swift	
@@ -156,11 +156,7 @@ struct SenderViewMain <M: DisplayMail>: View {
     }
     
     private func goToContact(contact: M.C) {
-        /* guard let con = contact.keyRecord else {
-         print("No record...")
-         return
-         }
-         AppDelegate.getAppDelegate().readViewCoordinator?.pushContactView(contact: con) */
+       // Tbd...
     }
 }