Fixing bug 80296. This fix allows user to new messages for all authenticated accounts with a single cilck. This command canbe triggered from GetAllNewMessages item of GetMsg button drop marker, File|GetNewMessagesFor or shortcut Ctrl+Shift+T. r=morse, mscott sr=alecf

git-svn-id: svn://10.0.0.236/trunk@114342 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
racham%netscape.com 2002-02-13 00:14:28 +00:00
parent c7498c424d
commit 74949c1b3f

View File

@ -36,6 +36,14 @@ interface nsIPasswordManager : nsISupports
void addUser(in string host, in wstring user, in wstring pwd);
void removeUser(in string host, in wstring user);
void removeReject(in string host);
// Takes hostname, username and password as input parameters and returns
// set of filled-in hostname, username and password for the first
// password element match. Empty string is treated as a wild
// card entry and will be considered as a match for any of the input
// parameters.
void findPasswordEntry(inout string hostURI, inout wstring username, inout wstring password);
readonly attribute nsISimpleEnumerator enumerator;
readonly attribute nsISimpleEnumerator rejectEnumerator;
};