Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions core/src/smtp/parser.rs
Original file line number Diff line number Diff line change
Expand Up @@ -111,6 +111,8 @@ pub fn is_full_inbox(e: &str) -> bool {
|| e.contains("over quota")
// 550 user has too many messages on the server
|| e.contains("too many messages")
// https://newsroom.gmx.net/2017/09/28/unzustellbar-fehlermeldungen-email/
|| e.comtains("exceeded storage allocation")
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

contains, not comtains.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

any updates on this? I'll merge once fixed

}

/// Check if the email account has been disabled or blocked by the email
Expand Down