2001-09-29 00:14:13 +04:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* ***** BEGIN LICENSE BLOCK *****
|
2004-04-17 22:33:16 +04:00
|
|
|
* Version: MPL 1.1/GPL 2.0/LGPL 2.1
|
1998-12-21 20:57:13 +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/
|
1998-12-21 20:57:13 +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.
|
1998-12-21 20:57:13 +03:00
|
|
|
*
|
1999-11-06 06:43:54 +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) 1998
|
|
|
|
* the Initial Developer. All Rights Reserved.
|
1999-11-06 06:43:54 +03:00
|
|
|
*
|
2001-09-29 00:14:13 +04:00
|
|
|
* Contributor(s):
|
|
|
|
*
|
|
|
|
* 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 ***** */
|
1998-12-21 20:57:13 +03:00
|
|
|
|
|
|
|
/* Include files we are going to want available to all files....these files include
|
|
|
|
NSPR, memory, and string header files among others */
|
|
|
|
|
1999-03-09 12:52:30 +03:00
|
|
|
#ifndef msgCore_h__
|
|
|
|
#define msgCore_h__
|
|
|
|
|
1998-12-21 20:57:13 +03:00
|
|
|
#include "nscore.h"
|
1999-02-23 03:54:02 +03:00
|
|
|
|
2001-07-16 06:40:48 +04:00
|
|
|
#include "nsCRT.h"
|
1998-12-21 20:57:13 +03:00
|
|
|
#include "nsString.h"
|
|
|
|
#include "nsVoidArray.h"
|
|
|
|
|
2001-03-17 04:59:34 +03:00
|
|
|
class nsIMsgDBHdr;
|
1999-04-07 06:50:25 +04:00
|
|
|
class nsIMsgFolder;
|
|
|
|
|
1999-02-23 03:54:02 +03:00
|
|
|
// include common interfaces such as the service manager and the repository....
|
|
|
|
#include "nsIServiceManager.h"
|
1999-03-09 12:52:30 +03:00
|
|
|
#include "nsIComponentManager.h"
|
1999-02-23 03:54:02 +03:00
|
|
|
|
1999-02-09 07:28:35 +03:00
|
|
|
/* NS_ERROR_MODULE_MAILNEWS is defined in mozilla/xpcom/public/nsError.h */
|
1999-01-11 23:46:13 +03:00
|
|
|
|
|
|
|
/*
|
|
|
|
* NS_ERROR macros - use these macros to generate error constants
|
|
|
|
* to be used by XPCOM interfaces and possibly other useful things
|
|
|
|
* do not use these macros in your code - declare error macros for
|
|
|
|
* each specific error you need.
|
|
|
|
*
|
|
|
|
* for example:
|
|
|
|
* #define NS_MSG_ERROR_NO_SUCH_FOLDER NS_MSG_GENERATE_FAILURE(4)
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* use these routines to generate error values */
|
|
|
|
#define NS_MSG_GENERATE_RESULT(severity, value) \
|
|
|
|
NS_ERROR_GENERATE(severity, NS_ERROR_MODULE_MAILNEWS, value)
|
|
|
|
|
|
|
|
#define NS_MSG_GENERATE_SUCCESS(value) \
|
1999-01-12 04:09:45 +03:00
|
|
|
NS_ERROR_GENERATE_SUCCESS(NS_ERROR_MODULE_MAILNEWS, value)
|
1999-01-11 23:46:13 +03:00
|
|
|
|
|
|
|
#define NS_MSG_GENERATE_FAILURE(value) \
|
|
|
|
NS_ERROR_GENERATE_FAILURE(NS_ERROR_MODULE_MAILNEWS, value)
|
|
|
|
|
|
|
|
/* these are shortcuts to generate simple errors with a zero value */
|
|
|
|
#define NS_MSG_SUCCESS NS_MSG_GENERATE_SUCCESS(0)
|
|
|
|
#define NS_MSG_FAILURE NS_MSG_GENERATE_FAILURE(0)
|
|
|
|
|
2003-04-01 23:38:12 +04:00
|
|
|
#define IS_SPACE(VAL) NS_IS_SPACE(VAL)
|
|
|
|
#define IS_DIGIT(i) NS_IS_DIGIT(i)
|
|
|
|
#define IS_ALPHA(VAL) NS_IS_ALPHA(VAL)
|
1999-04-05 01:59:22 +04:00
|
|
|
|
1999-01-11 23:46:13 +03:00
|
|
|
|
|
|
|
/* for retrieving information out of messenger nsresults */
|
|
|
|
|
|
|
|
#define NS_IS_MSG_ERROR(err) \
|
|
|
|
(NS_ERROR_GET_MODULE(err) == NS_ERROR_MODULE_MAILNEWS)
|
|
|
|
|
|
|
|
#define NS_MSG_SUCCEEDED(err) \
|
|
|
|
(NS_IS_MSG_ERROR(err) && NS_SUCCEEDED(err))
|
|
|
|
|
|
|
|
#define NS_MSG_FAILED(err) \
|
|
|
|
(NS_IS_MSG_ERROR(err) && NS_FAILED(err))
|
1999-02-01 06:03:10 +03:00
|
|
|
|
2001-11-21 04:45:59 +03:00
|
|
|
#define NS_MSG_PASSWORD_PROMPT_CANCELLED NS_MSG_GENERATE_SUCCESS(1)
|
|
|
|
|
2002-02-16 04:32:03 +03:00
|
|
|
/* This is where we define our errors. There has to be a central
|
|
|
|
place so we don't use the same error codes for different errors.
|
1999-02-01 06:03:10 +03:00
|
|
|
*/
|
|
|
|
#define NS_MSG_ERROR_FOLDER_SUMMARY_OUT_OF_DATE NS_MSG_GENERATE_FAILURE(5)
|
|
|
|
#define NS_MSG_ERROR_FOLDER_SUMMARY_MISSING NS_MSG_GENERATE_FAILURE(6)
|
1999-02-05 06:03:50 +03:00
|
|
|
#define NS_MSG_ERROR_FOLDER_MISSING NS_MSG_GENERATE_FAILURE(7)
|
|
|
|
|
|
|
|
#define NS_MSG_MESSAGE_NOT_FOUND NS_MSG_GENERATE_FAILURE(8)
|
1999-02-11 10:09:05 +03:00
|
|
|
#define NS_MSG_NOT_A_MAIL_FOLDER NS_MSG_GENERATE_FAILURE(9)
|
1999-03-06 02:40:53 +03:00
|
|
|
|
1999-03-24 02:19:58 +03:00
|
|
|
#define NS_MSG_FOLDER_BUSY NS_MSG_GENERATE_FAILURE(10)
|
|
|
|
|
1999-04-16 01:12:10 +04:00
|
|
|
#define NS_MSG_COULD_NOT_CREATE_DIRECTORY NS_MSG_GENERATE_FAILURE(11)
|
|
|
|
#define NS_MSG_CANT_CREATE_FOLDER NS_MSG_GENERATE_FAILURE(12)
|
|
|
|
|
1999-05-10 05:57:14 +04:00
|
|
|
#define NS_MSG_FILTER_PARSE_ERROR NS_MSG_GENERATE_FAILURE(13)
|
|
|
|
|
1999-05-27 03:51:53 +04:00
|
|
|
#define NS_MSG_FOLDER_UNREADABLE NS_MSG_GENERATE_FAILURE(14)
|
|
|
|
|
|
|
|
#define NS_MSG_ERROR_WRITING_MAIL_FOLDER NS_MSG_GENERATE_FAILURE(15)
|
1999-04-27 06:53:29 +04:00
|
|
|
|
2000-04-14 03:28:49 +04:00
|
|
|
#define NS_MSG_ERROR_NO_SEARCH_VALUES NS_MSG_GENERATE_FAILURE(16)
|
|
|
|
|
|
|
|
#define NS_MSG_ERROR_INVALID_SEARCH_SCOPE NS_MSG_GENERATE_FAILURE(17)
|
|
|
|
|
2000-04-20 05:13:31 +04:00
|
|
|
#define NS_MSG_ERROR_INVALID_SEARCH_TERM NS_MSG_GENERATE_FAILURE(18)
|
|
|
|
|
2000-11-29 04:09:30 +03:00
|
|
|
#define NS_MSG_FOLDER_EXISTS NS_MSG_GENERATE_FAILURE(19)
|
|
|
|
|
2000-12-19 04:16:20 +03:00
|
|
|
#define NS_MSG_ERROR_OFFLINE NS_MSG_GENERATE_FAILURE(20)
|
|
|
|
|
2001-02-06 05:05:31 +03:00
|
|
|
#define NS_MSG_POP_FILTER_TARGET_ERROR NS_MSG_GENERATE_FAILURE(21)
|
|
|
|
|
|
|
|
#define NS_MSG_INVALID_OR_MISSING_SERVER NS_MSG_GENERATE_FAILURE(22)
|
|
|
|
|
|
|
|
#define NS_MSG_SERVER_USERNAME_MISSING NS_MSG_GENERATE_FAILURE(23)
|
|
|
|
|
2001-03-17 04:59:34 +03:00
|
|
|
#define NS_MSG_INVALID_DBVIEW_INDEX NS_MSG_GENERATE_FAILURE(24)
|
|
|
|
|
2001-04-14 19:28:50 +04:00
|
|
|
#define NS_MSG_NEWS_ARTICLE_NOT_FOUND NS_MSG_GENERATE_FAILURE(25)
|
|
|
|
|
2001-09-27 06:47:03 +04:00
|
|
|
#define NS_MSG_ERROR_COPY_FOLDER_ABORTED NS_MSG_GENERATE_FAILURE(26)
|
2002-02-16 04:32:03 +03:00
|
|
|
// this error means a url was queued but never run because one of the urls
|
|
|
|
// it was queued after failed. We send an OnStopRunningUrl with this error code
|
|
|
|
// so the listeners can know that we didn't run the url.
|
|
|
|
#define NS_MSG_ERROR_URL_ABORTED NS_MSG_GENERATE_FAILURE(27)
|
1999-10-05 03:43:57 +04:00
|
|
|
/* ducarroz: error codes for message compose are defined into compose\src\nsMsgComposeStringBundle.h.
|
|
|
|
Message compose use the same error code space than other mailnews modules. To avoid any
|
|
|
|
conflict, I reserve values between 12500 and 12999 for it.
|
|
|
|
*/
|
2002-05-08 03:09:24 +04:00
|
|
|
#define NS_MSG_CUSTOM_HEADERS_OVERFLOW NS_MSG_GENERATE_FAILURE(28) //when num of custom headers exceeds 50
|
2002-09-11 06:00:54 +04:00
|
|
|
#define NS_MSG_INVALID_CUSTOM_HEADER NS_MSG_GENERATE_FAILURE(29) //when custom header has invalid characters (as per rfc 2822)
|
|
|
|
|
2003-12-31 20:31:27 +03:00
|
|
|
#define NS_MSG_USER_NOT_AUTHENTICATED NS_MSG_GENERATE_FAILURE(30) // when local caches are password protect and user isn't auth
|
|
|
|
|
2005-02-01 20:30:33 +03:00
|
|
|
#define NS_MSG_ERROR_COPYING_FROM_TMP_DOWNLOAD NS_MSG_GENERATE_FAILURE(31) // pop3 downloaded to tmp file, and failed.
|
|
|
|
|
1999-10-05 03:43:57 +04:00
|
|
|
#define NS_MSGCOMP_ERROR_BEGIN 12500
|
2000-04-12 13:48:25 +04:00
|
|
|
/* NS_ERROR_NNTP_NO_CROSS_POSTING lives here, and not in nsMsgComposeStringBundle.h, because it is used in news and compose. */
|
|
|
|
#define NS_ERROR_NNTP_NO_CROSS_POSTING NS_MSG_GENERATE_FAILURE(12554)
|
1999-10-05 03:43:57 +04:00
|
|
|
#define NS_MSGCOMP_ERROR_END 12999
|
|
|
|
|
1999-06-23 04:03:14 +04:00
|
|
|
#define MSG_LINEBREAK NS_LINEBREAK
|
|
|
|
#define MSG_LINEBREAK_LEN NS_LINEBREAK_LEN
|
1999-05-19 03:46:23 +04:00
|
|
|
|
2003-04-21 00:56:21 +04:00
|
|
|
#ifdef MOZ_STATIC_MAIL_BUILD
|
|
|
|
#define NS_MSG_BASE
|
2004-12-15 11:39:08 +03:00
|
|
|
#define NS_MSG_BASE_STATIC_MEMBER_(type) type
|
2003-04-21 00:56:21 +04:00
|
|
|
#else
|
|
|
|
|
1999-05-19 03:46:23 +04:00
|
|
|
#ifdef _IMPL_NS_MSG_BASE
|
2004-12-15 08:52:44 +03:00
|
|
|
#define NS_MSG_BASE NS_EXPORT
|
|
|
|
#define NS_MSG_BASE_STATIC_MEMBER_(type) NS_EXPORT_STATIC_MEMBER_(type)
|
1999-05-19 03:46:23 +04:00
|
|
|
#else
|
2004-12-15 08:52:44 +03:00
|
|
|
#define NS_MSG_BASE NS_IMPORT
|
|
|
|
#define NS_MSG_BASE_STATIC_MEMBER_(type) NS_IMPORT_STATIC_MEMBER_(type)
|
1999-05-19 03:46:23 +04:00
|
|
|
#endif
|
|
|
|
|
2003-04-21 00:56:21 +04:00
|
|
|
#endif // MOZ_STATIC_MAIL_BUILD
|
|
|
|
|
1999-03-09 12:52:30 +03:00
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
1999-04-25 00:36:00 +04:00
|
|
|
// Utilities
|
1999-04-21 09:09:33 +04:00
|
|
|
|
1999-05-19 03:46:23 +04:00
|
|
|
// mscott: one wouldn't normally have to add the NS_MSG_BASE prefix here
|
|
|
|
// except this function is implemented in base\util.
|
|
|
|
nsresult NS_MSG_BASE
|
1999-03-09 12:52:30 +03:00
|
|
|
nsGetMailFolderSeparator(nsString& result);
|
|
|
|
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
#endif
|