mirror of
https://github.com/the-djmaze/snappymail.git
synced 2026-07-11 00:14:50 +03:00
Resolve #744 (not active!!)
This commit is contained in:
parent
8d1290e2c4
commit
94c3fa464d
12 changed files with 276 additions and 41 deletions
|
|
@ -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
|
||||
});
|
||||
}
|
||||
*/
|
||||
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue