mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-24 17:37:30 +09:00
Issue #1258 - Part 1: Import mailnews, ldap, and mork from comm-esr52.9.1
This commit is contained in:
parent
23e0d82436
commit
e400f4130a
1564 changed files with 510348 additions and 0 deletions
103
mailnews/base/util/nsMsgIncomingServer.h
Normal file
103
mailnews/base/util/nsMsgIncomingServer.h
Normal file
|
|
@ -0,0 +1,103 @@
|
|||
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
||||
/* 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/. */
|
||||
|
||||
#ifndef nsMsgIncomingServer_h__
|
||||
#define nsMsgIncomingServer_h__
|
||||
|
||||
#include "nsIMsgIncomingServer.h"
|
||||
#include "nsIPrefBranch.h"
|
||||
#include "nsIMsgFilterList.h"
|
||||
#include "msgCore.h"
|
||||
#include "nsIMsgFolder.h"
|
||||
#include "nsIFile.h"
|
||||
#include "nsCOMPtr.h"
|
||||
#include "nsCOMArray.h"
|
||||
#include "nsIPop3IncomingServer.h"
|
||||
#include "nsWeakReference.h"
|
||||
#include "nsIMsgDatabase.h"
|
||||
#include "nsISpamSettings.h"
|
||||
#include "nsIMsgFilterPlugin.h"
|
||||
#include "nsDataHashtable.h"
|
||||
#include "nsIMsgPluggableStore.h"
|
||||
|
||||
class nsIMsgFolderCache;
|
||||
class nsIMsgProtocolInfo;
|
||||
|
||||
/*
|
||||
* base class for nsIMsgIncomingServer - derive your class from here
|
||||
* if you want to get some free implementation
|
||||
*
|
||||
* this particular implementation is not meant to be used directly.
|
||||
*/
|
||||
|
||||
#undef IMETHOD_VISIBILITY
|
||||
#define IMETHOD_VISIBILITY NS_VISIBILITY_DEFAULT
|
||||
|
||||
class NS_MSG_BASE nsMsgIncomingServer : public nsIMsgIncomingServer,
|
||||
public nsSupportsWeakReference
|
||||
{
|
||||
public:
|
||||
nsMsgIncomingServer();
|
||||
|
||||
NS_DECL_THREADSAFE_ISUPPORTS
|
||||
NS_DECL_NSIMSGINCOMINGSERVER
|
||||
|
||||
protected:
|
||||
virtual ~nsMsgIncomingServer();
|
||||
nsCString m_serverKey;
|
||||
|
||||
// Sets m_password, if password found. Can return NS_ERROR_ABORT if the
|
||||
// user cancels the master password dialog.
|
||||
nsresult GetPasswordWithoutUI();
|
||||
|
||||
nsresult ConfigureTemporaryReturnReceiptsFilter(nsIMsgFilterList *filterList);
|
||||
nsresult ConfigureTemporaryServerSpamFilters(nsIMsgFilterList *filterList);
|
||||
|
||||
nsCOMPtr <nsIMsgFolder> m_rootFolder;
|
||||
nsCOMPtr <nsIMsgDownloadSettings> m_downloadSettings;
|
||||
|
||||
// For local servers, where we put messages. For imap/pop3, where we store
|
||||
// offline messages.
|
||||
nsCOMPtr <nsIMsgPluggableStore> m_msgStore;
|
||||
|
||||
/// Helper routine to create local folder on disk if it doesn't exist
|
||||
/// under the account's rootFolder.
|
||||
nsresult CreateLocalFolder(const nsAString& folderName);
|
||||
|
||||
static nsresult GetDeferredServers(nsIMsgIncomingServer *destServer, nsCOMArray<nsIPop3IncomingServer>& aServers);
|
||||
|
||||
nsresult CreateRootFolder();
|
||||
virtual nsresult CreateRootFolderFromUri(const nsCString &serverUri,
|
||||
nsIMsgFolder **rootFolder) = 0;
|
||||
|
||||
nsresult InternalSetHostName(const nsACString& aHostname, const char * prefName);
|
||||
|
||||
nsCOMPtr <nsIFile> mFilterFile;
|
||||
nsCOMPtr <nsIMsgFilterList> mFilterList;
|
||||
nsCOMPtr <nsIMsgFilterList> mEditableFilterList;
|
||||
nsCOMPtr<nsIPrefBranch> mPrefBranch;
|
||||
nsCOMPtr<nsIPrefBranch> mDefPrefBranch;
|
||||
|
||||
// these allow us to handle duplicate incoming messages, e.g. delete them.
|
||||
nsDataHashtable<nsCStringHashKey,int32_t> m_downloadedHdrs;
|
||||
int32_t m_numMsgsDownloaded;
|
||||
|
||||
private:
|
||||
uint32_t m_biffState;
|
||||
bool m_serverBusy;
|
||||
nsCOMPtr <nsISpamSettings> mSpamSettings;
|
||||
nsCOMPtr<nsIMsgFilterPlugin> mFilterPlugin; // XXX should be a list
|
||||
|
||||
protected:
|
||||
nsCString m_password;
|
||||
bool m_canHaveFilters;
|
||||
bool m_displayStartupPage;
|
||||
bool mPerformingBiff;
|
||||
};
|
||||
|
||||
#undef IMETHOD_VISIBILITY
|
||||
#define IMETHOD_VISIBILITY NS_VISIBILITY_HIDDEN
|
||||
|
||||
#endif // nsMsgIncomingServer_h__
|
||||
Loading…
Add table
Add a link
Reference in a new issue