fix js exception when the smtp server is not defined

This commit is contained in:
sspitzer%netscape.com 1999-12-22 07:14:21 +00:00
Родитель 6803a372d3
Коммит a26bca573d
1 изменённых файлов: 7 добавлений и 2 удалений

Просмотреть файл

@ -47,8 +47,13 @@ function onLoad() {
smtpService =
Components.classes["component://netscape/messengercompose/smtp"].getService(Components.interfaces.nsISmtpService);;
wizardContents["smtp.hostname"] = smtpService.defaultServer.hostname;
dump("initialized with " + wizardContents["smtp.hostname"] + "\n");
try {
wizardContents["smtp.hostname"] = smtpService.defaultServer.hostname;
dump("initialized with " + wizardContents["smtp.hostname"] + "\n");
}
catch (ex) {
dump("failed to get the smtp hostname\n");
}
init();
}