Target
The content of this article is intended for administrators who perform initial setup and operational management of HENNGE Email DLP.
Purpose
This article explains the columns (items) of the filter setting file.
By using the setting file, you can register and update the settings of HENNGE Email DLP in bulk.
Please refer to the following article for the method of creating and importing the setting file.
Creating import data (Setting file) for HENNGE Email DLP
Notes
1. The content of this article is based on the product specifications as of May 2024 and may be subject to change without notice.
2. Administrator privileges of HENNGE Email DLP are required to check the actual screen and change the settings.
Please refer to the following article for the method of setting administrators.
Setup/ Change HENNGE Email DLP Administrators
3. The URL of the HENNGE Email DLP management screen varies depending on the customer's tenant.
Access URL example: https://console.mo.hdems.com/#/admin/[ Main Domain ]
Content
- File formats supported are YAML and JSON.
- The unique key is "priority" (filter priority).
- In the case of "overwrite", the information associated with the above unique key will be entirely overwritten.
Even if you are modifying only part of the filter, please retain the necessary information per filter.
Columns
Column | Description |
version | Specify 1. (fixed value) |
filters | Creates the filters specified in the subsequent lines. |
priority | Specifies the priority. |
from_address_group_name | Specifies the sender's address group. |
to_address_group_name | Specifies the recipient's address group. |
rule_group_name | Specifies the name of the rule group to apply to the combination of senders and recipients of the previous row. |
Example
Creating filters for the "Group requiring approval" and "Normal sending group"
YAML format
version: 1
filters:
- priority: 10000
from_address_group_name: Group requiring approval
to_address_group_name: All
rule_group_name: Approval rule
- priority: 10010
from_address_group_name: Normal sending group
to_address_group_name: All
rule_group_name: Normal sending rule
JSON format
{
"version": 1,
"filters": [
{
"priority": 10000,
"from_address_group_name": "Group requiring approval",
"to_address_group_name": "All",
"rule_group_name": "Approval rule"
},
{
"priority": 10010,
"from_address_group_name": "Normal sending group",
"to_address_group_name": "All",
"rule_group_name": "Normal sending rule"
}
]
}