diff --git a/ui/src/components/mail/listing/compact.rs b/ui/src/components/mail/listing/compact.rs index e33589ee6..3106c0831 100644 --- a/ui/src/components/mail/listing/compact.rs +++ b/ui/src/components/mail/listing/compact.rs @@ -63,9 +63,6 @@ impl CompactListing { /// Helper function to format entry strings for CompactListing */ /* TODO: Make this configurable */ fn make_entry_string(e: &Envelope, len: usize, idx: usize) -> String { - if e.subject().contains("https://custory.com") { - eprintln!("it's {:?}", e.subject()); - } if len > 1 { format!( "{} {} {:.85} ({})", diff --git a/ui/src/types/accounts.rs b/ui/src/types/accounts.rs index 1a01dc614..0d2317962 100644 --- a/ui/src/types/accounts.rs +++ b/ui/src/types/accounts.rs @@ -118,9 +118,9 @@ impl Account { let env: &Envelope = mailbox.insert(*envelope); let ref_folders: Vec = self.backend.folders(); return Some(Notification( - Some("New mail".into()), + Some("new mail".into()), format!( - "Subject: {:15}:\n{:15}\nFrom: {:15}", + "{:.15}:\nSubject: {:.15}\nFrom: {:.15}", ref_folders[idx].name(), env.subject(), env.field_from_to_string()