blob: 949dca9632742977a00d02a8520c0c875f859ee8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
var EXPORTED_SYMBOLS = ["ImapProtocolHandler"];
var { ImapChannel } = ChromeUtils.import("resource:///modules/ImapChannel.jsm");
/**
* @implements {nsIProtocolHandler}
*/
class ImapProtocolHandler {
QueryInterface = ChromeUtils.generateQI(["nsIProtocolHandler"]);
scheme = "imap";
newChannel(uri, loadInfo) {
let channel = new ImapChannel(uri, loadInfo);
let spec = uri.spec;
if (
spec.includes("part=") &&
!spec.includes("type=message/rfc822") &&
!spec.includes("type=application/x-message-display") &&
!spec.includes("type=application/pdf")
) {
channel.contentDisposition = Ci.nsIChannel.DISPOSITION_ATTACHMENT;
} else {
channel.contentDisposition = Ci.nsIChannel.DISPOSITION_INLINE;
}
return channel;
}
allowPort(port, scheme) {
return true;
}
}
ImapProtocolHandler.prototype.classID = Components.ID(
"{ebb06c58-6ccd-4bde-9087-40663e0388ae}"
);
|