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 >
Text File  |  2001-05-05  |  2KB  |  75 lines

  1. /* -*- Mode: Java; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*-
  2.  *
  3.  * The contents of this file are subject to the Netscape Public
  4.  * License Version 1.1 (the "License"); you may not use this file
  5.  * except in compliance with the License. You may obtain a copy of
  6.  * the License at http://www.mozilla.org/NPL/
  7.  *
  8.  * Software distributed under the License is distributed on an "AS
  9.  * IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
  10.  * implied. See the License for the specific language governing
  11.  * rights and limitations under the License.
  12.  *
  13.  * The Original Code is Mozilla Communicator client code.
  14.  *
  15.  * The Initial Developer of the Original Code is Netscape Communications
  16.  * Corporation.  Portions created by Netscape are
  17.  * Copyright (C) 1998 Netscape Communications Corporation. All
  18.  * Rights Reserved.
  19.  *
  20.  * Contributor(s):
  21.  * Alec Flett <alecf@netscape.com>
  22.  */
  23.  
  24. var smtpService = Components.classes["@mozilla.org/messengercompose/smtp;1"].getService(Components.interfaces.nsISmtpService);
  25.  
  26. function onLoad()
  27. {
  28.     parent.onPanelLoaded('am-smtp.xul');
  29.     var defaultSmtpServer = null;
  30.     try {
  31.         defaultSmtpServer = smtpService.defaultServer;
  32.     }
  33.     catch (ex) {
  34.         defaultSmtpServer = null;
  35.     }
  36.     initSmtpSettings(defaultSmtpServer);
  37. }
  38.  
  39. function onSave()
  40. {
  41.     var defaultSmtpServer = null;
  42.     try {
  43.         defaultSmtpServer = smtpService.defaultServer;
  44.     }
  45.     catch (ex) {
  46.         defaultSmtpServer = null;
  47.     }
  48.     saveSmtpSettings(defaultSmtpServer);
  49. }
  50.  
  51.  
  52. function onAdvanced(event)
  53. {
  54.     // fix for bug #60647
  55.     // when the user presses "Advanced..." we save any changes
  56.     // they made so that the changes will show up in the advanced dialog
  57.     // and when they return from the advanced dialog, the changes they
  58.     // made won't be blown away.
  59.     //
  60.     // the only remaing problem is if the user "cancels" out of the
  61.     // account manager dialog, those changes will get saved.  
  62.     // that is covered in bug #63825
  63.     onSave();
  64.  
  65.     var args = {result: false};
  66.     window.openDialog('chrome://messenger/content/SmtpServerList.xul', 'smtp', 'modal,titlebar,chrome', args);
  67.  
  68.     if (args.result) {
  69.         // this is the wrong way to do this.
  70.         dump("reloading panel...\n");
  71.         onLoad();
  72.     }
  73. }
  74.  
  75.