~ubuntu-branches/ubuntu/quantal/enigmail/quantal-security

« back to all changes in this revision

Viewing changes to extensions/enigmail/package/enigprefs-service.js

  • Committer: Package Import Robot
  • Author(s): Chris Coulson
  • Date: 2013-09-13 16:02:15 UTC
  • mfrom: (0.12.16)
  • Revision ID: package-import@ubuntu.com-20130913160215-u3g8nmwa0pdwagwc
Tags: 2:1.5.2-0ubuntu0.12.10.1
* New upstream release v1.5.2 for Thunderbird 24

* Build enigmail using a stripped down Thunderbird 17 build system, as it's
  now quite difficult to build the way we were doing previously, with the
  latest Firefox build system
* Add debian/patches/no_libxpcom.patch - Don't link against libxpcom, as it
  doesn't exist anymore (but exists in the build system)
* Add debian/patches/use_sdk.patch - Use the SDK version of xpt.py and
  friends
* Drop debian/patches/ipc-pipe_rename.diff (not needed anymore)
* Drop debian/patches/makefile_depth.diff (not needed anymore)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/*
2
 
 * The contents of this file are subject to the Mozilla Public
3
 
 * License Version 1.1 (the "MPL"); you may not use this file
4
 
 * except in compliance with the MPL. You may obtain a copy of
5
 
 * the MPL at http://www.mozilla.org/MPL/
6
 
 *
7
 
 * Software distributed under the MPL is distributed on an "AS
8
 
 * IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
9
 
 * implied. See the MPL for the specific language governing
10
 
 * rights and limitations under the MPL.
11
 
 *
12
 
 * The Original Code is Enigmail.
13
 
 *
14
 
 * The Initial Developer of this code is Patrick Brunschwig.
15
 
 * Portions created by Patrick Brunschwig <patrick.brunschwig@gmx.net> are
16
 
 * Copyright (C) 2003 Patrick Brunschwig. All Rights Reserved.
17
 
 *
18
 
 * Contributor(s):
19
 
 *
20
 
 * Alternatively, the contents of this file may be used under the
21
 
 * terms of the GNU General Public License (the "GPL"), in which case
22
 
 * the provisions of the GPL are applicable instead of
23
 
 * those above. If you wish to allow use of your version of this
24
 
 * file only under the terms of the GPL and not to allow
25
 
 * others to use your version of this file under the MPL, indicate
26
 
 * your decision by deleting the provisions above and replace them
27
 
 * with the notice and other provisions required by the GPL.
28
 
 * If you do not delete the provisions above, a recipient
29
 
 * may use your version of this file under either the MPL or the
30
 
 * GPL.
31
 
 */
32
 
 
33
 
Components.utils.import("resource://gre/modules/XPCOMUtils.jsm");
34
 
 
35
 
function EnigmailPrefService() {}
36
 
 
37
 
EnigmailPrefService.prototype = {
38
 
  name: "enigprefs",
39
 
  chromePackageName: "enigmail",
40
 
  classID:  Components.ID("{847b3ab0-7ab1-11d4-8f02-006008948af5}"),
41
 
  classDescription: "Enigmail Account Manager Extension Service",
42
 
  contractID: "@mozilla.org/accountmanager/extension;1?name=enigprefs",
43
 
  _xpcom_categories: [{
44
 
    category: "mailnews-accountmanager-extensions",
45
 
    entry: "Enigmail account manager extension",
46
 
    service: false
47
 
  }],
48
 
  QueryInterface: XPCOMUtils.generateQI([Components.interfaces.nsIMsgAccountManagerExtension]),
49
 
  showPanel: function (server)
50
 
  {
51
 
    // show Enigmail panel for POP3, IMAP, NNTP and "movemail" (unix) account types
52
 
    switch (server.type) {
53
 
    case "nntp":
54
 
    case "imap":
55
 
    case "pop3":
56
 
    case "movemail":
57
 
      return true;
58
 
    }
59
 
    return false;
60
 
  }
61
 
};
62
 
 
63
 
if (XPCOMUtils.generateNSGetFactory) {
64
 
  // Gecko >= 2.0
65
 
  var components = [EnigmailPrefService];
66
 
  const NSGetFactory = XPCOMUtils.generateNSGetFactory(components);
67
 
}
68
 
else {
69
 
  // Gecko <= 1.9.x
70
 
  var NSGetModule = XPCOMUtils.generateNSGetModule([EnigmailPrefService], postModuleRegisterCallback);
71
 
 
72
 
}
73
 
 
74
 
function postModuleRegisterCallback (compMgr, fileSpec, componentsArray) {
75
 
  dump("Enigmail account manager extension registered\n");
76
 
}