home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 35 Internet / 35-Internet.zip / mozil06.zip / bin / chrome / messenger.jar / content / messenger / smtpEditOverlay.xul < prev    next >
Extensible Markup Language  |  2001-02-14  |  3KB  |  67 lines

  1. <?xml version="1.0"?>
  2.  
  3. <!--
  4.  The contents of this file are subject to the Netscape Public
  5.  License Version 1.1 (the "License"); you may not use this file
  6.  except in compliance with the License. You may obtain a copy of
  7.  the License at http://www.mozilla.org/NPL/
  8.  
  9.  Software distributed under the License is distributed on an "AS
  10.  IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
  11.  implied. See the License for the specific language governing
  12.  rights and limitations under the License.
  13.  
  14.  The Original Code is Mozilla Communicator client code, released
  15.  March 31, 1998.
  16.  
  17.  The Initial Developer of the Original Code is Netscape
  18.  Communications Corporation. Portions created by Netscape are
  19.  Copyright (C) 1998-1999 Netscape Communications Corporation. All
  20.  Rights Reserved.
  21.  
  22.  Contributors:
  23.  Alec Flett <alecf@netscape.com>
  24.  
  25. -->
  26.  
  27. <!DOCTYPE window SYSTEM "chrome://messenger/locale/smtpEditOverlay.dtd">
  28.  
  29. <overlay  xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
  30.   xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
  31.  
  32.   <script src="smtpEditOverlay.js"/>
  33.  
  34.   <box id="smtpServerEditor" orient="vertical">
  35.     <box autostretch="never">
  36.       <text class="label" value="&serverName.label;"/>
  37.       <textfield wsm_persist="true" id="smtp.hostname" flex="1"/>
  38.     </box>
  39.     <!-- use a grid here when it's implemented -->
  40.     <box orient="vertical">
  41.       <!-- This hidden one will hold the integer version
  42.            of smtp.useUsername -->
  43.       <text hidden="true" id="smtp.authMethod" wsm_persist="true"/>
  44.       <box autostretch="never">
  45.       <checkbox id="smtp.useUsername" value="&alwaysUseUsername.label;"
  46.                 oncommand="onUseUsername(event.target,true);"/>
  47.       </box>                
  48.       <box orient="vertical" style="margin-left: 2em">
  49.         <box autostretch="never">
  50.           <text class="label" value="&userName.label;"/>
  51.           <textfield wsm_persist="true" id="smtp.username" flex="1"/>
  52.         </box>
  53.       </box>
  54.      </box>
  55. <!-- remove for now - bug 46393
  56.   <checkbox wsm_persist="true" id="smtp.isSecure" value="&isSecure.label;" oncommand="updateControls();"/>
  57.      <radiogroup id="smtp.trySSL">
  58.        <box orient="horizontal">
  59.          <radio group="smtp.trySSL" value="&alwaysSecure.label;" id="smtp.alwaysSecure"/>
  60.          <radio group="smtp.trySSL" value="&sometimesSecure.label;" id="smtp.sometimesSecure"/>
  61.        </box>
  62.      </radiogroup>
  63. -->
  64.   </box>
  65.  
  66. </overlay>
  67.