Skip to content

Commit b96593e

Browse files
authored
fix: Prevent accidental wrong-password-notifications (#6122)
Over the past years, it happend two times that a user came to me worried about a false-positive "Cannot login as ***. Please check if the e-mail address and the password are correct." message. I'm not sure why this happened, but this PR makes the logic for showing this notification stricter: - Before: The notification is shown if connection fails two times in a row, and the second error contains the word "authentication". - Now: The notification is shown if the connection fails two times in a row, and _both_ error messages contain the word "authentication". The second commit just renames `login_failed_once` to `authentication_failed_once` in order to reflect this change.
1 parent d2324a8 commit b96593e

File tree

1 file changed

+27
-24
lines changed

1 file changed

+27
-24
lines changed

src/imap.rs

+27-24
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ pub(crate) struct Imap {
8989

9090
oauth2: bool,
9191

92-
login_failed_once: bool,
92+
authentication_failed_once: bool,
9393

9494
pub(crate) connectivity: ConnectivityStore,
9595

@@ -254,7 +254,7 @@ impl Imap {
254254
proxy_config,
255255
strict_tls,
256256
oauth2,
257-
login_failed_once: false,
257+
authentication_failed_once: false,
258258
connectivity: Default::default(),
259259
conn_last_try: UNIX_EPOCH,
260260
conn_backoff_ms: 0,
@@ -402,7 +402,7 @@ impl Imap {
402402
let mut lock = context.server_id.write().await;
403403
lock.clone_from(&session.capabilities.server_id);
404404

405-
self.login_failed_once = false;
405+
self.authentication_failed_once = false;
406406
context.emit_event(EventType::ImapConnected(format!(
407407
"IMAP-LOGIN as {}",
408408
lp.user
@@ -416,35 +416,38 @@ impl Imap {
416416
let imap_user = lp.user.to_owned();
417417
let message = stock_str::cannot_login(context, &imap_user).await;
418418

419-
let err_str = err.to_string();
420419
warn!(context, "IMAP failed to login: {err:#}.");
421420
first_error.get_or_insert(format_err!("{message} ({err:#})"));
422421

422+
// If it looks like the password is wrong, send a notification:
423423
let _lock = context.wrong_pw_warning_mutex.lock().await;
424-
if !configuring
425-
&& self.login_failed_once
426-
&& err_str.to_lowercase().contains("authentication")
427-
&& context.get_config_bool(Config::NotifyAboutWrongPw).await?
428-
{
429-
let mut msg = Message::new_text(message);
430-
if let Err(e) = chat::add_device_msg_with_importance(
431-
context,
432-
None,
433-
Some(&mut msg),
434-
true,
435-
)
436-
.await
424+
if err.to_string().to_lowercase().contains("authentication") {
425+
if self.authentication_failed_once
426+
&& !configuring
427+
&& context.get_config_bool(Config::NotifyAboutWrongPw).await?
437428
{
438-
warn!(context, "Failed to add device message: {e:#}.");
429+
let mut msg = Message::new_text(message);
430+
if let Err(e) = chat::add_device_msg_with_importance(
431+
context,
432+
None,
433+
Some(&mut msg),
434+
true,
435+
)
436+
.await
437+
{
438+
warn!(context, "Failed to add device message: {e:#}.");
439+
} else {
440+
context
441+
.set_config_internal(Config::NotifyAboutWrongPw, None)
442+
.await
443+
.log_err(context)
444+
.ok();
445+
}
439446
} else {
440-
context
441-
.set_config_internal(Config::NotifyAboutWrongPw, None)
442-
.await
443-
.log_err(context)
444-
.ok();
447+
self.authentication_failed_once = true;
445448
}
446449
} else {
447-
self.login_failed_once = true;
450+
self.authentication_failed_once = false;
448451
}
449452
}
450453
}

0 commit comments

Comments
 (0)