mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-05 08:35:26 +00:00
136 lines
5.1 KiB
Plaintext
136 lines
5.1 KiB
Plaintext
/* -*- 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):
|
|
*
|
|
* 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 "nsISupports.idl"
|
|
|
|
interface nsISmtpServer;
|
|
interface nsIURI;
|
|
interface nsIUrlListener;
|
|
interface nsISupportsArray;
|
|
interface nsIMsgIdentity;
|
|
interface nsIInterfaceRequestor;
|
|
interface nsIFileSpec;
|
|
interface nsIMsgStatusFeedback;
|
|
interface nsIRequest;
|
|
|
|
[scriptable, uuid(FBAF0F10-CA9B-11d2-8063-006008128C4E)]
|
|
interface nsISmtpService : nsISupports {
|
|
|
|
///////////////////////////////////////////////////////////////////////////
|
|
// SendMailMessage requires the file name of the message to send, the
|
|
// sender, a comma delimited list of recipients.
|
|
// It builds an Smtp url, makes an smtp connection and runs the url. If you
|
|
// want a handle on the running task, pass in a valid nsIURI ptr. You can
|
|
// later interrupt this action by asking the netlib service manager to
|
|
// interrupt the url you are given back. Remember to release aURL when you
|
|
// are done with it. Pass nsnull in for aURL if you don't care about
|
|
// the returned URL.
|
|
//
|
|
// If you don't care about listening to the url, feel free to pass in
|
|
// nsnull for that argument.
|
|
//
|
|
// You can also pass an password as an argument if you want to prevent
|
|
// a dialog to popup if the password is needed for a secure transmission
|
|
//
|
|
// The server associate to the Sender Identity will be used or the default
|
|
// server.
|
|
//////////////////////////////////////////////////////////////////////////
|
|
|
|
void SendMailMessage(in nsIFileSpec aFilePath, in string aRecipients,
|
|
in nsIMsgIdentity aSenderIdentity,
|
|
in string aPassword,
|
|
in nsIUrlListener aUrlListener,
|
|
in nsIMsgStatusFeedback aStatusListener,
|
|
in nsIInterfaceRequestor aNotificationCallbacks,
|
|
out nsIURI aURL,
|
|
out nsIRequest aRequest);
|
|
|
|
/**
|
|
* Return the SMTP server that is associated with an identity.
|
|
*/
|
|
void GetSmtpServerByIdentity(in nsIMsgIdentity aSenderIdentity,
|
|
out nsISmtpServer aServer);
|
|
|
|
/**
|
|
* A copy of the array of SMTP servers, as stored in the preferences
|
|
*/
|
|
readonly attribute nsISupportsArray smtpServers;
|
|
|
|
/**
|
|
* The default server, across sessions of the app
|
|
* (eventually there will be a session default which does not
|
|
* persist past shutdown)
|
|
*/
|
|
attribute nsISmtpServer defaultServer;
|
|
|
|
/**
|
|
* The "session default" server - this is never saved, and only used
|
|
* for the current session. Always falls back to the default server
|
|
* unless explicitly set.
|
|
*/
|
|
attribute nsISmtpServer sessionDefaultServer;
|
|
|
|
/**
|
|
* create a new SMTP server.
|
|
* Use this instead of createInstance(), so that the SMTP Service can
|
|
* be aware of this server
|
|
*/
|
|
nsISmtpServer createSmtpServer();
|
|
|
|
/**
|
|
* find the server with the given hostname.
|
|
* @param hostname the hostname of the server
|
|
* @returns null if no server is found
|
|
*/
|
|
nsISmtpServer findServer(in string username, in string hostname);
|
|
|
|
/**
|
|
* look up the server with the given key
|
|
* if the server does not exist, create it and add it to our list
|
|
*/
|
|
nsISmtpServer getServerByKey(in string key);
|
|
|
|
/**
|
|
* delete the given server from the server list.
|
|
* does nothing if the server does not exist
|
|
* @param server the server to delete. Use findServer() if you only know
|
|
* the hostname
|
|
*/
|
|
void deleteSmtpServer(in nsISmtpServer server);
|
|
|
|
};
|