blob: 26db74c5a73d7c61b8585fe1da3721b2edf14931 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, you can obtain one at http://mozilla.org/MPL/2.0/. */
/* globals gDEPTH */
if (typeof gDEPTH == "undefined") {
do_throw("gDEPTH must be defined when using passwordStorage.js");
}
/**
* Use the given storage database as the current signon database.
*
* @returns {Promise} Promive for when the storage database is usable.
*/
function setupForPassword(storageName) {
let keyDB = do_get_file(gDEPTH + "mailnews/data/key4.db");
keyDB.copyTo(do_get_profile(), "key4.db");
let signons = do_get_file(gDEPTH + "mailnews/data/" + storageName);
signons.copyTo(do_get_profile(), "logins.json");
return Services.logins.initializationPromise;
}
|