JSON Configuration File
To customize the behavior of the Enki Outlook Classic Add-in, you can use a JSON configuration file. Create a file named config.json and place it in the add-in's installation folder.
Example Configuration File
{
"exportType": "eml",
"submitTo": "security@email",
"promptSend": true,
"deleteSentItem": true,
"deleteOriginal": true
}
Configuration Options
| Parameter | Type | Description |
|---|---|---|
| exportType | string | Specifies the file format for the reported email. The value could be "eml" or "msg". |
| submitTo | string | The email address where reported emails are sent. Replace "security@email.com" with your team's address. |
| promptSend | boolean | When set to true, this requires a user to manually send any email after being prompted about an external or unapproved recipient. |
| deleteSentItem | boolean | If true, the reported email will be automatically deleted from the user's Sent Items folder. |
| deleteOriginal | boolean | If true, the original email will be automatically deleted from the user's Inbox after it is reported. |