mirror of
https://github.com/rn10950/RetroZilla.git
synced 2024-11-11 02:10:17 +01:00
181 lines
6.8 KiB
JavaScript
181 lines
6.8 KiB
JavaScript
/* -*- Mode: Java; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*-
|
|
* ***** BEGIN LICENSE BLOCK *****
|
|
* Version: MPL 1.1/GPL 2.0/LGPL 2.1
|
|
*
|
|
* The contents of this file are subject to the Mozilla 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/MPL/
|
|
*
|
|
* 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.org Code.
|
|
*
|
|
* The Initial Developer of the Original Code is
|
|
* Netscape Communications Corporation.
|
|
* Portions created by the Initial Developer are Copyright (C) 1998-2001
|
|
* the Initial Developer. All Rights Reserved.
|
|
*
|
|
* Contributor(s):
|
|
*
|
|
* Alternatively, the contents of this file may be used under the terms of
|
|
* either of the GNU General Public License Version 2 or later (the "GPL"),
|
|
* or the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
|
|
* in which case the provisions of the GPL or the LGPL are applicable instead
|
|
* of those above. If you wish to allow use of your version of this file only
|
|
* under the terms of either the GPL or the LGPL, and not to allow others to
|
|
* use your version of this file under the terms of the MPL, indicate your
|
|
* decision by deleting the provisions above and replace them with the notice
|
|
* and other provisions required by the GPL or the LGPL. If you do not delete
|
|
* the provisions above, a recipient may use your version of this file under
|
|
* the terms of any one of the MPL, the GPL or the LGPL.
|
|
*
|
|
* ***** END LICENSE BLOCK ***** */
|
|
|
|
var useCustomPrefs;
|
|
var requestReceipt;
|
|
var leaveInInbox;
|
|
var moveToSent;
|
|
var receiptSend;
|
|
var neverReturn;
|
|
var returnSome;
|
|
var notInToCcPref;
|
|
var notInToCcLabel;
|
|
var outsideDomainPref;
|
|
var outsideDomainLabel;
|
|
var otherCasesPref;
|
|
var otherCasesLabel;
|
|
var receiptArriveLabel;
|
|
var receiptRequestLabel;
|
|
var gIdentity;
|
|
var gIncomingServer;
|
|
var gMdnPrefBranch;
|
|
|
|
function onInit()
|
|
{
|
|
useCustomPrefs = document.getElementById("identity.use_custom_prefs");
|
|
requestReceipt = document.getElementById("identity.request_return_receipt_on");
|
|
leaveInInbox = document.getElementById("leave_in_inbox");
|
|
moveToSent = document.getElementById("move_to_sent");
|
|
receiptSend = document.getElementById("server.mdn_report_enabled");
|
|
neverReturn = document.getElementById("never_return");
|
|
returnSome = document.getElementById("return_some");
|
|
notInToCcPref = document.getElementById("server.mdn_not_in_to_cc");
|
|
notInToCcLabel = document.getElementById("notInToCcLabel");
|
|
outsideDomainPref = document.getElementById("server.mdn_outside_domain");
|
|
outsideDomainLabel = document.getElementById("outsideDomainLabel");
|
|
otherCasesPref = document.getElementById("server.mdn_other");
|
|
otherCasesLabel = document.getElementById("otherCasesLabel");
|
|
receiptArriveLabel = document.getElementById("receiptArriveLabel");
|
|
receiptRequestLabel = document.getElementById("receiptRequestLabel");
|
|
|
|
EnableDisableCustomSettings();
|
|
|
|
return true;
|
|
}
|
|
|
|
function onSave()
|
|
{
|
|
|
|
}
|
|
|
|
function EnableDisableCustomSettings() {
|
|
if (useCustomPrefs && (useCustomPrefs.getAttribute("value") == "false")) {
|
|
requestReceipt.setAttribute("disabled", "true");
|
|
leaveInInbox.setAttribute("disabled", "true");
|
|
moveToSent.setAttribute("disabled", "true");
|
|
neverReturn.setAttribute("disabled", "true");
|
|
returnSome.setAttribute("disabled", "true");
|
|
receiptArriveLabel.setAttribute("disabled", "true");
|
|
receiptRequestLabel.setAttribute("disabled", "true");
|
|
}
|
|
else {
|
|
requestReceipt.removeAttribute("disabled");
|
|
leaveInInbox.removeAttribute("disabled");
|
|
moveToSent.removeAttribute("disabled");
|
|
neverReturn.removeAttribute("disabled");
|
|
returnSome.removeAttribute("disabled");
|
|
receiptArriveLabel.removeAttribute("disabled");
|
|
receiptRequestLabel.removeAttribute("disabled");
|
|
}
|
|
EnableDisableAllowedReceipts();
|
|
// Lock id based prefs
|
|
onLockPreference("mail.identity", gIdentity.key);
|
|
// Lock server based prefs
|
|
onLockPreference("mail.server", gIncomingServer.key);
|
|
return true;
|
|
}
|
|
|
|
function EnableDisableAllowedReceipts() {
|
|
if (receiptSend) {
|
|
if (!neverReturn.getAttribute("disabled") && (receiptSend.getAttribute("value") != "false")) {
|
|
notInToCcPref.removeAttribute("disabled");
|
|
notInToCcLabel.removeAttribute("disabled");
|
|
outsideDomainPref.removeAttribute("disabled");
|
|
outsideDomainLabel.removeAttribute("disabled");
|
|
otherCasesPref.removeAttribute("disabled");
|
|
otherCasesLabel.removeAttribute("disabled");
|
|
}
|
|
else {
|
|
notInToCcPref.setAttribute("disabled", "true");
|
|
notInToCcLabel.setAttribute("disabled", "true");
|
|
outsideDomainPref.setAttribute("disabled", "true");
|
|
outsideDomainLabel.setAttribute("disabled", "true");
|
|
otherCasesPref.setAttribute("disabled", "true");
|
|
otherCasesLabel.setAttribute("disabled", "true");
|
|
}
|
|
}
|
|
return true;
|
|
}
|
|
|
|
function onPreInit(account, accountValues)
|
|
{
|
|
gIdentity = account.defaultIdentity;
|
|
gIncomingServer = account.incomingServer;
|
|
}
|
|
|
|
// Disables xul elements that have associated preferences locked.
|
|
function onLockPreference(initPrefString, keyString)
|
|
{
|
|
var finalPrefString;
|
|
|
|
var prefService = Components.classes["@mozilla.org/preferences-service;1"].getService(Components.interfaces.nsIPrefService);
|
|
|
|
var allPrefElements = [
|
|
{ prefstring:"request_return_receipt_on", id:"identity.request_return_receipt_on"},
|
|
{ prefstring:"select_custom_prefs", id:"identity.select_custom_prefs"},
|
|
{ prefstring:"select_global_prefs", id:"identity.select_global_prefs"},
|
|
{ prefstring:"incorporate_return_receipt", id:"server.incorporate_return_receipt"},
|
|
{ prefstring:"never_return", id:"never_return"},
|
|
{ prefstring:"return_some", id:"return_some"},
|
|
{ prefstring:"mdn_not_in_to_cc", id:"server.mdn_not_in_to_cc"},
|
|
{ prefstring:"mdn_outside_domain", id:"server.mdn_outside_domain"},
|
|
{ prefstring:"mdn_other", id:"server.mdn_other"},
|
|
];
|
|
|
|
finalPrefString = initPrefString + "." + keyString + ".";
|
|
gMdnPrefBranch = prefService.getBranch(finalPrefString);
|
|
|
|
disableIfLocked( allPrefElements );
|
|
}
|
|
|
|
function disableIfLocked( prefstrArray )
|
|
{
|
|
for (var i=0; i<prefstrArray.length; i++) {
|
|
var id = prefstrArray[i].id;
|
|
var element = document.getElementById(id);
|
|
if (gMdnPrefBranch.prefIsLocked(prefstrArray[i].prefstring)) {
|
|
if (id == "server.incorporate_return_receipt")
|
|
{
|
|
document.getElementById("leave_in_inbox").setAttribute("disabled", "true");
|
|
document.getElementById("move_to_sent").setAttribute("disabled", "true");
|
|
}
|
|
else
|
|
element.setAttribute("disabled", "true");
|
|
}
|
|
}
|
|
}
|