mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-05 00:25:27 +00:00
2588 lines
79 KiB
C++
2588 lines
79 KiB
C++
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
|
/* ***** BEGIN LICENSE BLOCK *****
|
|
* Version: MPL 1.1/GPL 2.0/LGPL 2.1
|
|
*
|
|
* 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/
|
|
*
|
|
* 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.
|
|
*
|
|
* The Original Code is mozilla.org code.
|
|
*
|
|
* The Initial Developer of the Original Code is
|
|
* Netscape Communications Corporation.
|
|
* Portions created by the Initial Developer are Copyright (C) 1998
|
|
* the Initial Developer. All Rights Reserved.
|
|
*
|
|
* Contributor(s):
|
|
* Pierre Phaneuf <pp@ludusdesign.com>
|
|
* David Bienvenu <bienvenu@nventure.com>
|
|
*
|
|
* Alternatively, the contents of this file may be used under the terms of
|
|
* 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"),
|
|
* 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
|
|
* use your version of this file under the terms of the MPL, indicate your
|
|
* 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
|
|
* the terms of any one of the MPL, the GPL or the LGPL.
|
|
*
|
|
* ***** END LICENSE BLOCK ***** */
|
|
|
|
#include "nsMsgIncomingServer.h"
|
|
#include "nscore.h"
|
|
#include "plstr.h"
|
|
#include "prmem.h"
|
|
#include "prprf.h"
|
|
|
|
#include "nsIServiceManager.h"
|
|
#include "nsCOMPtr.h"
|
|
#include "nsXPIDLString.h"
|
|
#include "nsReadableUtils.h"
|
|
#include "nsEscape.h"
|
|
#include "nsISupportsObsolete.h"
|
|
#include "nsISupportsPrimitives.h"
|
|
|
|
#include "nsMsgBaseCID.h"
|
|
#include "nsMsgDBCID.h"
|
|
#include "nsIMsgFolder.h"
|
|
#include "nsIMsgFolderCache.h"
|
|
#include "nsIMsgFolderCacheElement.h"
|
|
#include "nsIMsgWindow.h"
|
|
#include "nsIMsgFilterService.h"
|
|
#include "nsIMsgProtocolInfo.h"
|
|
#include "nsIMsgMailSession.h"
|
|
#include "nsIPrefService.h"
|
|
#include "nsIDocShell.h"
|
|
#include "nsIAuthPrompt.h"
|
|
#include "nsIObserverService.h"
|
|
#include "nsNetUtil.h"
|
|
#include "nsIWindowWatcher.h"
|
|
#include "nsIStringBundle.h"
|
|
#include "nsIMsgHdr.h"
|
|
#include "nsIRDFService.h"
|
|
#include "nsRDFCID.h"
|
|
#include "nsIInterfaceRequestor.h"
|
|
#include "nsIInterfaceRequestorUtils.h"
|
|
|
|
#include "nsIMsgAccountManager.h"
|
|
#include "nsCPasswordManager.h"
|
|
#include "nsIMsgMdnGenerator.h"
|
|
#include "nsMsgFolderFlags.h"
|
|
#include "nsMsgUtils.h"
|
|
#include "nsAppDirectoryServiceDefs.h"
|
|
|
|
#define PORT_NOT_SET -1
|
|
|
|
#define REL_FILE_PREF_SUFFIX NS_LITERAL_CSTRING("-rel")
|
|
|
|
MOZ_DECL_CTOR_COUNTER(nsMsgIncomingServer)
|
|
|
|
nsMsgIncomingServer::nsMsgIncomingServer():
|
|
m_rootFolder(0),
|
|
m_prefBranch(0),
|
|
m_biffState(nsIMsgFolder::nsMsgBiffState_NoMail),
|
|
m_serverBusy(PR_FALSE),
|
|
m_numMsgsDownloaded(0),
|
|
m_canHaveFilters(PR_TRUE),
|
|
m_displayStartupPage(PR_TRUE),
|
|
mPerformingBiff(PR_FALSE)
|
|
{
|
|
}
|
|
|
|
nsMsgIncomingServer::~nsMsgIncomingServer()
|
|
{
|
|
NS_IF_RELEASE(m_prefBranch);
|
|
}
|
|
|
|
|
|
NS_IMPL_THREADSAFE_ADDREF(nsMsgIncomingServer)
|
|
NS_IMPL_THREADSAFE_RELEASE(nsMsgIncomingServer)
|
|
NS_INTERFACE_MAP_BEGIN(nsMsgIncomingServer)
|
|
NS_INTERFACE_MAP_ENTRY(nsIMsgIncomingServer)
|
|
NS_INTERFACE_MAP_ENTRY(nsISupportsWeakReference)
|
|
NS_INTERFACE_MAP_ENTRY_AMBIGUOUS(nsISupports, nsIMsgIncomingServer)
|
|
NS_INTERFACE_MAP_END_THREADSAFE
|
|
|
|
NS_IMPL_GETSET(nsMsgIncomingServer, ServerBusy, PRBool, m_serverBusy)
|
|
NS_IMPL_GETTER_STR(nsMsgIncomingServer::GetKey, m_serverKey.get())
|
|
|
|
NS_IMETHODIMP
|
|
nsMsgIncomingServer::SetKey(const char * serverKey)
|
|
{
|
|
m_serverKey.Assign(serverKey);
|
|
|
|
// in order to actually make use of the key, we need the prefs
|
|
if (m_prefBranch)
|
|
return NS_OK;
|
|
|
|
return CallGetService(NS_PREFSERVICE_CONTRACTID, &m_prefBranch);
|
|
}
|
|
|
|
NS_IMETHODIMP
|
|
nsMsgIncomingServer::SetRootFolder(nsIMsgFolder * aRootFolder)
|
|
{
|
|
m_rootFolder = aRootFolder;
|
|
return NS_OK;
|
|
}
|
|
|
|
// this will return the root folder of this account,
|
|
// even if this server is deferred.
|
|
NS_IMETHODIMP
|
|
nsMsgIncomingServer::GetRootFolder(nsIMsgFolder * *aRootFolder)
|
|
{
|
|
NS_ENSURE_ARG_POINTER(aRootFolder);
|
|
if (m_rootFolder)
|
|
{
|
|
*aRootFolder = m_rootFolder;
|
|
NS_ADDREF(*aRootFolder);
|
|
}
|
|
else
|
|
{
|
|
nsresult rv = CreateRootFolder();
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
NS_IF_ADDREF(*aRootFolder = m_rootFolder);
|
|
}
|
|
return NS_OK;
|
|
}
|
|
|
|
// this will return the root folder of the deferred to account,
|
|
// if this server is deferred.
|
|
NS_IMETHODIMP
|
|
nsMsgIncomingServer::GetRootMsgFolder(nsIMsgFolder **aRootMsgFolder)
|
|
{
|
|
NS_ENSURE_ARG_POINTER(aRootMsgFolder);
|
|
|
|
if (!m_rootFolder)
|
|
{
|
|
nsresult rv = CreateRootFolder();
|
|
if (NS_FAILED(rv))
|
|
return rv;
|
|
}
|
|
|
|
NS_IF_ADDREF(*aRootMsgFolder = m_rootFolder);
|
|
return NS_OK;
|
|
}
|
|
|
|
NS_IMETHODIMP
|
|
nsMsgIncomingServer::PerformExpand(nsIMsgWindow *aMsgWindow)
|
|
{
|
|
#ifdef DEBUG_sspitzer
|
|
printf("PerformExpand()\n");
|
|
#endif
|
|
return NS_OK;
|
|
}
|
|
|
|
|
|
NS_IMETHODIMP
|
|
nsMsgIncomingServer::PerformBiff(nsIMsgWindow* aMsgWindow)
|
|
{
|
|
//This has to be implemented in the derived class, but in case someone doesn't implement it
|
|
//just return not implemented.
|
|
return NS_ERROR_NOT_IMPLEMENTED;
|
|
}
|
|
|
|
NS_IMETHODIMP
|
|
nsMsgIncomingServer::GetNewMessages(nsIMsgFolder *aFolder, nsIMsgWindow *aMsgWindow,
|
|
nsIUrlListener *aUrlListener)
|
|
{
|
|
return aFolder->GetNewMessages(aMsgWindow, aUrlListener);
|
|
}
|
|
|
|
NS_IMETHODIMP nsMsgIncomingServer::GetPerformingBiff(PRBool *aPerformingBiff)
|
|
{
|
|
NS_ENSURE_ARG_POINTER(aPerformingBiff);
|
|
*aPerformingBiff = mPerformingBiff;
|
|
return NS_OK;
|
|
}
|
|
|
|
NS_IMETHODIMP nsMsgIncomingServer::SetPerformingBiff(PRBool aPerformingBiff)
|
|
{
|
|
mPerformingBiff = aPerformingBiff;
|
|
return NS_OK;
|
|
}
|
|
|
|
NS_IMPL_GETSET(nsMsgIncomingServer, BiffState, PRUint32, m_biffState)
|
|
|
|
NS_IMETHODIMP nsMsgIncomingServer::WriteToFolderCache(nsIMsgFolderCache *folderCache)
|
|
{
|
|
nsresult rv = NS_OK;
|
|
if (m_rootFolder)
|
|
{
|
|
nsCOMPtr <nsIMsgFolder> msgFolder = do_QueryInterface(m_rootFolder, &rv);
|
|
if (NS_SUCCEEDED(rv) && msgFolder)
|
|
rv = msgFolder->WriteToFolderCache(folderCache, PR_TRUE /* deep */);
|
|
}
|
|
return rv;
|
|
}
|
|
|
|
NS_IMETHODIMP
|
|
nsMsgIncomingServer::Shutdown()
|
|
{
|
|
nsresult rv = CloseCachedConnections();
|
|
mFilterPlugin = nsnull;
|
|
NS_ENSURE_SUCCESS(rv,rv);
|
|
|
|
if (mFilterList)
|
|
{
|
|
// close the filter log stream
|
|
rv = mFilterList->SetLogStream(nsnull);
|
|
NS_ENSURE_SUCCESS(rv,rv);
|
|
mFilterList = nsnull;
|
|
}
|
|
|
|
if (mSpamSettings)
|
|
{
|
|
// close the spam log stream
|
|
rv = mSpamSettings->SetLogStream(nsnull);
|
|
NS_ENSURE_SUCCESS(rv,rv);
|
|
mSpamSettings = nsnull;
|
|
}
|
|
return rv;
|
|
}
|
|
|
|
NS_IMETHODIMP
|
|
nsMsgIncomingServer::CloseCachedConnections()
|
|
{
|
|
// derived class should override if they cache connections.
|
|
return NS_OK;
|
|
}
|
|
|
|
NS_IMETHODIMP
|
|
nsMsgIncomingServer::GetDownloadMessagesAtStartup(PRBool *getMessagesAtStartup)
|
|
{
|
|
// derived class should override if they need to do this.
|
|
*getMessagesAtStartup = PR_FALSE;
|
|
return NS_OK;
|
|
}
|
|
|
|
NS_IMETHODIMP
|
|
nsMsgIncomingServer::GetCanHaveFilters(PRBool *canHaveFilters)
|
|
{
|
|
// derived class should override if they need to do this.
|
|
*canHaveFilters = m_canHaveFilters;
|
|
return NS_OK;
|
|
}
|
|
|
|
NS_IMETHODIMP
|
|
nsMsgIncomingServer::GetCanBeDefaultServer(PRBool *canBeDefaultServer)
|
|
{
|
|
// derived class should override if they need to do this.
|
|
*canBeDefaultServer = PR_FALSE;
|
|
return NS_OK;
|
|
}
|
|
|
|
NS_IMETHODIMP
|
|
nsMsgIncomingServer::GetCanSearchMessages(PRBool *canSearchMessages)
|
|
{
|
|
// derived class should override if they need to do this.
|
|
NS_ENSURE_ARG_POINTER(canSearchMessages);
|
|
*canSearchMessages = PR_FALSE;
|
|
return NS_OK;
|
|
}
|
|
|
|
NS_IMETHODIMP
|
|
nsMsgIncomingServer::GetCanCompactFoldersOnServer(PRBool *canCompactFoldersOnServer)
|
|
{
|
|
// derived class should override if they need to do this.
|
|
NS_ENSURE_ARG_POINTER(canCompactFoldersOnServer);
|
|
*canCompactFoldersOnServer = PR_TRUE;
|
|
return NS_OK;
|
|
}
|
|
|
|
NS_IMETHODIMP
|
|
nsMsgIncomingServer::GetCanUndoDeleteOnServer(PRBool *canUndoDeleteOnServer)
|
|
{
|
|
// derived class should override if they need to do this.
|
|
NS_ENSURE_ARG_POINTER(canUndoDeleteOnServer);
|
|
*canUndoDeleteOnServer = PR_TRUE;
|
|
return NS_OK;
|
|
}
|
|
|
|
NS_IMETHODIMP
|
|
nsMsgIncomingServer::GetCanEmptyTrashOnExit(PRBool *canEmptyTrashOnExit)
|
|
{
|
|
// derived class should override if they need to do this.
|
|
NS_ENSURE_ARG_POINTER(canEmptyTrashOnExit);
|
|
*canEmptyTrashOnExit = PR_TRUE;
|
|
return NS_OK;
|
|
}
|
|
|
|
NS_IMETHODIMP
|
|
nsMsgIncomingServer::GetIsSecureServer(PRBool *isSecureServer)
|
|
{
|
|
// derived class should override if they need to do this.
|
|
NS_ENSURE_ARG_POINTER(isSecureServer);
|
|
*isSecureServer = PR_TRUE;
|
|
return NS_OK;
|
|
}
|
|
|
|
// construct <localStoreType>://[<username>@]<hostname
|
|
NS_IMETHODIMP
|
|
nsMsgIncomingServer::GetServerURI(char* *aResult)
|
|
{
|
|
NS_ENSURE_ARG_POINTER(aResult);
|
|
nsresult rv;
|
|
nsCAutoString uri;
|
|
|
|
nsXPIDLCString localStoreType;
|
|
rv = GetLocalStoreType(getter_Copies(localStoreType));
|
|
if (NS_FAILED(rv)) return rv;
|
|
|
|
uri.Append(localStoreType);
|
|
uri += "://";
|
|
|
|
nsXPIDLCString username;
|
|
rv = GetUsername(getter_Copies(username));
|
|
|
|
if (NS_SUCCEEDED(rv) && ((const char*)username) && username[0]) {
|
|
nsXPIDLCString escapedUsername;
|
|
*((char **)getter_Copies(escapedUsername)) =
|
|
nsEscape(username, url_XAlphas);
|
|
// nsEscape(username, url_Path);
|
|
// not all servers have a username
|
|
uri.Append(escapedUsername);
|
|
uri += '@';
|
|
}
|
|
|
|
nsXPIDLCString hostname;
|
|
rv = GetHostName(getter_Copies(hostname));
|
|
|
|
if (NS_SUCCEEDED(rv) && ((const char*)hostname) && hostname[0]) {
|
|
nsXPIDLCString escapedHostname;
|
|
*((char **)getter_Copies(escapedHostname)) =
|
|
nsEscape(hostname, url_Path);
|
|
// not all servers have a hostname
|
|
uri.Append(escapedHostname);
|
|
}
|
|
|
|
*aResult = ToNewCString(uri);
|
|
return NS_OK;
|
|
}
|
|
|
|
// helper routine to create local folder on disk, if it doesn't exist.
|
|
// Path must already have a LeafName for this to work...
|
|
nsresult
|
|
nsMsgIncomingServer::CreateLocalFolder(nsIFileSpec *path, const char *folderName)
|
|
{
|
|
(void) path->SetLeafName(folderName); // never fails
|
|
PRBool exists;
|
|
nsresult rv = path->Exists(&exists);
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
if (!exists)
|
|
rv = path->Touch();
|
|
return rv;
|
|
}
|
|
|
|
|
|
nsresult
|
|
nsMsgIncomingServer::CreateRootFolder()
|
|
{
|
|
nsresult rv;
|
|
// get the URI from the incoming server
|
|
nsXPIDLCString serverUri;
|
|
rv = GetServerURI(getter_Copies(serverUri));
|
|
if (NS_FAILED(rv)) return rv;
|
|
|
|
nsCOMPtr<nsIRDFService> rdf = do_GetService("@mozilla.org/rdf/rdf-service;1", &rv);
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
// get the corresponding RDF resource
|
|
// RDF will create the server resource if it doesn't already exist
|
|
nsCOMPtr<nsIRDFResource> serverResource;
|
|
rv = rdf->GetResource(serverUri, getter_AddRefs(serverResource));
|
|
if (NS_FAILED(rv)) return rv;
|
|
|
|
// make incoming server know about its root server folder so we
|
|
// can find sub-folders given an incoming server.
|
|
m_rootFolder = do_QueryInterface(serverResource, &rv);
|
|
return rv;
|
|
}
|
|
|
|
void
|
|
nsMsgIncomingServer::getPrefName(const char *serverKey,
|
|
const char *prefName,
|
|
nsCString& fullPrefName)
|
|
{
|
|
// mail.server.<key>.<pref>
|
|
fullPrefName = "mail.server.";
|
|
fullPrefName.Append(serverKey);
|
|
fullPrefName.Append('.');
|
|
fullPrefName.Append(prefName);
|
|
}
|
|
|
|
// this will be slightly faster than the above, and allows
|
|
// the "default" server preference root to be set in one place
|
|
void
|
|
nsMsgIncomingServer::getDefaultPrefName(const char *prefName,
|
|
nsCString& fullPrefName)
|
|
{
|
|
// mail.server.default.<pref>
|
|
fullPrefName = "mail.server.default.";
|
|
fullPrefName.Append(prefName);
|
|
}
|
|
|
|
|
|
nsresult
|
|
nsMsgIncomingServer::GetBoolValue(const char *prefname,
|
|
PRBool *val)
|
|
{
|
|
nsCAutoString fullPrefName;
|
|
getPrefName(m_serverKey.get(), prefname, fullPrefName);
|
|
nsresult rv = m_prefBranch->GetBoolPref(fullPrefName.get(), val);
|
|
|
|
if (NS_FAILED(rv))
|
|
rv = getDefaultBoolPref(prefname, val);
|
|
|
|
return rv;
|
|
}
|
|
|
|
|
|
nsresult
|
|
nsMsgIncomingServer::getDefaultBoolPref(const char *prefname,
|
|
PRBool *val) {
|
|
|
|
nsCAutoString fullPrefName;
|
|
getDefaultPrefName(prefname, fullPrefName);
|
|
nsresult rv = m_prefBranch->GetBoolPref(fullPrefName.get(), val);
|
|
|
|
if (NS_FAILED(rv)) {
|
|
*val = PR_FALSE;
|
|
rv = NS_OK;
|
|
}
|
|
return rv;
|
|
}
|
|
|
|
|
|
nsresult
|
|
nsMsgIncomingServer::SetBoolValue(const char *prefname,
|
|
PRBool val)
|
|
{
|
|
nsresult rv;
|
|
nsCAutoString fullPrefName;
|
|
getPrefName(m_serverKey.get(), prefname, fullPrefName);
|
|
|
|
PRBool defaultValue;
|
|
rv = getDefaultBoolPref(prefname, &defaultValue);
|
|
|
|
if (NS_SUCCEEDED(rv) && val == defaultValue)
|
|
m_prefBranch->ClearUserPref(fullPrefName.get());
|
|
else
|
|
rv = m_prefBranch->SetBoolPref(fullPrefName.get(), val);
|
|
|
|
return rv;
|
|
}
|
|
|
|
nsresult
|
|
nsMsgIncomingServer::GetIntValue(const char *prefname,
|
|
PRInt32 *val)
|
|
{
|
|
nsCAutoString fullPrefName;
|
|
getPrefName(m_serverKey.get(), prefname, fullPrefName);
|
|
nsresult rv = m_prefBranch->GetIntPref(fullPrefName.get(), val);
|
|
|
|
if (NS_FAILED(rv))
|
|
rv = getDefaultIntPref(prefname, val);
|
|
|
|
return rv;
|
|
}
|
|
|
|
nsresult
|
|
nsMsgIncomingServer::GetFileValue(const char* prefname,
|
|
nsIFileSpec **spec)
|
|
{
|
|
nsCAutoString fullPrefName;
|
|
getPrefName(m_serverKey.get(), prefname, fullPrefName);
|
|
|
|
nsCAutoString fullRelPrefName(fullPrefName);
|
|
fullRelPrefName.Append(REL_FILE_PREF_SUFFIX);
|
|
nsCOMPtr<nsILocalFile> prefLocal;
|
|
|
|
PRBool gotRelPref;
|
|
nsresult rv = NS_GetPersistentFile(fullRelPrefName.get(), fullPrefName.get(),
|
|
nsnull, gotRelPref, getter_AddRefs(prefLocal));
|
|
if (NS_FAILED(rv)) return rv;
|
|
|
|
if (NS_SUCCEEDED(rv) && !gotRelPref)
|
|
{
|
|
rv = NS_SetPersistentFile(fullRelPrefName.get(), fullPrefName.get(), prefLocal);
|
|
NS_ASSERTION(NS_SUCCEEDED(rv), "Failed to update file pref.");
|
|
}
|
|
|
|
if (NS_FAILED(rv)) return rv;
|
|
|
|
nsCOMPtr<nsIFileSpec> outSpec;
|
|
rv = NS_NewFileSpecFromIFile(prefLocal, getter_AddRefs(outSpec));
|
|
if (NS_FAILED(rv)) return rv;
|
|
|
|
*spec = outSpec;
|
|
NS_ADDREF(*spec);
|
|
|
|
return NS_OK;
|
|
}
|
|
|
|
nsresult
|
|
nsMsgIncomingServer::SetFileValue(const char* prefname,
|
|
nsIFileSpec *spec)
|
|
{
|
|
nsCAutoString fullPrefName;
|
|
getPrefName(m_serverKey.get(), prefname, fullPrefName);
|
|
nsCAutoString fullRelPrefName(fullPrefName);
|
|
fullRelPrefName.Append(REL_FILE_PREF_SUFFIX);
|
|
|
|
nsresult rv;
|
|
nsFileSpec tempSpec;
|
|
rv = spec->GetFileSpec(&tempSpec);
|
|
if (NS_FAILED(rv)) return rv;
|
|
|
|
nsCOMPtr<nsILocalFile> localFile;
|
|
NS_FileSpecToIFile(&tempSpec, getter_AddRefs(localFile));
|
|
if (!localFile)
|
|
return NS_ERROR_FAILURE;
|
|
return NS_SetPersistentFile(fullRelPrefName.get(), fullPrefName.get(), localFile);
|
|
}
|
|
|
|
nsresult
|
|
nsMsgIncomingServer::getDefaultIntPref(const char *prefname,
|
|
PRInt32 *val) {
|
|
|
|
nsCAutoString fullPrefName;
|
|
getDefaultPrefName(prefname, fullPrefName);
|
|
nsresult rv = m_prefBranch->GetIntPref(fullPrefName.get(), val);
|
|
|
|
if (NS_FAILED(rv)) {
|
|
*val = 0;
|
|
rv = NS_OK;
|
|
}
|
|
|
|
return rv;
|
|
}
|
|
|
|
nsresult
|
|
nsMsgIncomingServer::SetIntValue(const char *prefname,
|
|
PRInt32 val)
|
|
{
|
|
nsresult rv;
|
|
nsCAutoString fullPrefName;
|
|
getPrefName(m_serverKey.get(), prefname, fullPrefName);
|
|
|
|
PRInt32 defaultVal;
|
|
rv = getDefaultIntPref(prefname, &defaultVal);
|
|
|
|
if (NS_SUCCEEDED(rv) && defaultVal == val)
|
|
m_prefBranch->ClearUserPref(fullPrefName.get());
|
|
else
|
|
rv = m_prefBranch->SetIntPref(fullPrefName.get(), val);
|
|
|
|
return rv;
|
|
}
|
|
|
|
nsresult
|
|
nsMsgIncomingServer::GetCharValue(const char *prefname,
|
|
char **val)
|
|
{
|
|
nsCAutoString fullPrefName;
|
|
getPrefName(m_serverKey.get(), prefname, fullPrefName);
|
|
nsresult rv = m_prefBranch->GetCharPref(fullPrefName.get(), val);
|
|
|
|
if (NS_FAILED(rv))
|
|
rv = getDefaultCharPref(prefname, val);
|
|
|
|
return rv;
|
|
}
|
|
|
|
nsresult
|
|
nsMsgIncomingServer::GetUnicharValue(const char *prefname,
|
|
PRUnichar **val)
|
|
{
|
|
nsCAutoString fullPrefName;
|
|
getPrefName(m_serverKey.get(), prefname, fullPrefName);
|
|
nsCOMPtr<nsISupportsString> supportsString;
|
|
nsresult rv = m_prefBranch->GetComplexValue(fullPrefName.get(),
|
|
NS_GET_IID(nsISupportsString),
|
|
getter_AddRefs(supportsString));
|
|
|
|
if (NS_FAILED(rv))
|
|
return getDefaultUnicharPref(prefname, val);
|
|
|
|
if (supportsString)
|
|
rv = supportsString->ToString(val);
|
|
|
|
return rv;
|
|
}
|
|
|
|
nsresult
|
|
nsMsgIncomingServer::getDefaultCharPref(const char *prefname,
|
|
char **val)
|
|
{
|
|
nsCAutoString fullPrefName;
|
|
getDefaultPrefName(prefname, fullPrefName);
|
|
nsresult rv = m_prefBranch->GetCharPref(fullPrefName.get(), val);
|
|
|
|
if (NS_FAILED(rv)) {
|
|
*val = nsnull; // null is ok to return here
|
|
rv = NS_OK;
|
|
}
|
|
return rv;
|
|
}
|
|
|
|
nsresult
|
|
nsMsgIncomingServer::getDefaultUnicharPref(const char *prefname,
|
|
PRUnichar **val) {
|
|
|
|
nsCAutoString fullPrefName;
|
|
getDefaultPrefName(prefname, fullPrefName);
|
|
nsCOMPtr<nsISupportsString> supportsString;
|
|
nsresult rv = m_prefBranch->GetComplexValue(fullPrefName.get(),
|
|
NS_GET_IID(nsISupportsString),
|
|
getter_AddRefs(supportsString));
|
|
if (NS_FAILED(rv) || !supportsString) {
|
|
*val = nsnull; // null is ok to return here
|
|
return NS_OK;
|
|
}
|
|
|
|
return supportsString->ToString(val);
|
|
}
|
|
|
|
nsresult
|
|
nsMsgIncomingServer::SetCharValue(const char *prefname,
|
|
const char * val)
|
|
{
|
|
nsresult rv;
|
|
nsCAutoString fullPrefName;
|
|
getPrefName(m_serverKey.get(), prefname, fullPrefName);
|
|
|
|
if (!val) {
|
|
m_prefBranch->ClearUserPref(fullPrefName.get());
|
|
return NS_OK;
|
|
}
|
|
|
|
nsXPIDLCString defaultVal;
|
|
rv = getDefaultCharPref(prefname, getter_Copies(defaultVal));
|
|
|
|
if (NS_SUCCEEDED(rv) && defaultVal.Equals(val))
|
|
m_prefBranch->ClearUserPref(fullPrefName.get());
|
|
else
|
|
rv = m_prefBranch->SetCharPref(fullPrefName.get(), val);
|
|
|
|
return rv;
|
|
}
|
|
|
|
nsresult
|
|
nsMsgIncomingServer::SetUnicharValue(const char *prefname,
|
|
const PRUnichar * val)
|
|
{
|
|
nsresult rv;
|
|
nsCAutoString fullPrefName;
|
|
getPrefName(m_serverKey.get(), prefname, fullPrefName);
|
|
|
|
if (!val) {
|
|
m_prefBranch->ClearUserPref(fullPrefName.get());
|
|
return NS_OK;
|
|
}
|
|
|
|
PRUnichar *defaultVal=nsnull;
|
|
rv = getDefaultUnicharPref(prefname, &defaultVal);
|
|
if (defaultVal && NS_SUCCEEDED(rv) &&
|
|
nsCRT::strcmp(defaultVal, val) == 0)
|
|
m_prefBranch->ClearUserPref(fullPrefName.get());
|
|
else {
|
|
nsCOMPtr<nsISupportsString> supportsString =
|
|
do_CreateInstance(NS_SUPPORTS_STRING_CONTRACTID, &rv);
|
|
if (supportsString) {
|
|
supportsString->SetData(nsDependentString(val));
|
|
rv = m_prefBranch->SetComplexValue(fullPrefName.get(),
|
|
NS_GET_IID(nsISupportsString),
|
|
supportsString);
|
|
}
|
|
}
|
|
|
|
PR_FREEIF(defaultVal);
|
|
|
|
return rv;
|
|
}
|
|
|
|
// pretty name is the display name to show to the user
|
|
NS_IMETHODIMP
|
|
nsMsgIncomingServer::GetPrettyName(PRUnichar **retval) {
|
|
|
|
nsXPIDLString val;
|
|
nsresult rv = GetUnicharValue("name", getter_Copies(val));
|
|
if (NS_FAILED(rv)) return rv;
|
|
|
|
// if there's no name, then just return the hostname
|
|
if (val.IsEmpty())
|
|
return GetConstructedPrettyName(retval);
|
|
|
|
*retval = nsCRT::strdup(val);
|
|
return NS_OK;
|
|
}
|
|
|
|
NS_IMETHODIMP
|
|
nsMsgIncomingServer::SetPrettyName(const PRUnichar *value)
|
|
{
|
|
SetUnicharValue("name", value);
|
|
|
|
nsCOMPtr<nsIMsgFolder> rootFolder;
|
|
GetRootFolder(getter_AddRefs(rootFolder));
|
|
|
|
if (rootFolder)
|
|
rootFolder->SetPrettyName(value);
|
|
|
|
return NS_OK;
|
|
}
|
|
|
|
|
|
// construct the pretty name to show to the user if they haven't
|
|
// specified one. This should be overridden for news and mail.
|
|
NS_IMETHODIMP
|
|
nsMsgIncomingServer::GetConstructedPrettyName(PRUnichar **retval)
|
|
{
|
|
|
|
nsXPIDLCString username;
|
|
nsAutoString prettyName;
|
|
nsresult rv = GetUsername(getter_Copies(username));
|
|
if (NS_FAILED(rv)) return rv;
|
|
if ((const char*)username &&
|
|
PL_strcmp((const char*)username, "")!=0) {
|
|
prettyName.AssignWithConversion(username);
|
|
prettyName.AppendLiteral(" on ");
|
|
}
|
|
|
|
nsXPIDLCString hostname;
|
|
rv = GetHostName(getter_Copies(hostname));
|
|
if (NS_FAILED(rv)) return rv;
|
|
|
|
|
|
prettyName.AppendWithConversion(hostname);
|
|
|
|
*retval = ToNewUnicode(prettyName);
|
|
|
|
return NS_OK;
|
|
}
|
|
|
|
NS_IMETHODIMP
|
|
nsMsgIncomingServer::ToString(PRUnichar** aResult) {
|
|
*aResult = ToNewUnicode(NS_LITERAL_STRING("[nsIMsgIncomingServer: ") +
|
|
NS_ConvertASCIItoUCS2(m_serverKey) +
|
|
NS_LITERAL_STRING("]"));
|
|
NS_ASSERTION(*aResult, "no server name!");
|
|
return NS_OK;
|
|
}
|
|
|
|
|
|
NS_IMETHODIMP nsMsgIncomingServer::SetPassword(const char * aPassword)
|
|
{
|
|
m_password = aPassword;
|
|
|
|
nsresult rv;
|
|
PRBool rememberPassword = PR_FALSE;
|
|
|
|
rv = GetRememberPassword(&rememberPassword);
|
|
if (NS_FAILED(rv)) return rv;
|
|
|
|
if (rememberPassword)
|
|
{
|
|
rv = StorePassword();
|
|
if (NS_FAILED(rv)) return rv;
|
|
}
|
|
|
|
return NS_OK;
|
|
}
|
|
|
|
NS_IMETHODIMP nsMsgIncomingServer::GetPassword(char ** aPassword)
|
|
{
|
|
NS_ENSURE_ARG_POINTER(aPassword);
|
|
*aPassword = ToNewCString(m_password);
|
|
return NS_OK;
|
|
}
|
|
|
|
NS_IMETHODIMP nsMsgIncomingServer::GetServerRequiresPasswordForBiff(PRBool *aServerRequiresPasswordForBiff)
|
|
{
|
|
NS_ENSURE_ARG_POINTER(aServerRequiresPasswordForBiff);
|
|
*aServerRequiresPasswordForBiff = PR_TRUE;
|
|
return NS_OK;
|
|
}
|
|
|
|
NS_IMETHODIMP
|
|
nsMsgIncomingServer::GetPasswordWithUI(const PRUnichar * aPromptMessage, const
|
|
PRUnichar *aPromptTitle,
|
|
nsIMsgWindow* aMsgWindow,
|
|
PRBool *okayValue,
|
|
char **aPassword)
|
|
{
|
|
nsresult rv = NS_OK;
|
|
|
|
NS_ENSURE_ARG_POINTER(aPassword);
|
|
NS_ENSURE_ARG_POINTER(okayValue);
|
|
|
|
if (m_password.IsEmpty())
|
|
{
|
|
// let's see if we have the password in the password manager and
|
|
// can avoid this prompting thing. This makes it easier to get embedders
|
|
// to get up and running w/o a password prompting UI. We already depend on
|
|
// nsIPasswordManagerInternal so this doesn't introduce a new dependency.
|
|
nsCOMPtr <nsIPasswordManagerInternal> passwordMgrInt = do_GetService(NS_PASSWORDMANAGER_CONTRACTID, &rv);
|
|
if(passwordMgrInt)
|
|
{
|
|
|
|
// Get the current server URI
|
|
nsXPIDLCString currServerUri;
|
|
rv = GetServerURI(getter_Copies(currServerUri));
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
nsCAutoString hostFound;
|
|
nsAutoString userNameFound;
|
|
nsAutoString passwordFound;
|
|
|
|
const nsAFlatString& empty = EmptyString();
|
|
|
|
// Get password entry corresponding to the host URI we are passing in.
|
|
if (NS_SUCCEEDED(passwordMgrInt->FindPasswordEntry(currServerUri, empty, empty,
|
|
hostFound, userNameFound, passwordFound)))
|
|
{
|
|
m_password.AssignWithConversion(passwordFound);
|
|
*okayValue = PR_TRUE;
|
|
}
|
|
}
|
|
}
|
|
if (m_password.IsEmpty())
|
|
{
|
|
nsCOMPtr<nsIAuthPrompt> dialog;
|
|
|
|
// aMsgWindow is required if we need to prompt
|
|
if (aMsgWindow)
|
|
{
|
|
// prompt the user for the password
|
|
nsCOMPtr<nsIDocShell> docShell;
|
|
rv = aMsgWindow->GetRootDocShell(getter_AddRefs(docShell));
|
|
if (NS_FAILED(rv)) return rv;
|
|
|
|
dialog = do_GetInterface(docShell, &rv);
|
|
if (NS_FAILED(rv)) return rv;
|
|
}
|
|
else
|
|
{
|
|
nsCOMPtr<nsIWindowWatcher> wwatch(do_GetService(NS_WINDOWWATCHER_CONTRACTID));
|
|
if (wwatch)
|
|
wwatch->GetNewAuthPrompter(0, getter_AddRefs(dialog));
|
|
if (!dialog) return NS_ERROR_FAILURE;
|
|
}
|
|
if (dialog)
|
|
{
|
|
nsXPIDLString uniPassword;
|
|
nsXPIDLCString serverUri;
|
|
rv = GetServerURI(getter_Copies(serverUri));
|
|
if (NS_FAILED(rv)) return rv;
|
|
PRBool passwordProtectLocalCache = PR_FALSE;
|
|
|
|
(void) m_prefBranch->GetBoolPref( "mail.password_protect_local_cache", &passwordProtectLocalCache);
|
|
|
|
PRUint32 savePasswordType = (passwordProtectLocalCache) ? nsIAuthPrompt::SAVE_PASSWORD_FOR_SESSION : nsIAuthPrompt::SAVE_PASSWORD_PERMANENTLY;
|
|
rv = dialog->PromptPassword(aPromptTitle, aPromptMessage,
|
|
NS_ConvertASCIItoUCS2(serverUri).get(), savePasswordType,
|
|
getter_Copies(uniPassword), okayValue);
|
|
if (NS_FAILED(rv)) return rv;
|
|
|
|
if (!*okayValue) // if the user pressed cancel, just return NULL;
|
|
{
|
|
*aPassword = nsnull;
|
|
return NS_MSG_PASSWORD_PROMPT_CANCELLED;
|
|
}
|
|
|
|
// we got a password back...so remember it
|
|
nsCString aCStr; aCStr.AssignWithConversion(uniPassword);
|
|
|
|
rv = SetPassword(aCStr.get());
|
|
if (NS_FAILED(rv)) return rv;
|
|
} // if we got a prompt dialog
|
|
} // if the password is empty
|
|
|
|
return GetPassword(aPassword);
|
|
}
|
|
|
|
NS_IMETHODIMP
|
|
nsMsgIncomingServer::StorePassword()
|
|
{
|
|
nsresult rv;
|
|
|
|
// we only need to store this if we're password protecting the local cache.
|
|
// Otherwise, the password manager handles storing the password if the user
|
|
// checks the "remember password" box.
|
|
if (!PasswordProtectLocalCache())
|
|
return NS_OK;
|
|
|
|
nsXPIDLCString pwd;
|
|
rv = GetPassword(getter_Copies(pwd));
|
|
if (NS_FAILED(rv)) return rv;
|
|
|
|
nsCOMPtr<nsIObserverService> observerService = do_GetService("@mozilla.org/observer-service;1", &rv);
|
|
NS_ENSURE_SUCCESS(rv,rv);
|
|
|
|
nsXPIDLCString serverSpec;
|
|
rv = GetServerURI(getter_Copies(serverSpec));
|
|
if (NS_FAILED(rv)) return rv;
|
|
|
|
// We're password protecting the local cache, we're going to munge the uri in the password mgr to
|
|
// start with 'x', so that we can remember the password in order to challenge the user, w/o having the
|
|
// password mgr automatically use the password.
|
|
serverSpec.Insert('x', 0);
|
|
nsCOMPtr<nsIURI> uri;
|
|
NS_NewURI(getter_AddRefs(uri), serverSpec);
|
|
|
|
//this is need to make sure wallet service has been created
|
|
rv = CreateServicesForPasswordManager();
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
rv = observerService->NotifyObservers(uri, "login-succeeded", NS_ConvertUTF8toUCS2(pwd).get());
|
|
NS_ENSURE_SUCCESS(rv,rv);
|
|
nsCOMPtr<nsIMsgAccountManager> accountManager = do_GetService(NS_MSGACCOUNTMANAGER_CONTRACTID);
|
|
if (accountManager)
|
|
accountManager->SetUserNeedsToAuthenticate(PR_FALSE);
|
|
return rv;
|
|
}
|
|
|
|
NS_IMETHODIMP
|
|
nsMsgIncomingServer::ForgetPassword()
|
|
{
|
|
nsresult rv;
|
|
|
|
nsCOMPtr<nsIObserverService> observerService = do_GetService("@mozilla.org/observer-service;1", &rv);
|
|
NS_ENSURE_SUCCESS(rv,rv);
|
|
|
|
nsXPIDLCString serverSpec;
|
|
rv = GetServerURI(getter_Copies(serverSpec));
|
|
if (NS_FAILED(rv)) return rv;
|
|
|
|
nsCOMPtr<nsIURI> uri;
|
|
NS_NewURI(getter_AddRefs(uri), serverSpec);
|
|
|
|
//this is need to make sure wallet service has been created
|
|
rv = CreateServicesForPasswordManager();
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
rv = observerService->NotifyObservers(uri, "login-failed", nsnull);
|
|
NS_ENSURE_SUCCESS(rv,rv);
|
|
|
|
rv = SetPassword("");
|
|
return rv;
|
|
}
|
|
|
|
NS_IMETHODIMP
|
|
nsMsgIncomingServer::ForgetSessionPassword()
|
|
{
|
|
m_password.Truncate(0);
|
|
return NS_OK;
|
|
}
|
|
|
|
NS_IMETHODIMP
|
|
nsMsgIncomingServer::SetDefaultLocalPath(nsIFileSpec *aDefaultLocalPath)
|
|
{
|
|
nsresult rv;
|
|
nsCOMPtr<nsIMsgProtocolInfo> protocolInfo;
|
|
rv = getProtocolInfo(getter_AddRefs(protocolInfo));
|
|
if (NS_FAILED(rv)) return rv;
|
|
|
|
rv = protocolInfo->SetDefaultLocalPath(aDefaultLocalPath);
|
|
return rv;
|
|
}
|
|
|
|
NS_IMETHODIMP
|
|
nsMsgIncomingServer::GetLocalPath(nsIFileSpec **aLocalPath)
|
|
{
|
|
nsresult rv;
|
|
|
|
// if the local path has already been set, use it
|
|
rv = GetFileValue("directory", aLocalPath);
|
|
if (NS_SUCCEEDED(rv) && *aLocalPath) return rv;
|
|
|
|
// otherwise, create the path using the protocol info.
|
|
// note we are using the
|
|
// hostname, unless that directory exists.
|
|
// this should prevent all collisions.
|
|
nsCOMPtr<nsIMsgProtocolInfo> protocolInfo;
|
|
rv = getProtocolInfo(getter_AddRefs(protocolInfo));
|
|
if (NS_FAILED(rv)) return rv;
|
|
|
|
nsCOMPtr<nsIFileSpec> path;
|
|
rv = protocolInfo->GetDefaultLocalPath(getter_AddRefs(path));
|
|
if (NS_FAILED(rv)) return rv;
|
|
|
|
path->CreateDir();
|
|
|
|
// set the leaf name to "dummy", and then call MakeUnique with a suggested leaf name
|
|
rv = path->AppendRelativeUnixPath("dummy");
|
|
if (NS_FAILED(rv)) return rv;
|
|
nsXPIDLCString hostname;
|
|
rv = GetHostName(getter_Copies(hostname));
|
|
if (NS_FAILED(rv)) return rv;
|
|
rv = path->MakeUniqueDirWithSuggestedName((const char *)hostname);
|
|
if (NS_FAILED(rv)) return rv;
|
|
|
|
rv = SetLocalPath(path);
|
|
if (NS_FAILED(rv)) return rv;
|
|
|
|
*aLocalPath = path;
|
|
NS_ADDREF(*aLocalPath);
|
|
|
|
return NS_OK;
|
|
}
|
|
|
|
NS_IMETHODIMP
|
|
nsMsgIncomingServer::SetLocalPath(nsIFileSpec *spec)
|
|
{
|
|
if (spec)
|
|
{
|
|
spec->CreateDir();
|
|
return SetFileValue("directory", spec);
|
|
}
|
|
else
|
|
{
|
|
return NS_ERROR_NULL_POINTER;
|
|
}
|
|
}
|
|
|
|
NS_IMETHODIMP
|
|
nsMsgIncomingServer::SetRememberPassword(PRBool value)
|
|
{
|
|
if (!value)
|
|
ForgetPassword();
|
|
else
|
|
StorePassword();
|
|
return SetBoolValue("remember_password", value);
|
|
}
|
|
|
|
PRBool nsMsgIncomingServer::PasswordProtectLocalCache()
|
|
{
|
|
PRBool passwordProtectLocalCache;
|
|
|
|
nsresult rv = m_prefBranch->GetBoolPref( "mail.password_protect_local_cache", &passwordProtectLocalCache);
|
|
NS_ENSURE_SUCCESS(rv, PR_FALSE);
|
|
return passwordProtectLocalCache;
|
|
}
|
|
|
|
NS_IMETHODIMP
|
|
nsMsgIncomingServer::GetRememberPassword(PRBool* aValue)
|
|
{
|
|
NS_ENSURE_ARG_POINTER(aValue);
|
|
return GetBoolValue("remember_password", aValue);
|
|
}
|
|
|
|
NS_IMETHODIMP
|
|
nsMsgIncomingServer::GetLocalStoreType(char **aResult)
|
|
{
|
|
NS_NOTYETIMPLEMENTED("nsMsgIncomingServer superclass not implementing GetLocalStoreType!");
|
|
return NS_ERROR_UNEXPECTED;
|
|
}
|
|
|
|
NS_IMETHODIMP
|
|
nsMsgIncomingServer::GetAccountManagerChrome(nsAString& aResult)
|
|
{
|
|
aResult.AssignLiteral("am-main.xul");
|
|
return NS_OK;
|
|
}
|
|
|
|
NS_IMETHODIMP
|
|
nsMsgIncomingServer::Equals(nsIMsgIncomingServer *server, PRBool *_retval)
|
|
{
|
|
nsresult rv;
|
|
|
|
NS_ENSURE_ARG_POINTER(server);
|
|
NS_ENSURE_ARG_POINTER(_retval);
|
|
|
|
nsXPIDLCString key1;
|
|
nsXPIDLCString key2;
|
|
|
|
rv = GetKey(getter_Copies(key1));
|
|
if (NS_FAILED(rv)) return rv;
|
|
|
|
rv = server->GetKey(getter_Copies(key2));
|
|
if (NS_FAILED(rv)) return rv;
|
|
|
|
// compare the server keys
|
|
if (PL_strcmp((const char *)key1,(const char *)key2)) {
|
|
#ifdef DEBUG_MSGINCOMING_SERVER
|
|
printf("%s and %s are different, servers are not the same\n",(const char *)key1,(const char *)key2);
|
|
#endif /* DEBUG_MSGINCOMING_SERVER */
|
|
*_retval = PR_FALSE;
|
|
}
|
|
else {
|
|
#ifdef DEBUG_MSGINCOMING_SERVER
|
|
printf("%s and %s are equal, servers are the same\n",(const char *)key1,(const char *)key2);
|
|
#endif /* DEBUG_MSGINCOMING_SERVER */
|
|
*_retval = PR_TRUE;
|
|
}
|
|
return rv;
|
|
}
|
|
|
|
NS_IMETHODIMP
|
|
nsMsgIncomingServer::ClearAllValues()
|
|
{
|
|
nsCAutoString rootPref("mail.server.");
|
|
rootPref += m_serverKey;
|
|
rootPref += '.';
|
|
|
|
PRUint32 childCount;
|
|
char** childArray;
|
|
nsresult rv = m_prefBranch->GetChildList(rootPref.get(), &childCount, &childArray);
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
for (PRUint32 i = 0; i < childCount; ++i)
|
|
m_prefBranch->ClearUserPref(childArray[i]);
|
|
|
|
NS_FREE_XPCOM_ALLOCATED_POINTER_ARRAY(childCount, childArray);
|
|
|
|
return NS_OK;
|
|
}
|
|
|
|
NS_IMETHODIMP
|
|
nsMsgIncomingServer::RemoveFiles()
|
|
{
|
|
// IMPORTANT, see bug #77652
|
|
// don't turn this code on yet. we don't inform the user that
|
|
// we are going to be deleting the directory, and they might have
|
|
// tweaked their localPath pref for this server to point to
|
|
// somewhere they didn't want deleted.
|
|
// until we tell them, we shouldn't do the delete.
|
|
#if 0
|
|
nsresult rv = NS_OK;
|
|
nsCOMPtr <nsIFileSpec> localPath;
|
|
rv = GetLocalPath(getter_AddRefs(localPath));
|
|
if (NS_FAILED(rv)) return rv;
|
|
|
|
if (!localPath) return NS_ERROR_FAILURE;
|
|
|
|
PRBool exists = PR_FALSE;
|
|
rv = localPath->Exists(&exists);
|
|
if (NS_FAILED(rv)) return rv;
|
|
|
|
// if it doesn't exist, that's ok.
|
|
if (!exists) return NS_OK;
|
|
|
|
rv = localPath->Delete(PR_TRUE /* recursive */);
|
|
if (NS_FAILED(rv)) return rv;
|
|
|
|
// now check if it really gone
|
|
rv = localPath->Exists(&exists);
|
|
if (NS_FAILED(rv)) return rv;
|
|
|
|
// if it still exists, something failed.
|
|
if (exists) return NS_ERROR_FAILURE;
|
|
#endif /* 0 */
|
|
return NS_OK;
|
|
}
|
|
|
|
NS_IMETHODIMP
|
|
nsMsgIncomingServer::SetFilterList(nsIMsgFilterList *aFilterList)
|
|
{
|
|
mFilterList = aFilterList;
|
|
return NS_OK;
|
|
}
|
|
|
|
NS_IMETHODIMP
|
|
nsMsgIncomingServer::GetFilterList(nsIMsgWindow *aMsgWindow, nsIMsgFilterList **aResult)
|
|
{
|
|
if (!mFilterList)
|
|
{
|
|
nsCOMPtr<nsIMsgFolder> msgFolder;
|
|
// use GetRootFolder so for deferred pop3 accounts, we'll get the filters
|
|
// file from the deferred account, not the deferred to account,
|
|
// so that filters will still be per-server.
|
|
nsresult rv = GetRootFolder(getter_AddRefs(msgFolder));
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
nsCOMPtr<nsIFileSpec> thisFolder;
|
|
rv = msgFolder->GetPath(getter_AddRefs(thisFolder));
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
mFilterFile = do_CreateInstance(NS_FILESPEC_CONTRACTID, &rv);
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
rv = mFilterFile->FromFileSpec(thisFolder);
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
mFilterFile->AppendRelativeUnixPath("msgFilterRules.dat");
|
|
|
|
PRBool fileExists;
|
|
mFilterFile->Exists(&fileExists);
|
|
if (!fileExists)
|
|
{
|
|
nsCOMPtr<nsIFileSpec> oldFilterFile = do_CreateInstance(NS_FILESPEC_CONTRACTID, &rv);
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
rv = oldFilterFile->FromFileSpec(thisFolder);
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
oldFilterFile->AppendRelativeUnixPath("rules.dat");
|
|
|
|
oldFilterFile->Exists(&fileExists);
|
|
if (fileExists) //copy rules.dat --> msgFilterRules.dat
|
|
{
|
|
nsFileSpec rootFolderSpec;
|
|
thisFolder->GetFileSpec(&rootFolderSpec);
|
|
|
|
nsCOMPtr<nsILocalFile> rootFolderDir;
|
|
rv = NS_FileSpecToIFile(&rootFolderSpec, getter_AddRefs(rootFolderDir));
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
nsFileSpec oldFilterSpec;
|
|
oldFilterFile->GetFileSpec(&oldFilterSpec);
|
|
|
|
nsCOMPtr<nsILocalFile> localFilterFile;
|
|
rv = NS_FileSpecToIFile(&oldFilterSpec, getter_AddRefs(localFilterFile));
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
rv = localFilterFile->CopyToNative(rootFolderDir, NS_LITERAL_CSTRING("msgFilterRules.dat"));
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
}
|
|
}
|
|
nsCOMPtr<nsIMsgFilterService> filterService =
|
|
do_GetService(NS_MSGFILTERSERVICE_CONTRACTID, &rv);
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
rv = filterService->OpenFilterList(mFilterFile, msgFolder, aMsgWindow, getter_AddRefs(mFilterList));
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
}
|
|
|
|
NS_IF_ADDREF(*aResult = mFilterList);
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
// If the hostname contains ':' (like hostname:1431)
|
|
// then parse and set the port number.
|
|
nsresult
|
|
nsMsgIncomingServer::InternalSetHostName(const char *aHostname, const char *prefName)
|
|
{
|
|
nsresult rv;
|
|
if (PL_strchr(aHostname, ':'))
|
|
{
|
|
nsCAutoString newHostname(aHostname);
|
|
PRInt32 colonPos = newHostname.FindChar(':');
|
|
|
|
nsCAutoString portString;
|
|
newHostname.Right(portString, newHostname.Length() - colonPos);
|
|
|
|
newHostname.Truncate(colonPos);
|
|
|
|
PRInt32 err;
|
|
PRInt32 port = portString.ToInteger(&err);
|
|
if (!err) SetPort(port);
|
|
|
|
rv = SetCharValue(prefName, newHostname.get());
|
|
}
|
|
else
|
|
rv = SetCharValue(prefName, aHostname);
|
|
return rv;
|
|
}
|
|
|
|
NS_IMETHODIMP
|
|
nsMsgIncomingServer::OnUserOrHostNameChanged(const char *oldName, const char *newName)
|
|
{
|
|
nsresult rv;
|
|
|
|
// 1. Reset password so that users are prompted for new password for the new user/host.
|
|
ForgetPassword();
|
|
|
|
// 2. Let the derived class close all cached connection to the old host.
|
|
CloseCachedConnections();
|
|
|
|
// 3. Notify any listeners for account server changes.
|
|
nsCOMPtr<nsIMsgAccountManager> accountManager = do_GetService(NS_MSGACCOUNTMANAGER_CONTRACTID, &rv);
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
rv = accountManager->NotifyServerChanged(this);
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
// 4. Lastly, replace all occurrences of old name in the acct name with the new one.
|
|
nsXPIDLString acctName;
|
|
rv = GetPrettyName(getter_Copies(acctName));
|
|
if (NS_SUCCEEDED(rv) && acctName)
|
|
{
|
|
nsAutoString newAcctName, oldVal, newVal;
|
|
oldVal.AssignWithConversion(oldName);
|
|
newVal.AssignWithConversion(newName);
|
|
newAcctName.Assign(acctName);
|
|
newAcctName.ReplaceSubstring(oldVal, newVal);
|
|
SetPrettyName(newAcctName.get());
|
|
}
|
|
|
|
return rv;
|
|
}
|
|
|
|
nsresult
|
|
nsMsgIncomingServer::SetHostName(const char *aHostname)
|
|
{
|
|
return (InternalSetHostName(aHostname, "hostname"));
|
|
}
|
|
|
|
// SetRealHostName() is called only when the server name is changed from the
|
|
// UI (Account Settings page). No one should call it in any circumstances.
|
|
NS_IMETHODIMP
|
|
nsMsgIncomingServer::SetRealHostName(const char *aHostname)
|
|
{
|
|
nsXPIDLCString oldName;
|
|
nsresult rv = GetRealHostName(getter_Copies(oldName));
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
rv = InternalSetHostName(aHostname, "realhostname");
|
|
|
|
// A few things to take care of if we're changing the hostname.
|
|
if (nsCRT::strcasecmp(aHostname, oldName.get()))
|
|
rv = OnUserOrHostNameChanged(oldName.get(), aHostname);
|
|
|
|
return rv;
|
|
}
|
|
|
|
nsresult
|
|
nsMsgIncomingServer::GetHostName(char **aResult)
|
|
{
|
|
nsresult rv;
|
|
rv = GetCharValue("hostname", aResult);
|
|
if (PL_strchr(*aResult, ':'))
|
|
{
|
|
// gack, we need to reformat the hostname - SetHostName will do that
|
|
SetHostName(*aResult);
|
|
rv = GetCharValue("hostname", aResult);
|
|
}
|
|
return rv;
|
|
}
|
|
|
|
NS_IMETHODIMP
|
|
nsMsgIncomingServer::GetRealHostName(char **aResult)
|
|
{
|
|
// If 'realhostname' is set (was changed) then use it, otherwise use 'hostname'
|
|
nsresult rv;
|
|
rv = GetCharValue("realhostname", aResult);
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
if (!*aResult || !**aResult)
|
|
return(GetHostName(aResult));
|
|
|
|
if (PL_strchr(*aResult, ':'))
|
|
{
|
|
SetRealHostName(*aResult);
|
|
rv = GetCharValue("realhostname", aResult);
|
|
}
|
|
return rv;
|
|
}
|
|
|
|
NS_IMETHODIMP
|
|
nsMsgIncomingServer::GetRealUsername(char **aResult)
|
|
{
|
|
// If 'realuserName' is set (was changed) then use it, otherwise use 'userName'
|
|
nsresult rv;
|
|
rv = GetCharValue("realuserName", aResult);
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
if (!*aResult || !**aResult)
|
|
return(GetUsername(aResult));
|
|
|
|
return rv;
|
|
}
|
|
|
|
NS_IMETHODIMP
|
|
nsMsgIncomingServer::SetRealUsername(const char *aUsername)
|
|
{
|
|
// Need to take care of few things if we're changing the username.
|
|
nsXPIDLCString oldName;
|
|
nsresult rv = GetRealUsername(getter_Copies(oldName));
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
rv = SetCharValue("realuserName", aUsername);
|
|
if (!oldName.Equals(aUsername))
|
|
rv = OnUserOrHostNameChanged(oldName.get(), aUsername);
|
|
|
|
return rv;
|
|
}
|
|
|
|
#define BIFF_PREF_NAME "check_new_mail"
|
|
|
|
NS_IMETHODIMP
|
|
nsMsgIncomingServer::GetDoBiff(PRBool *aDoBiff)
|
|
{
|
|
NS_ENSURE_ARG_POINTER(aDoBiff);
|
|
nsresult rv;
|
|
|
|
nsCAutoString fullPrefName;
|
|
getPrefName(m_serverKey.get(), BIFF_PREF_NAME, fullPrefName);
|
|
rv = m_prefBranch->GetBoolPref(fullPrefName.get(), aDoBiff);
|
|
if (NS_SUCCEEDED(rv)) return rv;
|
|
|
|
// if the pref isn't set, use the default
|
|
// value based on the protocol
|
|
nsCOMPtr<nsIMsgProtocolInfo> protocolInfo;
|
|
|
|
rv = getProtocolInfo(getter_AddRefs(protocolInfo));
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
rv = protocolInfo->GetDefaultDoBiff(aDoBiff);
|
|
// note, don't call SetDoBiff()
|
|
// since we keep changing our minds on
|
|
// if biff should be on or off, let's keep the ability
|
|
// to change the default in future builds.
|
|
// if we call SetDoBiff() here, it will be in the users prefs.
|
|
// and we can't do anything after that.
|
|
return rv;
|
|
}
|
|
|
|
NS_IMETHODIMP
|
|
nsMsgIncomingServer::SetDoBiff(PRBool aDoBiff)
|
|
{
|
|
nsresult rv;
|
|
nsCAutoString fullPrefName;
|
|
getPrefName(m_serverKey.get(), BIFF_PREF_NAME, fullPrefName);
|
|
|
|
rv = m_prefBranch->SetBoolPref(fullPrefName.get(), aDoBiff);
|
|
NS_ENSURE_SUCCESS(rv,rv);
|
|
return NS_OK;
|
|
}
|
|
|
|
|
|
NS_IMETHODIMP
|
|
nsMsgIncomingServer::GetPort(PRInt32 *aPort)
|
|
{
|
|
NS_ENSURE_ARG_POINTER(aPort);
|
|
nsresult rv;
|
|
|
|
rv = GetIntValue("port", aPort);
|
|
if (*aPort != PORT_NOT_SET) return rv;
|
|
|
|
// if the port isn't set, use the default
|
|
// port based on the protocol
|
|
nsCOMPtr<nsIMsgProtocolInfo> protocolInfo;
|
|
|
|
rv = getProtocolInfo(getter_AddRefs(protocolInfo));
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
PRBool isSecure = PR_FALSE;
|
|
// Try this, and if it fails, fall back to the non-secure port
|
|
GetIsSecure(&isSecure);
|
|
return protocolInfo->GetDefaultServerPort(isSecure, aPort);
|
|
}
|
|
|
|
NS_IMETHODIMP
|
|
nsMsgIncomingServer::SetPort(PRInt32 aPort)
|
|
{
|
|
nsresult rv;
|
|
|
|
nsCOMPtr<nsIMsgProtocolInfo> protocolInfo;
|
|
rv = getProtocolInfo(getter_AddRefs(protocolInfo));
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
PRInt32 defaultPort;
|
|
PRBool isSecure = PR_FALSE;
|
|
// Try this, and if it fails, fall back to the non-secure port
|
|
GetIsSecure(&isSecure);
|
|
rv = protocolInfo->GetDefaultServerPort(isSecure, &defaultPort);
|
|
if (NS_SUCCEEDED(rv) && aPort == defaultPort)
|
|
// clear it out by setting it to the default
|
|
rv = SetIntValue("port", PORT_NOT_SET);
|
|
else
|
|
rv = SetIntValue("port", aPort);
|
|
|
|
return NS_OK;
|
|
}
|
|
|
|
nsresult
|
|
nsMsgIncomingServer::getProtocolInfo(nsIMsgProtocolInfo **aResult)
|
|
{
|
|
NS_ENSURE_ARG_POINTER(aResult);
|
|
nsresult rv;
|
|
|
|
nsXPIDLCString type;
|
|
rv = GetType(getter_Copies(type));
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
nsCAutoString contractid(NS_MSGPROTOCOLINFO_CONTRACTID_PREFIX);
|
|
contractid.Append(type);
|
|
|
|
nsCOMPtr<nsIMsgProtocolInfo> protocolInfo =
|
|
do_GetService(contractid.get(), &rv);
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
*aResult = protocolInfo;
|
|
NS_ADDREF(*aResult);
|
|
return NS_OK;
|
|
}
|
|
|
|
NS_IMETHODIMP nsMsgIncomingServer::GetRetentionSettings(nsIMsgRetentionSettings **settings)
|
|
{
|
|
NS_ENSURE_ARG_POINTER(settings);
|
|
nsMsgRetainByPreference retainByPreference;
|
|
PRInt32 daysToKeepHdrs = 0;
|
|
PRInt32 numHeadersToKeep = 0;
|
|
PRBool keepUnreadMessagesOnly = PR_FALSE;
|
|
PRInt32 daysToKeepBodies = 0;
|
|
PRBool cleanupBodiesByDays = PR_FALSE;
|
|
nsresult rv = NS_OK;
|
|
if (!m_retentionSettings)
|
|
{
|
|
m_retentionSettings = do_CreateInstance(NS_MSG_RETENTIONSETTINGS_CONTRACTID);
|
|
if (m_retentionSettings)
|
|
{
|
|
rv = GetBoolValue("keepUnreadOnly", &keepUnreadMessagesOnly);
|
|
rv = GetIntValue("retainBy", (PRInt32*) &retainByPreference);
|
|
rv = GetIntValue("numHdrsToKeep", &numHeadersToKeep);
|
|
rv = GetIntValue("daysToKeepHdrs", &daysToKeepHdrs);
|
|
rv = GetIntValue("daysToKeepBodies", &daysToKeepBodies);
|
|
rv = GetBoolValue("cleanupBodies", &cleanupBodiesByDays);
|
|
m_retentionSettings->SetRetainByPreference(retainByPreference);
|
|
m_retentionSettings->SetNumHeadersToKeep((PRUint32) numHeadersToKeep);
|
|
m_retentionSettings->SetKeepUnreadMessagesOnly(keepUnreadMessagesOnly);
|
|
m_retentionSettings->SetDaysToKeepBodies(daysToKeepBodies);
|
|
m_retentionSettings->SetDaysToKeepHdrs(daysToKeepHdrs);
|
|
m_retentionSettings->SetCleanupBodiesByDays(cleanupBodiesByDays);
|
|
}
|
|
else
|
|
rv = NS_ERROR_OUT_OF_MEMORY;
|
|
// Create an empty retention settings object,
|
|
// get the settings from the server prefs, and init the object from the prefs.
|
|
}
|
|
*settings = m_retentionSettings;
|
|
NS_IF_ADDREF(*settings); return rv;
|
|
}
|
|
|
|
NS_IMETHODIMP nsMsgIncomingServer::SetRetentionSettings(nsIMsgRetentionSettings *settings)
|
|
{
|
|
nsMsgRetainByPreference retainByPreference;
|
|
PRUint32 daysToKeepHdrs = 0;
|
|
PRUint32 numHeadersToKeep = 0;
|
|
PRBool keepUnreadMessagesOnly = PR_FALSE;
|
|
PRUint32 daysToKeepBodies = 0;
|
|
PRBool cleanupBodiesByDays = PR_FALSE;
|
|
m_retentionSettings = settings;
|
|
m_retentionSettings->GetRetainByPreference(&retainByPreference);
|
|
m_retentionSettings->GetNumHeadersToKeep(&numHeadersToKeep);
|
|
m_retentionSettings->GetKeepUnreadMessagesOnly(&keepUnreadMessagesOnly);
|
|
m_retentionSettings->GetDaysToKeepBodies(&daysToKeepBodies);
|
|
m_retentionSettings->GetDaysToKeepHdrs(&daysToKeepHdrs);
|
|
m_retentionSettings->GetCleanupBodiesByDays(&cleanupBodiesByDays);
|
|
nsresult rv = SetBoolValue("keepUnreadOnly", keepUnreadMessagesOnly);
|
|
rv = SetIntValue("retainBy", retainByPreference);
|
|
rv = SetIntValue("numHdrsToKeep", numHeadersToKeep);
|
|
rv = SetIntValue("daysToKeepHdrs", daysToKeepHdrs);
|
|
rv = SetIntValue("daysToKeepBodies", daysToKeepBodies);
|
|
rv = SetBoolValue("cleanupBodies", cleanupBodiesByDays);
|
|
return rv;
|
|
}
|
|
|
|
NS_IMETHODIMP
|
|
nsMsgIncomingServer::GetDisplayStartupPage(PRBool *displayStartupPage)
|
|
{
|
|
NS_ENSURE_ARG_POINTER(displayStartupPage);
|
|
*displayStartupPage = m_displayStartupPage;
|
|
return NS_OK;
|
|
}
|
|
|
|
NS_IMETHODIMP
|
|
nsMsgIncomingServer::SetDisplayStartupPage(PRBool displayStartupPage)
|
|
{
|
|
m_displayStartupPage = displayStartupPage;
|
|
return NS_OK;
|
|
}
|
|
|
|
|
|
NS_IMETHODIMP nsMsgIncomingServer::GetDownloadSettings(nsIMsgDownloadSettings **settings)
|
|
{
|
|
NS_ENSURE_ARG_POINTER(settings);
|
|
PRBool downloadUnreadOnly = PR_FALSE;
|
|
PRBool downloadByDate = PR_FALSE;
|
|
PRUint32 ageLimitOfMsgsToDownload = 0;
|
|
nsresult rv = NS_OK;
|
|
if (!m_downloadSettings)
|
|
{
|
|
m_downloadSettings = do_CreateInstance(NS_MSG_DOWNLOADSETTINGS_CONTRACTID);
|
|
if (m_downloadSettings)
|
|
{
|
|
rv = GetBoolValue("downloadUnreadOnly", &downloadUnreadOnly);
|
|
rv = GetBoolValue("downloadByDate", &downloadByDate);
|
|
rv = GetIntValue("ageLimit", (PRInt32 *) &ageLimitOfMsgsToDownload);
|
|
m_downloadSettings->SetDownloadUnreadOnly(downloadUnreadOnly);
|
|
m_downloadSettings->SetDownloadByDate(downloadByDate);
|
|
m_downloadSettings->SetAgeLimitOfMsgsToDownload(ageLimitOfMsgsToDownload);
|
|
}
|
|
else
|
|
rv = NS_ERROR_OUT_OF_MEMORY;
|
|
// Create an empty download settings object,
|
|
// get the settings from the server prefs, and init the object from the prefs.
|
|
}
|
|
*settings = m_downloadSettings;
|
|
NS_IF_ADDREF(*settings); return rv;
|
|
}
|
|
|
|
NS_IMETHODIMP nsMsgIncomingServer::SetDownloadSettings(nsIMsgDownloadSettings *settings)
|
|
{
|
|
m_downloadSettings = settings;
|
|
PRBool downloadUnreadOnly = PR_FALSE;
|
|
PRBool downloadByDate = PR_FALSE;
|
|
PRUint32 ageLimitOfMsgsToDownload = 0;
|
|
m_downloadSettings->GetDownloadUnreadOnly(&downloadUnreadOnly);
|
|
m_downloadSettings->GetDownloadByDate(&downloadByDate);
|
|
m_downloadSettings->GetAgeLimitOfMsgsToDownload(&ageLimitOfMsgsToDownload);
|
|
nsresult rv = SetBoolValue("downloadUnreadOnly", downloadUnreadOnly);
|
|
rv = SetBoolValue("downloadByDate", downloadByDate);
|
|
rv = SetIntValue("ageLimit", ageLimitOfMsgsToDownload);
|
|
|
|
return rv;
|
|
}
|
|
|
|
NS_IMETHODIMP
|
|
nsMsgIncomingServer::GetSupportsDiskSpace(PRBool *aSupportsDiskSpace)
|
|
{
|
|
NS_ENSURE_ARG_POINTER(aSupportsDiskSpace);
|
|
*aSupportsDiskSpace = PR_TRUE;
|
|
return NS_OK;
|
|
}
|
|
|
|
NS_IMETHODIMP
|
|
nsMsgIncomingServer::GetOfflineSupportLevel(PRInt32 *aSupportLevel)
|
|
{
|
|
NS_ENSURE_ARG_POINTER(aSupportLevel);
|
|
nsresult rv;
|
|
|
|
rv = GetIntValue("offline_support_level", aSupportLevel);
|
|
if (*aSupportLevel != OFFLINE_SUPPORT_LEVEL_UNDEFINED) return rv;
|
|
|
|
// set default value
|
|
*aSupportLevel = OFFLINE_SUPPORT_LEVEL_NONE;
|
|
return NS_OK;
|
|
}
|
|
|
|
NS_IMETHODIMP
|
|
nsMsgIncomingServer::SetOfflineSupportLevel(PRInt32 aSupportLevel)
|
|
{
|
|
SetIntValue("offline_support_level", aSupportLevel);
|
|
return NS_OK;
|
|
}
|
|
#define BASE_MSGS_URL "chrome://messenger/locale/messenger.properties"
|
|
|
|
NS_IMETHODIMP nsMsgIncomingServer::DisplayOfflineMsg(nsIMsgWindow *aMsgWindow)
|
|
{
|
|
nsresult rv;
|
|
nsCOMPtr<nsIStringBundleService> bundleService = do_GetService(NS_STRINGBUNDLE_CONTRACTID, &rv);
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
nsCOMPtr<nsIStringBundle> bundle;
|
|
rv = bundleService->CreateBundle(BASE_MSGS_URL, getter_AddRefs(bundle));
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
if (bundle)
|
|
{
|
|
nsXPIDLString errorMsgTitle;
|
|
nsXPIDLString errorMsgBody;
|
|
|
|
bundle->GetStringFromName(NS_LITERAL_STRING("nocachedbodybody").get(), getter_Copies(errorMsgBody));
|
|
bundle->GetStringFromName(NS_LITERAL_STRING("nocachedbodytitle").get(), getter_Copies(errorMsgTitle));
|
|
if (aMsgWindow)
|
|
return aMsgWindow->DisplayHTMLInMessagePane(errorMsgTitle, errorMsgBody, PR_TRUE);
|
|
else
|
|
return NS_ERROR_FAILURE;
|
|
|
|
}
|
|
return rv;
|
|
}
|
|
|
|
// Called only during the migration process. A unique name is generated for the
|
|
// migrated account.
|
|
NS_IMETHODIMP
|
|
nsMsgIncomingServer::GeneratePrettyNameForMigration(PRUnichar **aPrettyName)
|
|
{
|
|
/**
|
|
* 4.x had provisions for multiple imap servers to be maintained under
|
|
* single identity. So, when migrated each of those server accounts need
|
|
* to be represented by unique account name. nsImapIncomingServer will
|
|
* override the implementation for this to do the right thing.
|
|
*/
|
|
return NS_ERROR_NOT_IMPLEMENTED;
|
|
}
|
|
|
|
NS_IMETHODIMP
|
|
nsMsgIncomingServer::GetFilterScope(nsMsgSearchScopeValue *filterScope)
|
|
{
|
|
NS_ENSURE_ARG_POINTER(filterScope);
|
|
|
|
*filterScope = nsMsgSearchScope::offlineMailFilter;
|
|
return NS_OK;
|
|
}
|
|
|
|
NS_IMETHODIMP
|
|
nsMsgIncomingServer::GetSearchScope(nsMsgSearchScopeValue *searchScope)
|
|
{
|
|
NS_ENSURE_ARG_POINTER(searchScope);
|
|
|
|
*searchScope = nsMsgSearchScope::offlineMail;
|
|
return NS_OK;
|
|
}
|
|
|
|
NS_IMETHODIMP
|
|
nsMsgIncomingServer::GetIsSecure(PRBool* aIsSecure)
|
|
{
|
|
return GetBoolValue("isSecure", aIsSecure);
|
|
}
|
|
|
|
NS_IMETHODIMP
|
|
nsMsgIncomingServer::SetIsSecure(PRBool aIsSecure)
|
|
{
|
|
PRBool isSecure;
|
|
GetBoolValue("isSecure", &isSecure);
|
|
if (isSecure != aIsSecure) {
|
|
SetBoolValue("isSecure", aIsSecure);
|
|
if (m_rootFolder)
|
|
m_rootFolder->NotifyBoolPropertyChanged(NS_NewAtom("isSecure"), isSecure, aIsSecure);
|
|
}
|
|
return NS_OK;
|
|
}
|
|
|
|
// use the convenience macros to implement the accessors
|
|
NS_IMPL_SERVERPREF_STR(nsMsgIncomingServer, Username, "userName")
|
|
NS_IMPL_SERVERPREF_STR(nsMsgIncomingServer, PrefPassword, "password")
|
|
NS_IMPL_SERVERPREF_BOOL(nsMsgIncomingServer, UseSecAuth, "useSecAuth")
|
|
NS_IMPL_SERVERPREF_BOOL(nsMsgIncomingServer, LogonFallback, "logon_fallback")
|
|
NS_IMPL_SERVERPREF_INT(nsMsgIncomingServer, BiffMinutes, "check_time")
|
|
NS_IMPL_SERVERPREF_STR(nsMsgIncomingServer, Type, "type")
|
|
// in 4.x, this was "mail.pop3_gets_new_mail" for pop and
|
|
// "mail.imap.new_mail_get_headers" for imap (it was global)
|
|
// in 5.0, this will be per server, and it will be "download_on_biff"
|
|
NS_IMPL_SERVERPREF_BOOL(nsMsgIncomingServer, DownloadOnBiff, "download_on_biff")
|
|
NS_IMPL_SERVERPREF_BOOL(nsMsgIncomingServer, Valid, "valid")
|
|
NS_IMPL_SERVERPREF_STR(nsMsgIncomingServer, RedirectorType, "redirector_type")
|
|
NS_IMPL_SERVERPREF_BOOL(nsMsgIncomingServer, EmptyTrashOnExit,
|
|
"empty_trash_on_exit")
|
|
NS_IMPL_SERVERPREF_BOOL(nsMsgIncomingServer, CanDelete, "canDelete")
|
|
NS_IMPL_SERVERPREF_BOOL(nsMsgIncomingServer, LoginAtStartUp, "login_at_startup")
|
|
NS_IMPL_SERVERPREF_BOOL(nsMsgIncomingServer,
|
|
DefaultCopiesAndFoldersPrefsToServer,
|
|
"allows_specialfolders_usage")
|
|
|
|
NS_IMPL_SERVERPREF_BOOL(nsMsgIncomingServer,
|
|
CanCreateFoldersOnServer,
|
|
"canCreateFolders")
|
|
|
|
NS_IMPL_SERVERPREF_BOOL(nsMsgIncomingServer,
|
|
CanFileMessagesOnServer,
|
|
"canFileMessages")
|
|
|
|
NS_IMPL_SERVERPREF_BOOL(nsMsgIncomingServer,
|
|
LimitOfflineMessageSize,
|
|
"limit_offline_message_size")
|
|
|
|
NS_IMPL_SERVERPREF_INT(nsMsgIncomingServer, MaxMessageSize, "max_size")
|
|
|
|
NS_IMPL_SERVERPREF_INT(nsMsgIncomingServer, IncomingDuplicateAction, "dup_action")
|
|
|
|
NS_IMETHODIMP nsMsgIncomingServer::SetUnicharAttribute(const char *aName, const PRUnichar *val)
|
|
{
|
|
return SetUnicharValue(aName, val);
|
|
}
|
|
|
|
NS_IMETHODIMP nsMsgIncomingServer::GetUnicharAttribute(const char *aName, PRUnichar **val)
|
|
{
|
|
return GetUnicharValue(aName, val);
|
|
}
|
|
|
|
NS_IMETHODIMP nsMsgIncomingServer::SetCharAttribute(const char *aName, const char *val)
|
|
{
|
|
return SetCharValue(aName, val);
|
|
}
|
|
|
|
NS_IMETHODIMP nsMsgIncomingServer::GetCharAttribute(const char *aName, char **val)
|
|
{
|
|
return GetCharValue(aName, val);
|
|
}
|
|
|
|
NS_IMETHODIMP nsMsgIncomingServer::SetBoolAttribute(const char *aName, PRBool val)
|
|
{
|
|
return SetBoolValue(aName, val);
|
|
}
|
|
|
|
NS_IMETHODIMP nsMsgIncomingServer::GetBoolAttribute(const char *aName, PRBool *val)
|
|
{
|
|
return GetBoolValue(aName, val);
|
|
}
|
|
|
|
NS_IMETHODIMP nsMsgIncomingServer::SetIntAttribute(const char *aName, PRInt32 val)
|
|
{
|
|
return SetIntValue(aName, val);
|
|
}
|
|
|
|
NS_IMETHODIMP nsMsgIncomingServer::GetIntAttribute(const char *aName, PRInt32 *val)
|
|
{
|
|
return GetIntValue(aName, val);
|
|
}
|
|
|
|
|
|
NS_IMETHODIMP nsMsgIncomingServer::GetSocketType(PRInt32 *aSocketType)
|
|
{
|
|
nsCAutoString fullPrefName;
|
|
getPrefName(m_serverKey.get(), "socketType", fullPrefName);
|
|
nsresult rv = m_prefBranch->GetIntPref(fullPrefName.get(), aSocketType);
|
|
|
|
// socketType is set to default value. Look at isSecure setting
|
|
if (NS_FAILED(rv))
|
|
{
|
|
PRBool isSecure;
|
|
rv = GetBoolValue("isSecure", &isSecure);
|
|
if (NS_SUCCEEDED(rv) && isSecure)
|
|
{
|
|
*aSocketType = nsIMsgIncomingServer::useSSL;
|
|
SetSocketType(*aSocketType);
|
|
}
|
|
else
|
|
{
|
|
getDefaultIntPref("socketType", aSocketType);
|
|
}
|
|
}
|
|
return rv;
|
|
|
|
}
|
|
|
|
NS_IMETHODIMP nsMsgIncomingServer::SetSocketType(PRInt32 aSocketType)
|
|
{
|
|
nsCAutoString fullPrefName;
|
|
getPrefName(m_serverKey.get(), "socketType", fullPrefName);
|
|
nsresult rv = m_prefBranch->SetIntPref(fullPrefName.get(), aSocketType);
|
|
|
|
return rv;
|
|
}
|
|
|
|
// Check if the password is available and return a boolean indicating whether
|
|
// it is being authenticated or not.
|
|
NS_IMETHODIMP
|
|
nsMsgIncomingServer::GetPasswordPromptRequired(PRBool *aPasswordIsRequired)
|
|
{
|
|
nsresult rv = NS_OK;
|
|
NS_ENSURE_ARG_POINTER(aPasswordIsRequired);
|
|
|
|
*aPasswordIsRequired = PR_TRUE;
|
|
// If the password is empty, check to see if it is stored and to be retrieved
|
|
if (m_password.IsEmpty()) {
|
|
nsCOMPtr <nsIPasswordManagerInternal> passwordMgrInt = do_GetService(NS_PASSWORDMANAGER_CONTRACTID, &rv);
|
|
if(NS_SUCCEEDED(rv) && passwordMgrInt) {
|
|
|
|
// Get the current server URI
|
|
nsXPIDLCString currServerUri;
|
|
rv = GetServerURI(getter_Copies(currServerUri));
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
// Obtain the server URI which is in the format <protocol>://<userid>@<hostname>.
|
|
// Password manager uses the same format when it stores the password on user's request.
|
|
|
|
nsCAutoString hostFound;
|
|
nsAutoString userNameFound;
|
|
nsAutoString passwordFound;
|
|
|
|
// Get password entry corresponding to the host URI we are passing in.
|
|
rv = passwordMgrInt->FindPasswordEntry(currServerUri, EmptyString(), EmptyString(),
|
|
hostFound, userNameFound, passwordFound);
|
|
if (NS_FAILED(rv))
|
|
{
|
|
*aPasswordIsRequired = PR_TRUE;
|
|
return NS_OK;
|
|
}
|
|
|
|
// If a match is found, password element is filled in. Convert the
|
|
// obtained password and store it for the session.
|
|
if (!passwordFound.IsEmpty())
|
|
{
|
|
if (PasswordProtectLocalCache()) // hmm, shouldn't be in here, so remove it.
|
|
{
|
|
ForgetPassword();
|
|
}
|
|
else
|
|
{
|
|
nsCAutoString cStrPassword;
|
|
cStrPassword.AssignWithConversion(passwordFound);
|
|
rv = SetPassword(cStrPassword.get());
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
*aPasswordIsRequired = m_password.IsEmpty();
|
|
return rv;
|
|
}
|
|
|
|
NS_IMETHODIMP nsMsgIncomingServer::ConfigureTemporaryFilters(nsIMsgFilterList *aFilterList)
|
|
{
|
|
nsresult rv = ConfigureTemporaryReturnReceiptsFilter(aFilterList);
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
return ConfigureTemporaryServerSpamFilters(aFilterList);
|
|
}
|
|
|
|
nsresult
|
|
nsMsgIncomingServer::ConfigureTemporaryServerSpamFilters(nsIMsgFilterList *filterList)
|
|
{
|
|
nsCOMPtr<nsISpamSettings> spamSettings;
|
|
nsresult rv = GetSpamSettings(getter_AddRefs(spamSettings));
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
PRBool useServerFilter;
|
|
rv = spamSettings->GetUseServerFilter(&useServerFilter);
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
// if we aren't configured to use server filters, then return early.
|
|
if (!useServerFilter)
|
|
return NS_OK;
|
|
|
|
// For performance reasons, we'll handle clearing of filters if the user turns
|
|
// off the server-side filters from the junk mail controls, in the junk mail controls.
|
|
nsCAutoString serverFilterName;
|
|
spamSettings->GetServerFilterName(serverFilterName);
|
|
if (serverFilterName.IsEmpty())
|
|
return NS_OK;
|
|
PRInt32 serverFilterTrustFlags = 0;
|
|
(void) spamSettings->GetServerFilterTrustFlags(&serverFilterTrustFlags);
|
|
if (!serverFilterTrustFlags)
|
|
return NS_OK;
|
|
// check if filters have been setup already.
|
|
nsAutoString yesFilterName, noFilterName;
|
|
yesFilterName.AppendWithConversion(serverFilterName);
|
|
yesFilterName.AppendLiteral("Yes");
|
|
|
|
noFilterName.AppendWithConversion(serverFilterName);
|
|
noFilterName.AppendLiteral("No");
|
|
|
|
nsCOMPtr<nsIMsgFilter> newFilter;
|
|
(void) filterList->GetFilterNamed(yesFilterName.get(),
|
|
getter_AddRefs(newFilter));
|
|
|
|
if (!newFilter)
|
|
(void) filterList->GetFilterNamed(noFilterName.get(),
|
|
getter_AddRefs(newFilter));
|
|
if (newFilter)
|
|
return NS_OK;
|
|
|
|
nsCAutoString serverFilterFileName(serverFilterName);
|
|
serverFilterFileName.Append(".sfd");
|
|
nsCOMPtr<nsIFile> file;
|
|
rv = NS_GetSpecialDirectory(NS_APP_USER_PROFILE_50_DIR, getter_AddRefs(file));
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
rv = file->AppendNative(serverFilterFileName);
|
|
|
|
// if the file doesn't exist, we should try to get it from the defaults directory and copy it over
|
|
PRBool exists = PR_FALSE;
|
|
file->Exists(&exists);
|
|
if (!exists)
|
|
{
|
|
nsCOMPtr<nsIMsgMailSession> mailSession = do_GetService(NS_MSGMAILSESSION_CONTRACTID, &rv);
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
nsCOMPtr<nsIFile> defaultServerFilterFile;
|
|
rv = mailSession->GetDataFilesDir("messenger", getter_AddRefs(defaultServerFilterFile));
|
|
rv = defaultServerFilterFile->AppendNative(serverFilterFileName);
|
|
|
|
nsCOMPtr<nsIFileSpec> defaultServerFilterSpec;
|
|
rv = NS_NewFileSpecFromIFile(defaultServerFilterFile, getter_AddRefs(defaultServerFilterSpec));
|
|
|
|
// get the profile directory
|
|
rv = NS_GetSpecialDirectory(NS_APP_USER_PROFILE_50_DIR, getter_AddRefs(defaultServerFilterFile));
|
|
|
|
// convert to spec
|
|
nsCOMPtr<nsIFileSpec> profileDirSpec;
|
|
rv = NS_NewFileSpecFromIFile(defaultServerFilterFile, getter_AddRefs(profileDirSpec));
|
|
// now copy the file over to the profile directory
|
|
defaultServerFilterSpec->CopyToDir(profileDirSpec);
|
|
}
|
|
|
|
nsCOMPtr<nsIFileSpec> serverFilterSpec;
|
|
rv = NS_NewFileSpecFromIFile(file, getter_AddRefs(serverFilterSpec));
|
|
if (NS_FAILED(rv)) return rv;
|
|
|
|
nsCOMPtr<nsIMsgFilterService> filterService = do_GetService(NS_MSGFILTERSERVICE_CONTRACTID, &rv);
|
|
nsCOMPtr<nsIMsgFilterList> serverFilterList;
|
|
|
|
rv = filterService->OpenFilterList(serverFilterSpec, NULL, NULL, getter_AddRefs(serverFilterList));
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
rv = serverFilterList->GetFilterNamed(yesFilterName.get(),
|
|
getter_AddRefs(newFilter));
|
|
if (newFilter && serverFilterTrustFlags & nsISpamSettings::TRUST_POSITIVES)
|
|
{
|
|
newFilter->SetTemporary(PR_TRUE);
|
|
// check if we're supposed to move junk mail to junk folder; if so,
|
|
// add filter action to do so.
|
|
PRBool moveOnSpam, markAsReadOnSpam;
|
|
spamSettings->GetMoveOnSpam(&moveOnSpam);
|
|
if (moveOnSpam)
|
|
{
|
|
nsXPIDLCString spamFolderURI;
|
|
rv = spamSettings->GetSpamFolderURI(getter_Copies(spamFolderURI));
|
|
if (NS_SUCCEEDED(rv) && (!spamFolderURI.IsEmpty()))
|
|
{
|
|
nsCOMPtr <nsIMsgRuleAction> moveAction;
|
|
rv = newFilter->CreateAction(getter_AddRefs(moveAction));
|
|
if (NS_SUCCEEDED(rv))
|
|
{
|
|
moveAction->SetType(nsMsgFilterAction::MoveToFolder);
|
|
moveAction->SetTargetFolderUri(spamFolderURI);
|
|
newFilter->AppendAction(moveAction);
|
|
}
|
|
}
|
|
}
|
|
spamSettings->GetMarkAsReadOnSpam(&markAsReadOnSpam);
|
|
if (markAsReadOnSpam)
|
|
{
|
|
nsCOMPtr <nsIMsgRuleAction> markAsReadAction;
|
|
rv = newFilter->CreateAction(getter_AddRefs(markAsReadAction));
|
|
if (NS_SUCCEEDED(rv))
|
|
{
|
|
markAsReadAction->SetType(nsMsgFilterAction::MarkRead);
|
|
newFilter->AppendAction(markAsReadAction);
|
|
}
|
|
}
|
|
filterList->InsertFilterAt(0, newFilter);
|
|
}
|
|
|
|
rv = serverFilterList->GetFilterNamed(noFilterName.get(),
|
|
getter_AddRefs(newFilter));
|
|
if (newFilter && serverFilterTrustFlags & nsISpamSettings::TRUST_NEGATIVES)
|
|
{
|
|
newFilter->SetTemporary(PR_TRUE);
|
|
filterList->InsertFilterAt(0, newFilter);
|
|
}
|
|
|
|
return rv;
|
|
}
|
|
|
|
nsresult
|
|
nsMsgIncomingServer::ConfigureTemporaryReturnReceiptsFilter(nsIMsgFilterList *filterList)
|
|
{
|
|
nsresult rv;
|
|
|
|
nsCOMPtr<nsIMsgAccountManager> accountMgr = do_GetService(NS_MSGACCOUNTMANAGER_CONTRACTID, &rv);
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
nsCOMPtr<nsIMsgIdentity> identity;
|
|
rv = accountMgr->GetFirstIdentityForServer(this, getter_AddRefs(identity));
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
// this can return success and a null identity...
|
|
|
|
PRBool useCustomPrefs = PR_FALSE;
|
|
PRInt32 incorp = nsIMsgMdnGenerator::eIncorporateInbox;
|
|
|
|
if (!identity)
|
|
return NS_ERROR_NULL_POINTER;
|
|
|
|
identity->GetBoolAttribute("use_custom_prefs", &useCustomPrefs);
|
|
if (useCustomPrefs)
|
|
rv = GetIntValue("incorporate_return_receipt", &incorp);
|
|
else
|
|
{
|
|
rv = m_prefBranch->GetIntPref("mail.incorporate.return_receipt", &incorp);
|
|
}
|
|
|
|
PRBool enable = (incorp == nsIMsgMdnGenerator::eIncorporateSent);
|
|
|
|
// this is a temporary, internal mozilla filter
|
|
// it will not show up in the UI, it will not be written to disk
|
|
NS_NAMED_LITERAL_STRING(internalReturnReceiptFilterName, "mozilla-temporary-internal-MDN-receipt-filter");
|
|
|
|
nsCOMPtr<nsIMsgFilter> newFilter;
|
|
rv = filterList->GetFilterNamed(internalReturnReceiptFilterName.get(),
|
|
getter_AddRefs(newFilter));
|
|
if (newFilter)
|
|
newFilter->SetEnabled(enable);
|
|
else if (enable)
|
|
{
|
|
nsXPIDLCString actionTargetFolderUri;
|
|
rv = identity->GetFccFolder(getter_Copies(actionTargetFolderUri));
|
|
if (!actionTargetFolderUri.IsEmpty())
|
|
{
|
|
filterList->CreateFilter(internalReturnReceiptFilterName.get(),
|
|
getter_AddRefs(newFilter));
|
|
if (newFilter)
|
|
{
|
|
newFilter->SetEnabled(PR_TRUE);
|
|
// this internal filter is temporary
|
|
// and should not show up in the UI or be written to disk
|
|
newFilter->SetTemporary(PR_TRUE);
|
|
|
|
nsCOMPtr<nsIMsgSearchTerm> term;
|
|
nsCOMPtr<nsIMsgSearchValue> value;
|
|
|
|
rv = newFilter->CreateTerm(getter_AddRefs(term));
|
|
if (NS_SUCCEEDED(rv))
|
|
{
|
|
rv = term->GetValue(getter_AddRefs(value));
|
|
if (NS_SUCCEEDED(rv))
|
|
{
|
|
// we need to use OtherHeader + 1 so nsMsgFilter::GetTerm will
|
|
// return our custom header.
|
|
value->SetAttrib(nsMsgSearchAttrib::OtherHeader + 1);
|
|
value->SetStr(NS_LITERAL_STRING("multipart/report").get());
|
|
term->SetAttrib(nsMsgSearchAttrib::OtherHeader + 1);
|
|
term->SetOp(nsMsgSearchOp::Contains);
|
|
term->SetBooleanAnd(PR_TRUE);
|
|
term->SetArbitraryHeader("Content-Type");
|
|
term->SetValue(value);
|
|
newFilter->AppendTerm(term);
|
|
}
|
|
}
|
|
rv = newFilter->CreateTerm(getter_AddRefs(term));
|
|
if (NS_SUCCEEDED(rv))
|
|
{
|
|
rv = term->GetValue(getter_AddRefs(value));
|
|
if (NS_SUCCEEDED(rv))
|
|
{
|
|
// XXX todo
|
|
// determine if ::OtherHeader is the best way to do this.
|
|
// see nsMsgSearchOfflineMail::MatchTerms()
|
|
value->SetAttrib(nsMsgSearchAttrib::OtherHeader + 1);
|
|
value->SetStr(NS_LITERAL_STRING("disposition-notification").get());
|
|
term->SetAttrib(nsMsgSearchAttrib::OtherHeader + 1);
|
|
term->SetOp(nsMsgSearchOp::Contains);
|
|
term->SetBooleanAnd(PR_TRUE);
|
|
term->SetArbitraryHeader("Content-Type");
|
|
term->SetValue(value);
|
|
newFilter->AppendTerm(term);
|
|
}
|
|
}
|
|
nsCOMPtr<nsIMsgRuleAction> filterAction;
|
|
newFilter->CreateAction(getter_AddRefs(filterAction));
|
|
filterAction->SetType(nsMsgFilterAction::MoveToFolder);
|
|
filterAction->SetTargetFolderUri(actionTargetFolderUri);
|
|
newFilter->AppendAction(filterAction);
|
|
filterList->InsertFilterAt(0, newFilter);
|
|
}
|
|
}
|
|
}
|
|
return rv;
|
|
}
|
|
|
|
NS_IMETHODIMP
|
|
nsMsgIncomingServer::ClearTemporaryReturnReceiptsFilter()
|
|
{
|
|
if (mFilterList)
|
|
{
|
|
nsCOMPtr<nsIMsgFilter> mdnFilter;
|
|
nsresult rv = mFilterList->GetFilterNamed(
|
|
NS_LITERAL_STRING("mozilla-temporary-internal-MDN-receipt-filter").get(),
|
|
getter_AddRefs(mdnFilter));
|
|
if (NS_SUCCEEDED(rv) && mdnFilter)
|
|
return mFilterList->RemoveFilter(mdnFilter);
|
|
}
|
|
return NS_OK;
|
|
}
|
|
|
|
NS_IMETHODIMP
|
|
nsMsgIncomingServer::GetMsgFolderFromURI(nsIMsgFolder *aFolderResource, const char *aURI, nsIMsgFolder **aFolder)
|
|
{
|
|
nsCOMPtr<nsIMsgFolder> rootMsgFolder;
|
|
nsresult rv = GetRootMsgFolder(getter_AddRefs(rootMsgFolder));
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
if (!rootMsgFolder)
|
|
return NS_ERROR_UNEXPECTED;
|
|
|
|
nsCOMPtr <nsIMsgFolder> msgFolder;
|
|
rv = rootMsgFolder->GetChildWithURI(aURI, PR_TRUE, PR_TRUE /*caseInsensitive*/, getter_AddRefs(msgFolder));
|
|
if (NS_FAILED(rv) || !msgFolder)
|
|
msgFolder = aFolderResource;
|
|
|
|
NS_IF_ADDREF(*aFolder = msgFolder);
|
|
return NS_OK;
|
|
}
|
|
|
|
NS_IMETHODIMP
|
|
nsMsgIncomingServer::SetSpamSettings(nsISpamSettings *aSpamSettings)
|
|
{
|
|
NS_ENSURE_ARG_POINTER(aSpamSettings);
|
|
nsresult rv;
|
|
|
|
if (!mSpamSettings) {
|
|
mSpamSettings = do_CreateInstance(NS_SPAMSETTINGS_CONTRACTID, &rv);
|
|
NS_ENSURE_SUCCESS(rv,rv);
|
|
|
|
rv = mSpamSettings->SetServer(this);
|
|
NS_ENSURE_SUCCESS(rv,rv);
|
|
}
|
|
|
|
nsXPIDLCString oldJunkFolderURI;
|
|
rv = mSpamSettings->GetSpamFolderURI(getter_Copies(oldJunkFolderURI));
|
|
NS_ENSURE_SUCCESS(rv,rv);
|
|
|
|
if (!oldJunkFolderURI.IsEmpty()) {
|
|
nsCOMPtr<nsIMsgFolder> oldJunkFolder;
|
|
rv = GetExistingFolder(oldJunkFolderURI.get(), getter_AddRefs(oldJunkFolder));
|
|
if (NS_SUCCEEDED(rv) && oldJunkFolder)
|
|
{
|
|
// remove the MSG_FOLDER_FLAG_JUNK on the old junk folder
|
|
// XXX TODO
|
|
// JUNK MAIL RELATED
|
|
// (in ClearFlag?) we need to make sure that this folder
|
|
// is not a the junk folder for another account
|
|
// the same goes for set flag. have fun with all that.
|
|
oldJunkFolder->ClearFlag(MSG_FOLDER_FLAG_JUNK);
|
|
}
|
|
}
|
|
|
|
rv = mSpamSettings->Clone(aSpamSettings);
|
|
NS_ENSURE_SUCCESS(rv,rv);
|
|
|
|
// set the server prefs from the spam settings
|
|
PRInt32 spamLevel;
|
|
rv = mSpamSettings->GetLevel(&spamLevel);
|
|
NS_ENSURE_SUCCESS(rv,rv);
|
|
rv = SetIntValue("spamLevel", spamLevel);
|
|
NS_ENSURE_SUCCESS(rv,rv);
|
|
|
|
PRBool moveOnSpam;
|
|
(void)mSpamSettings->GetMoveOnSpam(&moveOnSpam);
|
|
(void)SetBoolValue("moveOnSpam", moveOnSpam);
|
|
|
|
PRBool markAsReadOnSpam;
|
|
(void)mSpamSettings->GetMarkAsReadOnSpam(&markAsReadOnSpam);
|
|
(void)SetBoolValue("markAsReadOnSpam", markAsReadOnSpam);
|
|
|
|
PRInt32 moveTargetMode;
|
|
(void)mSpamSettings->GetMoveTargetMode(&moveTargetMode);
|
|
(void)SetIntValue("moveTargetMode", moveTargetMode);
|
|
|
|
PRBool manualMark;
|
|
(void)mSpamSettings->GetManualMark(&manualMark);
|
|
(void)SetBoolValue("manualMark", manualMark);
|
|
|
|
PRInt32 manualMarkMode;
|
|
(void)mSpamSettings->GetManualMarkMode(&manualMarkMode);
|
|
(void)SetIntValue("manualMarkMode", manualMarkMode);
|
|
|
|
nsXPIDLCString spamActionTargetAccount;
|
|
rv = mSpamSettings->GetActionTargetAccount(getter_Copies(spamActionTargetAccount));
|
|
NS_ENSURE_SUCCESS(rv,rv);
|
|
rv = SetCharValue("spamActionTargetAccount", spamActionTargetAccount.get());
|
|
NS_ENSURE_SUCCESS(rv,rv);
|
|
|
|
nsXPIDLCString spamActionTargetFolder;
|
|
rv = mSpamSettings->GetActionTargetFolder(getter_Copies(spamActionTargetFolder));
|
|
NS_ENSURE_SUCCESS(rv,rv);
|
|
rv = SetCharValue("spamActionTargetFolder", spamActionTargetFolder.get());
|
|
NS_ENSURE_SUCCESS(rv,rv);
|
|
|
|
nsXPIDLCString newJunkFolderURI;
|
|
rv = mSpamSettings->GetSpamFolderURI(getter_Copies(newJunkFolderURI));
|
|
NS_ENSURE_SUCCESS(rv,rv);
|
|
|
|
// only try to create the junk folder if we are moving junk
|
|
// and we have a non-empty uri
|
|
if (moveOnSpam && !newJunkFolderURI.IsEmpty()) {
|
|
// as the url listener, the spam settings will set the MSG_FOLDER_FLAG_JUNK folder flag
|
|
// on the junk mail folder, after it is created
|
|
nsCOMPtr <nsIUrlListener> listener = do_QueryInterface(mSpamSettings, &rv);
|
|
NS_ENSURE_SUCCESS(rv,rv);
|
|
|
|
rv = GetOrCreateFolder(newJunkFolderURI, listener);
|
|
NS_ENSURE_SUCCESS(rv,rv);
|
|
}
|
|
|
|
PRBool useWhiteList;
|
|
rv = mSpamSettings->GetUseWhiteList(&useWhiteList);
|
|
NS_ENSURE_SUCCESS(rv,rv);
|
|
rv = SetBoolValue("useWhiteList", useWhiteList);
|
|
NS_ENSURE_SUCCESS(rv,rv);
|
|
|
|
nsXPIDLCString whiteListAbURI;
|
|
rv = mSpamSettings->GetWhiteListAbURI(getter_Copies(whiteListAbURI));
|
|
NS_ENSURE_SUCCESS(rv,rv);
|
|
rv = SetCharValue("whiteListAbURI", whiteListAbURI.get());
|
|
NS_ENSURE_SUCCESS(rv,rv);
|
|
|
|
PRBool purgeSpam;
|
|
rv = mSpamSettings->GetPurge(&purgeSpam);
|
|
NS_ENSURE_SUCCESS(rv,rv);
|
|
rv = SetBoolValue("purgeSpam", purgeSpam);
|
|
NS_ENSURE_SUCCESS(rv,rv);
|
|
|
|
PRInt32 purgeSpamInterval;
|
|
rv = mSpamSettings->GetPurgeInterval(&purgeSpamInterval);
|
|
NS_ENSURE_SUCCESS(rv,rv);
|
|
rv = SetIntValue("purgeSpamInterval", purgeSpamInterval);
|
|
NS_ENSURE_SUCCESS(rv,rv);
|
|
|
|
PRBool useServerFilter;
|
|
rv = mSpamSettings->GetUseServerFilter(&useServerFilter);
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
rv = SetBoolValue("useServerFilter", useServerFilter);
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
nsCAutoString serverFilterName;
|
|
mSpamSettings->GetServerFilterName(serverFilterName);
|
|
SetCharValue("serverFilterName", serverFilterName.get());
|
|
|
|
PRInt32 serverFilterTrustFlags;
|
|
mSpamSettings->GetServerFilterTrustFlags(&serverFilterTrustFlags);
|
|
SetIntValue("serverFilterTrustFlags", serverFilterTrustFlags);
|
|
|
|
PRInt32 loggingEnabled;
|
|
rv = mSpamSettings->GetLoggingEnabled(&loggingEnabled);
|
|
NS_ENSURE_SUCCESS(rv,rv);
|
|
rv = SetBoolValue("spamLoggingEnabled", loggingEnabled);
|
|
NS_ENSURE_SUCCESS(rv,rv);
|
|
|
|
// flush these pref changes to disk
|
|
nsCOMPtr<nsIPrefService> prefService = do_QueryInterface(m_prefBranch);
|
|
NS_ENSURE_TRUE(prefService, NS_ERROR_FAILURE);
|
|
|
|
return prefService->SavePrefFile(nsnull);
|
|
}
|
|
|
|
NS_IMETHODIMP
|
|
nsMsgIncomingServer::GetSpamSettings(nsISpamSettings **aSpamSettings)
|
|
{
|
|
NS_ENSURE_ARG_POINTER(aSpamSettings);
|
|
|
|
if (!mSpamSettings) {
|
|
nsresult rv;
|
|
|
|
mSpamSettings = do_CreateInstance(NS_SPAMSETTINGS_CONTRACTID, &rv);
|
|
NS_ENSURE_SUCCESS(rv,rv);
|
|
|
|
rv = mSpamSettings->SetServer(this);
|
|
NS_ENSURE_SUCCESS(rv,rv);
|
|
|
|
// set spam settings from server prefs
|
|
PRInt32 spamLevel;
|
|
rv = GetIntValue("spamLevel", &spamLevel);
|
|
NS_ENSURE_SUCCESS(rv,rv);
|
|
rv = mSpamSettings->SetLevel(spamLevel);
|
|
NS_ENSURE_SUCCESS(rv,rv);
|
|
|
|
PRBool moveOnSpam;
|
|
rv = GetBoolValue("moveOnSpam", &moveOnSpam);
|
|
NS_ENSURE_SUCCESS(rv,rv);
|
|
rv = mSpamSettings->SetMoveOnSpam(moveOnSpam);
|
|
NS_ENSURE_SUCCESS(rv,rv);
|
|
|
|
PRBool markAsReadOnSpam;
|
|
rv = GetBoolValue("markAsReadOnSpam", &markAsReadOnSpam);
|
|
NS_ENSURE_SUCCESS(rv,rv);
|
|
rv = mSpamSettings->SetMarkAsReadOnSpam(markAsReadOnSpam);
|
|
NS_ENSURE_SUCCESS(rv,rv);
|
|
|
|
PRInt32 moveTargetMode;
|
|
rv = GetIntValue("moveTargetMode", &moveTargetMode);
|
|
NS_ENSURE_SUCCESS(rv,rv);
|
|
rv = mSpamSettings->SetMoveTargetMode(moveTargetMode);
|
|
NS_ENSURE_SUCCESS(rv,rv);
|
|
|
|
PRBool manualMark;
|
|
(void)GetBoolValue("manualMark", &manualMark);
|
|
(void)mSpamSettings->SetManualMark(manualMark);
|
|
|
|
PRInt32 manualMarkMode;
|
|
(void)GetIntValue("manualMarkMode", &manualMarkMode);
|
|
(void)mSpamSettings->SetManualMarkMode(manualMarkMode);
|
|
|
|
nsXPIDLCString spamActionTargetAccount;
|
|
rv = GetCharValue("spamActionTargetAccount", getter_Copies(spamActionTargetAccount));
|
|
NS_ENSURE_SUCCESS(rv,rv);
|
|
rv = mSpamSettings->SetActionTargetAccount(spamActionTargetAccount);
|
|
NS_ENSURE_SUCCESS(rv,rv);
|
|
|
|
nsXPIDLCString spamActionTargetFolder;
|
|
rv = GetCharValue("spamActionTargetFolder", getter_Copies(spamActionTargetFolder));
|
|
NS_ENSURE_SUCCESS(rv,rv);
|
|
rv = mSpamSettings->SetActionTargetFolder(spamActionTargetFolder);
|
|
NS_ENSURE_SUCCESS(rv,rv);
|
|
|
|
PRBool useWhiteList;
|
|
rv = GetBoolValue("useWhiteList", &useWhiteList);
|
|
NS_ENSURE_SUCCESS(rv,rv);
|
|
rv = mSpamSettings->SetUseWhiteList(useWhiteList);
|
|
NS_ENSURE_SUCCESS(rv,rv);
|
|
|
|
nsXPIDLCString whiteListAbURI;
|
|
rv = GetCharValue("whiteListAbURI", getter_Copies(whiteListAbURI));
|
|
NS_ENSURE_SUCCESS(rv,rv);
|
|
rv = mSpamSettings->SetWhiteListAbURI(whiteListAbURI);
|
|
NS_ENSURE_SUCCESS(rv,rv);
|
|
|
|
PRBool purgeSpam;
|
|
rv = GetBoolValue("purgeSpam", &purgeSpam);
|
|
NS_ENSURE_SUCCESS(rv,rv);
|
|
rv = mSpamSettings->SetPurge(purgeSpam);
|
|
NS_ENSURE_SUCCESS(rv,rv);
|
|
|
|
PRInt32 purgeSpamInterval;
|
|
rv = GetIntValue("purgeSpamInterval", &purgeSpamInterval);
|
|
NS_ENSURE_SUCCESS(rv,rv);
|
|
rv = mSpamSettings->SetPurgeInterval(purgeSpamInterval);
|
|
NS_ENSURE_SUCCESS(rv,rv);
|
|
|
|
PRBool useServerFilter;
|
|
rv = GetBoolValue("useServerFilter", &useServerFilter);
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
rv = mSpamSettings->SetUseServerFilter(useServerFilter);
|
|
NS_ENSURE_SUCCESS(rv,rv);
|
|
|
|
nsXPIDLCString serverFilterName;
|
|
rv = GetCharValue("serverFilterName", getter_Copies(serverFilterName));
|
|
if (NS_SUCCEEDED(rv))
|
|
mSpamSettings->SetServerFilterName(serverFilterName);
|
|
PRInt32 serverFilterTrustFlags = 0;
|
|
rv = GetIntValue("serverFilterTrustFlags", &serverFilterTrustFlags);
|
|
mSpamSettings->SetServerFilterTrustFlags(serverFilterTrustFlags);
|
|
|
|
PRInt32 loggingEnabled;
|
|
rv = GetBoolValue("spamLoggingEnabled", &loggingEnabled);
|
|
NS_ENSURE_SUCCESS(rv,rv);
|
|
rv = mSpamSettings->SetLoggingEnabled(loggingEnabled);
|
|
NS_ENSURE_SUCCESS(rv,rv);
|
|
}
|
|
|
|
NS_ADDREF(*aSpamSettings = mSpamSettings);
|
|
return NS_OK;
|
|
}
|
|
|
|
NS_IMETHODIMP
|
|
nsMsgIncomingServer::GetSpamFilterPlugin(nsIMsgFilterPlugin **aFilterPlugin)
|
|
{
|
|
NS_ENSURE_ARG_POINTER(aFilterPlugin);
|
|
if (!mFilterPlugin)
|
|
{
|
|
nsresult rv;
|
|
|
|
// get the plugin service
|
|
mFilterPlugin = do_GetService("@mozilla.org/messenger/filter-plugin;1?name=bayesianfilter", &rv);
|
|
|
|
if (NS_FAILED(rv))
|
|
return rv;
|
|
}
|
|
|
|
NS_IF_ADDREF(*aFilterPlugin = mFilterPlugin);
|
|
return NS_OK;
|
|
}
|
|
|
|
|
|
// get all the servers that defer to the account for the passed in server. Note that
|
|
// destServer may not be "this"
|
|
nsresult nsMsgIncomingServer::GetDeferredServers(nsIMsgIncomingServer *destServer, nsISupportsArray **_retval)
|
|
{
|
|
nsresult rv;
|
|
nsCOMPtr<nsIMsgAccountManager> accountManager
|
|
= do_GetService(NS_MSGACCOUNTMANAGER_CONTRACTID, &rv);
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
nsCOMPtr<nsISupportsArray> servers;
|
|
rv = NS_NewISupportsArray(getter_AddRefs(servers));
|
|
if (NS_FAILED(rv)) return rv;
|
|
|
|
nsCOMPtr <nsIMsgAccount> thisAccount;
|
|
accountManager->FindAccountForServer(destServer, getter_AddRefs(thisAccount));
|
|
if (thisAccount)
|
|
{
|
|
nsCOMPtr <nsISupportsArray> allServers;
|
|
nsXPIDLCString accountKey;
|
|
thisAccount->GetKey(getter_Copies(accountKey));
|
|
accountManager->GetAllServers(getter_AddRefs(allServers));
|
|
if (allServers)
|
|
{
|
|
PRUint32 serverCount;
|
|
allServers->Count(&serverCount);
|
|
for (PRUint32 i = 0; i < serverCount; i++)
|
|
{
|
|
nsCOMPtr <nsIMsgIncomingServer> server (do_QueryElementAt(allServers, i));
|
|
if (server)
|
|
{
|
|
nsXPIDLCString deferredToAccount;
|
|
server->GetCharValue("deferred_to_account", getter_Copies(deferredToAccount));
|
|
if (deferredToAccount.Equals(accountKey))
|
|
servers->AppendElement(server);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
*_retval = servers;
|
|
NS_ADDREF(*_retval);
|
|
return rv;
|
|
}
|
|
|
|
NS_IMETHODIMP nsMsgIncomingServer::GetIsDeferredTo(PRBool *aIsDeferredTo)
|
|
{
|
|
NS_ENSURE_ARG_POINTER(aIsDeferredTo);
|
|
nsCOMPtr<nsIMsgAccountManager> accountManager
|
|
= do_GetService(NS_MSGACCOUNTMANAGER_CONTRACTID);
|
|
if (accountManager)
|
|
{
|
|
nsCOMPtr <nsIMsgAccount> thisAccount;
|
|
accountManager->FindAccountForServer(this, getter_AddRefs(thisAccount));
|
|
if (thisAccount)
|
|
{
|
|
nsCOMPtr <nsISupportsArray> allServers;
|
|
nsXPIDLCString accountKey;
|
|
thisAccount->GetKey(getter_Copies(accountKey));
|
|
accountManager->GetAllServers(getter_AddRefs(allServers));
|
|
if (allServers)
|
|
{
|
|
PRUint32 serverCount;
|
|
allServers->Count(&serverCount);
|
|
for (PRUint32 i = 0; i < serverCount; i++)
|
|
{
|
|
nsCOMPtr <nsIMsgIncomingServer> server (do_QueryElementAt(allServers, i));
|
|
if (server)
|
|
{
|
|
nsXPIDLCString deferredToAccount;
|
|
server->GetCharValue("deferred_to_account", getter_Copies(deferredToAccount));
|
|
if (deferredToAccount.Equals(accountKey))
|
|
{
|
|
*aIsDeferredTo = PR_TRUE;
|
|
return NS_OK;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
*aIsDeferredTo = PR_FALSE;
|
|
return NS_OK;
|
|
}
|
|
|
|
const long kMaxDownloadTableSize = 500;
|
|
|
|
// aData is the server, from that we get the cutoff point, below which we evict
|
|
// element is the arrival index of the msg.
|
|
/* static */PRBool nsMsgIncomingServer::evictOldEntries(nsHashKey *aKey, void *element, void *aData)
|
|
{
|
|
nsMsgIncomingServer *server = (nsMsgIncomingServer *)aData;
|
|
if (NS_PTR_TO_INT32(element) < server->m_numMsgsDownloaded - kMaxDownloadTableSize/2)
|
|
return kHashEnumerateRemove;
|
|
return server->m_downloadedHdrs.Count() > kMaxDownloadTableSize/2;
|
|
}
|
|
|
|
// hash the concatenation of the message-id and subject as the hash table key,
|
|
// and store the arrival index as the value. To limit the size of the hash table,
|
|
// we just throw out ones with a lower ordinal value than the cut-off point.
|
|
NS_IMETHODIMP nsMsgIncomingServer::IsNewHdrDuplicate(nsIMsgDBHdr *aNewHdr, PRBool *aResult)
|
|
{
|
|
NS_ENSURE_ARG_POINTER(aResult);
|
|
*aResult = PR_FALSE;
|
|
nsCAutoString strHashKey;
|
|
nsXPIDLCString messageId, subject;
|
|
aNewHdr->GetMessageId(getter_Copies(messageId));
|
|
strHashKey.Append(messageId);
|
|
aNewHdr->GetSubject(getter_Copies(subject));
|
|
// err on the side of caution and ignore messages w/o subject or messageid.
|
|
if (subject.IsEmpty() || messageId.IsEmpty())
|
|
return NS_OK;
|
|
strHashKey.Append(subject);
|
|
nsCStringKey hashKey(strHashKey);
|
|
PRInt32 hashValue = NS_PTR_TO_INT32(m_downloadedHdrs.Get(&hashKey));
|
|
if (hashValue)
|
|
{
|
|
*aResult = PR_TRUE;
|
|
}
|
|
else
|
|
{
|
|
// we store the current size of the hash table as the hash
|
|
// value - this allows us to delete older entries.
|
|
m_downloadedHdrs.Put(&hashKey, NS_INT32_TO_PTR(++m_numMsgsDownloaded));
|
|
// Check if hash table is larger than some reasonable size
|
|
// and if is it, iterate over hash table deleting messages
|
|
// with an arrival index < number of msgs downloaded - half the reasonable size.
|
|
if (m_downloadedHdrs.Count() >= kMaxDownloadTableSize)
|
|
m_downloadedHdrs.Enumerate(evictOldEntries, this);
|
|
}
|
|
return NS_OK;
|
|
}
|
|
|