2001-09-29 00:14:13 +04:00
|
|
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
|
|
|
/* ***** BEGIN LICENSE BLOCK *****
|
2004-04-17 22:33:16 +04:00
|
|
|
* Version: MPL 1.1/GPL 2.0/LGPL 2.1
|
2000-01-12 06:30:21 +03:00
|
|
|
*
|
2004-04-17 22:33:16 +04:00
|
|
|
* The contents of this file are subject to the Mozilla 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/MPL/
|
2000-01-12 06:30:21 +03:00
|
|
|
*
|
2001-09-29 00:14: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.
|
2000-01-12 06:30:21 +03:00
|
|
|
*
|
|
|
|
* The Original Code is mozilla.org code.
|
|
|
|
*
|
2004-04-17 22:33:16 +04:00
|
|
|
* The Initial Developer of the Original Code is
|
2001-09-29 00:14:13 +04:00
|
|
|
* Netscape Communications Corporation.
|
|
|
|
* Portions created by the Initial Developer are Copyright (C) 1999
|
|
|
|
* the Initial Developer. All Rights Reserved.
|
2000-01-12 06:30:21 +03:00
|
|
|
*
|
2001-09-29 00:14:13 +04:00
|
|
|
* Contributor(s):
|
2003-04-02 08:18:57 +04:00
|
|
|
* Lorenzo Colitti <lorenzo@colitti.com>
|
2001-09-29 00:14:13 +04:00
|
|
|
*
|
|
|
|
* Alternatively, the contents of this file may be used under the terms of
|
2004-04-17 22:33:16 +04:00
|
|
|
* either of the GNU General Public License Version 2 or later (the "GPL"),
|
|
|
|
* or the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
|
2001-09-29 00:14:13 +04:00
|
|
|
* in which case the provisions of the GPL or the LGPL are applicable instead
|
|
|
|
* of those above. If you wish to allow use of your version of this file only
|
|
|
|
* under the terms of either the GPL or the LGPL, and not to allow others to
|
2004-04-17 22:33:16 +04:00
|
|
|
* use your version of this file under the terms of the MPL, indicate your
|
2001-09-29 00:14:13 +04:00
|
|
|
* decision by deleting the provisions above and replace them with the notice
|
|
|
|
* and other provisions required by the GPL or the LGPL. If you do not delete
|
|
|
|
* the provisions above, a recipient may use your version of this file under
|
2004-04-17 22:33:16 +04:00
|
|
|
* the terms of any one of the MPL, the GPL or the LGPL.
|
2001-09-29 00:14:13 +04:00
|
|
|
*
|
|
|
|
* ***** END LICENSE BLOCK ***** */
|
2000-01-12 06:30:21 +03:00
|
|
|
|
|
|
|
#include "nsISupports.idl"
|
|
|
|
#include "MailNewsTypes2.idl"
|
|
|
|
|
|
|
|
#include "nsIImapProtocol.idl"
|
|
|
|
#include "nsIMailboxSpec.idl"
|
|
|
|
|
2000-03-07 09:38:30 +03:00
|
|
|
interface nsIMsgMailNewsUrl;
|
2001-04-13 07:48:37 +04:00
|
|
|
interface nsIImapMockChannel;
|
2002-02-01 01:08:48 +03:00
|
|
|
interface nsIMsgWindow;
|
2002-08-22 02:55:27 +04:00
|
|
|
interface nsIImapHeaderXferInfo;
|
2000-01-12 06:30:21 +03:00
|
|
|
|
2000-03-07 09:38:30 +03:00
|
|
|
typedef long ImapOnlineCopyState;
|
|
|
|
|
|
|
|
[scriptable, uuid(5f7484b0-68b4-11d3-a53e-0060b0fc04b7)]
|
2001-04-13 07:48:37 +04:00
|
|
|
interface ImapOnlineCopyStateType
|
|
|
|
{
|
2000-01-12 06:30:21 +03:00
|
|
|
const long kInProgress = 0;
|
|
|
|
const long kSuccessfulCopy = 1;
|
2000-01-13 00:42:19 +03:00
|
|
|
const long kSuccessfulMove = 2;
|
2000-01-12 06:30:21 +03:00
|
|
|
const long kSuccessfulDelete = 3;
|
|
|
|
const long kFailedDelete = 4;
|
|
|
|
const long kReadyForAppendData = 5;
|
|
|
|
const long kFailedAppend = 6;
|
|
|
|
const long kInterruptedState = 7;
|
2000-01-13 00:42:19 +03:00
|
|
|
const long kFailedCopy = 8;
|
|
|
|
const long kFailedMove = 9;
|
2001-04-13 07:48:37 +04:00
|
|
|
};
|
2000-01-12 06:30:21 +03:00
|
|
|
|
|
|
|
[scriptable, uuid(3b2dd7e0-e72c-11d2-ab7b-00805f8ac968)]
|
|
|
|
interface nsIImapMailFolderSink : nsISupports {
|
2001-04-13 07:48:37 +04:00
|
|
|
attribute boolean folderNeedsACLListed;
|
|
|
|
attribute boolean folderNeedsSubscribing;
|
|
|
|
attribute boolean folderNeedsAdded;
|
2003-06-07 03:39:20 +04:00
|
|
|
attribute unsigned long aclFlags;
|
2003-06-16 07:27:47 +04:00
|
|
|
attribute long uidValidity;
|
2003-04-02 08:18:57 +04:00
|
|
|
/**
|
|
|
|
* Whether we have asked the server for this folder's quota information.
|
|
|
|
* If the server supports quotas, this occurs when the folder is opened.
|
|
|
|
*/
|
|
|
|
attribute boolean folderQuotaCommandIssued;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Indicates whether the server has provided quota information on this folder.
|
|
|
|
* This attribute can be false if the server does not supports quotas, if the folder
|
|
|
|
* has never been opened, or if there are no storage quotas on this folder.
|
|
|
|
* If it is true, the folder has a storage quota and the folderQuotaUsedKB and
|
|
|
|
* folderQuotaMaxKB attributes are set to the values provided by the server.
|
|
|
|
*/
|
|
|
|
attribute boolean folderQuotaDataIsValid;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The IMAP quota root for this folder, as returned by the GETQUOTAROOT IMAP command.
|
|
|
|
*/
|
2003-06-11 22:28:23 +04:00
|
|
|
attribute ACString folderQuotaRoot;
|
2003-04-02 08:18:57 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Used space, in kilobytes, on this folder's quota root.
|
|
|
|
*/
|
|
|
|
attribute unsigned long folderQuotaUsedKB;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Size, in kilobytes, of this folder's quota root.
|
|
|
|
*/
|
|
|
|
attribute unsigned long folderQuotaMaxKB;
|
2002-10-08 08:19:11 +04:00
|
|
|
readonly attribute boolean shouldDownloadAllHeaders;
|
2001-04-13 07:48:37 +04:00
|
|
|
string GetOnlineDelimiter();
|
2004-03-05 18:59:45 +03:00
|
|
|
void OnNewIdleMessages();
|
2001-04-13 07:48:37 +04:00
|
|
|
// Tell mail master about the newly selected mailbox
|
|
|
|
void UpdateImapMailboxInfo(in nsIImapProtocol aProtocol,
|
|
|
|
in nsIMailboxSpec aSpec);
|
|
|
|
void UpdateImapMailboxStatus(in nsIImapProtocol aProtocol,
|
2000-01-12 06:30:21 +03:00
|
|
|
in nsIMailboxSpec aSpec);
|
2002-08-22 02:55:27 +04:00
|
|
|
void parseMsgHdrs(in nsIImapProtocol aProtocol, in nsIImapHeaderXferInfo aHdrXferInfo);
|
2001-04-13 07:48:37 +04:00
|
|
|
void AbortHeaderParseStream(in nsIImapProtocol aProtocol) ;
|
|
|
|
|
|
|
|
void OnlineCopyCompleted(in nsIImapProtocol aProtocol, in ImapOnlineCopyState aCopyState);
|
2002-03-15 06:29:54 +03:00
|
|
|
void StartMessage(in nsIMsgMailNewsUrl aUrl);
|
|
|
|
void EndMessage(in nsIMsgMailNewsUrl aUrl, in nsMsgKey uidOfMessage);
|
2000-04-19 05:01:51 +04:00
|
|
|
|
2002-03-15 06:29:54 +03:00
|
|
|
void NotifySearchHit(in nsIMsgMailNewsUrl aUrl, in string hitLine);
|
2000-04-19 05:01:51 +04:00
|
|
|
|
2002-03-24 02:01:50 +03:00
|
|
|
void copyNextStreamMessage(in boolean copySucceeded, in nsISupports copyState);
|
|
|
|
// these two hokey methods are needed so we can try to make sure the imap objects are released
|
|
|
|
// on the UI thread. This in turn ensures that the objects the imap object holds on to
|
|
|
|
// are only released / destroyed from the UI thread. This is used for urls and copy state objects now.
|
|
|
|
void prepareToReleaseObject(in nsISupports aISupports);
|
|
|
|
void releaseObject();
|
2001-08-14 03:56:54 +04:00
|
|
|
void closeMockChannel(in nsIImapMockChannel aChannel);
|
|
|
|
void setUrlState(in nsIImapProtocol aProtocol, in nsIMsgMailNewsUrl aUrl, in boolean isRunning, in nsresult status);
|
2002-01-10 05:46:40 +03:00
|
|
|
void releaseUrlCacheEntry(in nsIMsgMailNewsUrl aUrl);
|
2000-01-12 06:30:21 +03:00
|
|
|
};
|