From 9856c5297ff9cc5873f2975f7cd132a4ded15efc Mon Sep 17 00:00:00 2001 From: "B. Petersen" Date: Fri, 26 Jul 2024 00:19:20 +0200 Subject: [PATCH] remove summary of questionable use; we never had that on android/desktop and 'log' shows the same information --- .../AccountSetup/AccountSetupController.swift | 18 +----------------- 1 file changed, 1 insertion(+), 17 deletions(-) diff --git a/deltachat-ios/Controller/AccountSetup/AccountSetupController.swift b/deltachat-ios/Controller/AccountSetup/AccountSetupController.swift index e01834324..e459ef95c 100644 --- a/deltachat-ios/Controller/AccountSetup/AccountSetupController.swift +++ b/deltachat-ios/Controller/AccountSetup/AccountSetupController.swift @@ -341,23 +341,7 @@ class AccountSetupController: UITableViewController, ProgressAlertHandler { if sections[section] == basicSection { return String.localized("login_no_servers_hint") } else if sections[section] == advancedSection { - if advancedSectionShowing && dcContext.isConfigured() { - var info = String.localized("used_settings") + "\n" - info += "IMAP " - info += SecurityConverter.getSocketName(value: Int32(dcContext.getConfigInt("mail_security"))) + " " - info += (dcContext.getConfig("configured_mail_user") ?? "unset") + ":***@" - info += (dcContext.getConfig("configured_mail_server") ?? "unset") + ":" - info += (dcContext.getConfig("configured_mail_port") ?? "unset") + "\n" - info += "SMTP " - info += SecurityConverter.getSocketName(value: Int32(dcContext.getConfigInt("send_security"))) + " " - info += (dcContext.getConfig("configured_send_user") ?? "unset") + ":***@" - info += (dcContext.getConfig("configured_send_server") ?? "unset") + ":" - info += (dcContext.getConfig("configured_send_port") ?? "unset") + "\n\n" - info += String.localized("login_subheader") - return info - } else { - return String.localized("login_subheader") - } + return String.localized("login_subheader") } else { return nil }