diff options
author | wolfbeast <mcwerewolf@gmail.com> | 2018-06-10 00:45:25 +0200 |
---|---|---|
committer | wolfbeast <mcwerewolf@gmail.com> | 2018-06-10 00:45:25 +0200 |
commit | 78721fe68a7f537e3273aa8f9eab33745f0e1603 (patch) | |
tree | 5d5962724b91ec47bd85fb6532d398be383ba230 /application | |
parent | 3a863bece7aa02fe7d92645ba955515c7f1584fa (diff) | |
download | UXP-78721fe68a7f537e3273aa8f9eab33745f0e1603.tar UXP-78721fe68a7f537e3273aa8f9eab33745f0e1603.tar.gz UXP-78721fe68a7f537e3273aa8f9eab33745f0e1603.tar.lz UXP-78721fe68a7f537e3273aa8f9eab33745f0e1603.tar.xz UXP-78721fe68a7f537e3273aa8f9eab33745f0e1603.zip |
Set Pale Moon Sync specific URLs in application shared prefs.
Tag #468.
Diffstat (limited to 'application')
-rw-r--r-- | application/palemoon/branding/shared/pref/preferences.inc | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/application/palemoon/branding/shared/pref/preferences.inc b/application/palemoon/branding/shared/pref/preferences.inc index 58539aeb2..7c47a9fef 100644 --- a/application/palemoon/branding/shared/pref/preferences.inc +++ b/application/palemoon/branding/shared/pref/preferences.inc @@ -112,10 +112,15 @@ pref("image.mem.decode_bytes_at_a_time", 65536); //larger chunks // ===| Sync |================================================================= -// Sync server URL +// Pale Moon Sync server URLs pref("services.sync.serverURL","https://pmsync.palemoon.org/sync/index.php/"); pref("services.sync.jpake.serverURL","https://keyserver.palemoon.org/"); -pref("services.sync.APILevel", 1); // FSyncMS doesn't support info/configuration +pref("services.sync.termsURL", "http://www.palemoon.org/sync/terms.shtml"); +pref("services.sync.privacyURL", "http://www.palemoon.org/sync/privacy.shtml"); +pref("services.sync.statusURL", "https://pmsync.palemoon.org/status/"); +pref("services.sync.syncKeyHelpURL", "http://www.palemoon.org/sync/help/recoverykey.shtml"); + +pref("services.sync.APILevel", 1); // FSyncMS doesn't support 'info/configuration' requests // ============================================================================ |