/usr/share/idl/thunderbird/nsIMsgCompFields.idl is in thunderbird-dev 1:24.4.0+build1-0ubuntu1.
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 "nsISupports.idl"
#include "nsIMsgAttachment.idl"
#include "nsISimpleEnumerator.idl"
[scriptable, uuid(bb793677-87c1-4125-b929-252bd9177794)]
interface nsIMsgCompFields : nsISupports {
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;
attribute AString otherRandomHeaders;
/**
* 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;
/**
* temporaryFiles
*
* @OBSOLETE, DO NOT USE ANYMORE
*/
attribute string temporaryFiles;
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();
// Check if the composing mail headers can be converted to a mail charset.
boolean checkCharsetConversion(out string fallbackCharset);
/**
* 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;
};
|