gecko-dev/mailnews/imap/public/nsIImapServerSink.idl

56 строки
2.2 KiB
Plaintext
Исходник Обычный вид История

1999-08-28 19:54:13 +04:00
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*-
*
* The contents of this file are subject to the Netscape Public
* License Version 1.1 (the "License"); you may not use this file
* except in compliance with the License. You may obtain a copy of
* the License at http://www.mozilla.org/NPL/
1999-08-28 19:54:13 +04:00
*
* Software distributed under the License is distributed on an "AS
* IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
* implied. See the License for the specific language governing
* rights and limitations under the License.
1999-08-28 19:54:13 +04:00
*
* The Original Code is mozilla.org code.
*
* The Initial Developer of the Original Code is Netscape
1999-08-28 19:54:13 +04:00
* Communications Corporation. Portions created by Netscape are
* Copyright (C) 1999 Netscape Communications Corporation. All
* Rights Reserved.
*
* Contributor(s):
1999-08-28 19:54:13 +04:00
*/
#include "nsISupports.idl"
#include "MailNewsTypes2.idl"
interface nsIMsgWindow;
interface nsIMsgMailNewsUrl;
1999-08-28 19:54:13 +04:00
[scriptable, uuid(8ec49a08-5cb0-11d3-a52c-0060b0fc04b7)]
1999-08-28 19:54:13 +04:00
interface nsIImapServerSink : nsISupports {
void PossibleImapMailbox(in string folderPath, in wchar hierarchyDelim, in long boxFlags);
1999-08-28 19:54:13 +04:00
void DiscoveryDone();
1999-09-06 02:32:41 +04:00
void OnlineFolderDelete(in string aFolderName);
void OnlineFolderCreateFailed(in string aFolderName);
void OnlineFolderRename(in string oldName, in string newName);
1999-09-07 22:34:32 +04:00
void FolderIsNoSelect(in string aFolderName, out boolean aResult);
1999-09-08 03:48:24 +04:00
void SetFolderAdminURL(in string aFolderName, in string adminUrl);
1999-09-07 22:34:32 +04:00
void SubscribeUpgradeFinished(in boolean bringUpSubscribeUI);
void SetCapability(in unsigned long capability);
1999-09-16 05:32:43 +04:00
void LoadNextQueuedUrl(out boolean urlRun);
1999-08-29 21:35:43 +04:00
void GetImapStringByID(in long aMsgId, out wstring aString);
1999-08-29 21:35:43 +04:00
void FEAlert(in wstring aString);
void FEAlertFromServer(in string aString);
void CommitNamespaces();
void PromptForPassword(out string aString, in nsIMsgWindow aMsgWindow);
void SetUserAuthenticated(in boolean authenticated);
void SetMailServerUrls(in string manageMailAccount, in string manageLists, in string manageFilters);
/* this is a bogus method on this interface but i need it until misc. sink is scriptable.. */
void RemoveChannelFromUrl(in nsIMsgMailNewsUrl aUrl, in unsigned long statusCode);
1999-08-28 19:54:13 +04:00
};