mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 06:35:42 +00:00
57 lines
1.1 KiB
XML
57 lines
1.1 KiB
XML
<?xml version="1.0"?>
|
|
<?xml-stylesheet href="common.css" type="text/css"?>
|
|
|
|
<!DOCTYPE window>
|
|
|
|
<xul:window
|
|
xmlns:xul="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
|
|
xmlns="http://www.w3.org/TR/REC-html40">
|
|
|
|
|
|
<script>
|
|
function InitializeValues()
|
|
{
|
|
element = document.getElementById("SMTP");
|
|
element.value = parent.smtpVal;
|
|
}
|
|
|
|
function commit()
|
|
{
|
|
var element;
|
|
|
|
element = document.getElementById("SMTP");
|
|
parent.SetValue(element.id, element.value);
|
|
parent.smtpVal = element.value;
|
|
}
|
|
|
|
setTimeout("InitializeValues()", 0);
|
|
</script>
|
|
|
|
|
|
<p>
|
|
Communicator now has enough information to setup your basic profile.
|
|
<br></br>
|
|
However, Communicator needs additional information if you want to
|
|
<br></br>
|
|
send or receive email or use newsgroups. If you do not know the
|
|
<br></br>
|
|
information requested, please contact your system administrator or
|
|
<br></br>
|
|
Internet Service Provider.
|
|
</p>
|
|
|
|
<p>
|
|
Outgoing SMTP server
|
|
<br></br>
|
|
<input type="text" id="SMTP" size="30"/>
|
|
</p>
|
|
|
|
<p>
|
|
<b>
|
|
Click Finish and start apprunner again for this new profile
|
|
to be used.
|
|
</b>
|
|
</p>
|
|
|
|
</xul:window>
|