summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/components/mail/listing.rs8
-rw-r--r--src/conf/accounts.rs2
2 files changed, 7 insertions, 3 deletions
diff --git a/src/components/mail/listing.rs b/src/components/mail/listing.rs
index 3e6f110b..d3fe1b03 100644
--- a/src/components/mail/listing.rs
+++ b/src/components/mail/listing.rs
@@ -287,7 +287,7 @@ pub trait MailListingTrait: ListingTrait {
handle,
channel,
on_finish: None,
- logging_level: melib::LoggingLevel::DEBUG,
+ logging_level: melib::LoggingLevel::INFO,
},
);
}
@@ -326,7 +326,7 @@ pub trait MailListingTrait: ListingTrait {
handle,
channel,
on_finish: None,
- logging_level: melib::LoggingLevel::DEBUG,
+ logging_level: melib::LoggingLevel::INFO,
},
);
}
@@ -750,6 +750,10 @@ impl Component for Listing {
Action::Listing(a @ ListingAction::SetSeen)
| Action::Listing(a @ ListingAction::SetUnseen)
| Action::Listing(a @ ListingAction::Delete)
+ | Action::Listing(a @ ListingAction::CopyTo(_))
+ | Action::Listing(a @ ListingAction::MoveTo(_))
+ | Action::Listing(a @ ListingAction::CopyToOtherAccount(_, _))
+ | Action::Listing(a @ ListingAction::MoveToOtherAccount(_, _))
| Action::Listing(a @ ListingAction::Tag(_)) => {
let focused = self.component.get_focused_items(context);
self.component.perform_action(context, focused, a);
diff --git a/src/conf/accounts.rs b/src/conf/accounts.rs
index d4fecd9c..0d3ea9f6 100644
--- a/src/conf/accounts.rs
+++ b/src/conf/accounts.rs
@@ -1793,7 +1793,7 @@ impl Account {
mailboxes.remove(&parent_hash).unwrap();
});
}
- let status = MailboxStatus::Parsing(0, 0);
+ let status = MailboxStatus::default();
self.mailbox_entries.insert(
mailbox_hash,