home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
ftp.swcp.com
/
ftp.swcp.com.zip
/
ftp.swcp.com
/
mac
/
mozilla-mac-0.9.sea.hqx
/
mozilla-mac-0.9
/
Chrome
/
messenger.jar
/
content
/
messenger
/
am-smtp.js
< prev
next >
Wrap
Text File
|
2001-05-05
|
2KB
|
75 lines
/* -*- Mode: Java; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*-
*
* The contents of this file are subject to the Netscape 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/NPL/
*
* 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 Communicator client code.
*
* The Initial Developer of the Original Code is Netscape Communications
* Corporation. Portions created by Netscape are
* Copyright (C) 1998 Netscape Communications Corporation. All
* Rights Reserved.
*
* Contributor(s):
* Alec Flett <alecf@netscape.com>
*/
var smtpService = Components.classes["@mozilla.org/messengercompose/smtp;1"].getService(Components.interfaces.nsISmtpService);
function onLoad()
{
parent.onPanelLoaded('am-smtp.xul');
var defaultSmtpServer = null;
try {
defaultSmtpServer = smtpService.defaultServer;
}
catch (ex) {
defaultSmtpServer = null;
}
initSmtpSettings(defaultSmtpServer);
}
function onSave()
{
var defaultSmtpServer = null;
try {
defaultSmtpServer = smtpService.defaultServer;
}
catch (ex) {
defaultSmtpServer = null;
}
saveSmtpSettings(defaultSmtpServer);
}
function onAdvanced(event)
{
// fix for bug #60647
// when the user presses "Advanced..." we save any changes
// they made so that the changes will show up in the advanced dialog
// and when they return from the advanced dialog, the changes they
// made won't be blown away.
//
// the only remaing problem is if the user "cancels" out of the
// account manager dialog, those changes will get saved.
// that is covered in bug #63825
onSave();
var args = {result: false};
window.openDialog('chrome://messenger/content/SmtpServerList.xul', 'smtp', 'modal,titlebar,chrome', args);
if (args.result) {
// this is the wrong way to do this.
dump("reloading panel...\n");
onLoad();
}
}