Resolve #744 (not active!!)

This commit is contained in:
the-djmaze 2022-12-07 12:24:31 +01:00
parent 8d1290e2c4
commit 94c3fa464d
12 changed files with 276 additions and 41 deletions

View file

@ -22,4 +22,22 @@ export class AccountModel extends AbstractModel {
});
}
/**
* Imports all mail to main account
*//*
importAll(account) {
rl.app.Remote.streamPerLine(line => {
try {
line = JSON.parse(line);
console.dir(line);
} catch (e) {
// OOPS
}
}, 'AccountImport', {
Action: 'AccountImport',
email: account.email
});
}
*/
}