refactor: use imap and smtp streams from toolbox

This commit is contained in:
Clément DOUIN
2026-03-14 14:05:11 +01:00
parent aa23a7a2c8
commit b77a54e5dc
49 changed files with 449 additions and 792 deletions
+3 -1
View File
@@ -20,7 +20,9 @@ fn main() {
let config_paths = cli.config_paths.as_ref();
let account_name = cli.account.name.as_deref();
let result = cli.command.exec(&mut printer, config_paths, account_name);
let result = cli
.command
.execute(&mut printer, config_paths, account_name);
ErrorReport::eval(&mut printer, result)
}