/usr/share/idl/thunderbird/nsIMsgCompFields.idl is in thunderbird-dev 1:52.8.0-1~deb8u1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 | /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
/* 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/. */
#include "msgIStructuredHeaders.idl"
interface nsIMsgAttachment;
interface nsISimpleEnumerator;
/**
* A collection of headers and other attributes for building a mail message.
*/
[scriptable, uuid(10928477-4F24-4357-9397-FBD847F46F0A)]
interface nsIMsgCompFields : msgIWritableStructuredHeaders {
attribute AString from;
attribute AString replyTo;
attribute AString to;
attribute AString cc;
attribute AString bcc;
readonly attribute bool hasRecipients;
attribute AString fcc;
attribute AString fcc2;
attribute AString newsgroups;
attribute string newspostUrl;
attribute AString followupTo;
attribute AString subject;
attribute AString organization;
attribute string references;
attribute string priority;
attribute string messageId;
attribute string characterSet;
readonly attribute string defaultCharacterSet;
attribute AString templateName;
attribute string draftId;
attribute boolean returnReceipt;
attribute long receiptHeaderType;
attribute boolean DSN;
attribute boolean attachVCard;
attribute boolean forcePlainText;
attribute boolean useMultipartAlternative;
attribute boolean bodyIsAsciiOnly;
attribute boolean forceMsgEncoding;
/// Status of manually-activated attachment reminder.
attribute boolean attachmentReminder;
/// Delivery format for the mail being composed
/// (auto = 4, text = 1, html = 2, text and html = 3).
attribute long deliveryFormat;
attribute string contentLanguage;
/// This is populated with the key of the identity which created the draft or template.
attribute string creatorIdentityKey;
/**
* Beware that when setting this property, your body must be properly wrapped,
* and the line endings must match MSG_LINEBREAK, namely "\r\n" on Windows
* and "\n" on Linux and OSX.
*/
attribute AString body;
readonly attribute nsISimpleEnumerator attachments;
void addAttachment(in nsIMsgAttachment attachment);
void removeAttachment(in nsIMsgAttachment attachment);
void removeAttachments();
/**
* This function will split the recipients into an array.
*
* @param aRecipients The recipients list to split.
* @param aEmailAddressOnly Set to true to drop display names from the results
* array.
* @param aLength The length of the aResult array.
* @param aResult An array of the recipients.
*/
void splitRecipients(in AString aRecipients, in boolean aEmailAddressOnly,
out unsigned long aLength,
[array, size_is(aLength), retval] out wstring aResult);
void ConvertBodyToPlainText();
/**
* Indicates whether we need to check if the current |DocumentCharset|
* can represent all the characters in the message body. It should be
* initialized to true and set to false when 'Send Anyway' is selected
* by a user. (bug 249530)
*/
attribute boolean needToCheckCharset;
attribute nsISupports securityInfo;
};
|