2001-09-29 00:14:13 +04:00
|
|
|
/* -*- Mode: IDL; tab-width: 4; 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
|
1999-04-07 02:35:13 +04: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/
|
1999-04-07 02:35:13 +04: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.
|
1999-04-07 02:35:13 +04: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 ***** */
|
1999-04-07 02:35:13 +04:00
|
|
|
|
|
|
|
#include "nsISupports.idl"
|
|
|
|
#include "nsIMsgIncomingServer.idl"
|
|
|
|
#include "nsIMsgIdentity.idl"
|
1999-06-29 23:45:19 +04:00
|
|
|
#include "nsISupportsArray.idl"
|
1999-04-07 02:35:13 +04:00
|
|
|
|
1999-07-01 10:00:55 +04:00
|
|
|
/*
|
|
|
|
* an account consists of an incoming server and one or more
|
|
|
|
* outgoing identities
|
|
|
|
* an account is identitfied by a key, which is the <account> string in
|
|
|
|
* the account preferences, such as in
|
|
|
|
* mail.account.<account>.identities
|
|
|
|
*/
|
1999-04-07 02:35:13 +04:00
|
|
|
|
2007-05-02 07:37:07 +04:00
|
|
|
[scriptable, uuid(3FE5B45D-ACF8-4348-8951-757D21E983F2)]
|
1999-04-07 02:35:13 +04:00
|
|
|
interface nsIMsgAccount : nsISupports {
|
1999-04-11 00:46:47 +04:00
|
|
|
|
1999-08-27 10:16:14 +04:00
|
|
|
/* init function */
|
|
|
|
void init();
|
|
|
|
|
1999-04-11 00:46:47 +04:00
|
|
|
/* internal key identifying itself */
|
2007-05-02 07:37:07 +04:00
|
|
|
attribute ACString key;
|
1999-04-11 00:46:47 +04:00
|
|
|
|
1999-04-07 02:35:13 +04:00
|
|
|
/* incoming server stuff */
|
|
|
|
attribute nsIMsgIncomingServer incomingServer;
|
|
|
|
|
1999-07-01 10:15:06 +04:00
|
|
|
/* outgoing identity list
|
|
|
|
* array of nsIMsgIdentity's
|
|
|
|
*/
|
1999-06-08 08:29:35 +04:00
|
|
|
readonly attribute nsISupportsArray identities;
|
1999-04-07 02:35:13 +04:00
|
|
|
|
1999-07-01 10:00:55 +04:00
|
|
|
/* the default identity for this account. */
|
1999-04-07 02:35:13 +04:00
|
|
|
attribute nsIMsgIdentity defaultIdentity;
|
1999-07-01 10:00:55 +04:00
|
|
|
|
|
|
|
/* add a new identity to this account (probably does not work) */
|
1999-04-07 02:35:13 +04:00
|
|
|
void addIdentity(in nsIMsgIdentity identity);
|
1999-07-01 10:00:55 +04:00
|
|
|
|
|
|
|
/* remove an identity from this account (probably does not work) */
|
1999-04-07 02:35:13 +04:00
|
|
|
void removeIdentity(in nsIMsgIdentity identity);
|
1999-08-28 00:55:35 +04:00
|
|
|
|
2000-02-11 03:55:54 +03:00
|
|
|
void clearAllValues();
|
|
|
|
|
1999-08-28 00:55:35 +04:00
|
|
|
/* name in javascript */
|
2007-05-02 07:37:07 +04:00
|
|
|
AString toString();
|
1999-04-07 02:35:13 +04:00
|
|
|
};
|