Newer Version Available

This content describes an older version of this product. View Latest

ChatterEmailsMDSettings

Represents an org’s settings for Chatter email when Chatter is enabled. This type extends the Metadata metadata type and inherits its fullName field.

In the package manifest, all organization settings metadata types are accessed using the Settings name. See Settings for details.

File Suffix and Directory Location

The ChatterEmailsMDSettings component appears in the ChatterEmailsMD.settings file, and is stored in the settings folder. The .settings files are different from other named components because there is only one settings file for each settings component.

Version

ChatterEmailsMDSettings components are available in API version 47.0 and later.

Fields

Field Name Field Type Description
enableChatterDigestEmailsApiOnly boolean Indicates whether Chatter digests can be sent via the API, rather than according to the regular schedule, for your org (true) or not (false).
enableChatterEmailAttachment boolean Indicates whether attachments can be included on posts to chatter feeds via email replies (true) or not (false).
enableCollaborationEmail boolean Indicates whether collaboration email notifications can be sent (true) or not (false).
enableDisplayAppDownloadBadges boolean Indicates whether iOS and Android app download badges display in Chatter notifications (true) or not (false).
enableEmailReplyToChatter boolean Indicates whether users can reply to chatter notifications through an email response (true) or not (false).
enableEmailToChatter boolean Indicates whether users can post to chatter feeds via email (true) or not (false).
noQnOwnNotifyOnCaseCmt boolean Indicates whether a user is notified when a question is posted on their case comment (false) or not (true).
noQnOwnNotifyOnRep boolean Indicates whether a user is notified when a reply is posted on their question (false) or not true.
noQnSubNotifyOnBestR boolean Indicates whether a user is notified when a best reply is selected on a question they follow (false) or not (true).
noQnSubNotifyOnRep boolean Indicates whether a user is notified when a reply is posted on a question they follow (false) or not (true).

Declarative Metadata Sample Definition

The following is an example of a chatteremailmd.settings metadata file.

1<?xml version="1.0" encoding="UTF-8"?>
2<ChatterEmailsMDSettings xmlns="http://soap.sforce.com/2006/04/metadata">
3    <enableChatterDigestEmailsApiOnly>false</enableChatterDigestEmailsApiOnly>
4    <enableChatterEmailAttachment>false</enableChatterEmailAttachment>
5    <enableCollaborationEmail>true</enableCollaborationEmail>
6    <enableDisplayAppDownloadBadges>true</enableDisplayAppDownloadBadges>
7    <enableEmailReplyToChatter>false</enableEmailReplyToChatter>
8    <enableEmailToChatter>true</enableEmailToChatter>
9    <noQnOwnNotifyOnCaseCmt>false</noQnOwnNotifyOnCaseCmt>
10    <noQnOwnNotifyOnRep>false</noQnOwnNotifyOnRep>
11    <noQnSubNotifyOnBestR>false</noQnSubNotifyOnBestR>
12    <noQnSubNotifyOnRep>false</noQnSubNotifyOnRep>
13
14</ChatterEmailsMDSettings>

Wildcard Support in the Manifest File

The wildcard character * (asterisk) in the package.xml manifest file doesn’t apply to metadata types for feature settings. The wildcard applies only when retrieving all settings, not for an individual setting. For details, see Settings. For information about using the manifest file, see Deploying and Retrieving Metadata with the Zip File.