対象
HENNGE Email DLP の初期設定や、運用管理を行う管理者が本記事内容の対象となります。
目的
暗号化タイプ 設定ファイルのカラム(項目)について説明します。
設定ファイルを利用することで、HENNGE Email DLP の設定を一括で登録、更新することができます。
設定ファイルの作成方法およびインポート手順は、次の記事をご参照ください。
HENNGE Email DLP インポートデータ (設定ファイル) 作成について
注意事項
1. 本記事の内容は 2024 年 5 月時点での製品仕様に基づき作成しており、以後予告なく変更される場合があります。
2. 実際の画面確認や、設定の変更には HENNGE Email DLP の管理者権限が必要です。
管理者の設定方法は、以下の記事をご参照ください。
3. HENNGE Email DLP 管理画面の URL は、お客様テナントより異なります。
アクセス URL 例 : https://console.mo.hdems.com/#/admin/[ メイン ドメイン ]
内容
- ファイル形式は YAML と JSON に対応しています。
- ユニークキーは「name」(暗号化タイプの名前)です。
- 「上書き」の場合、ユニークキーに付随する情報は丸ごと上書きされます。
一部だけを修正する場合、暗号化タイプ単位で必要な情報をすべて記載してください。
カラム
カラム | 説明 |
version |
1 を指定します。(固定値) |
encryption_configs |
次行以降に指定した暗号化タイプを作成します。 |
name |
暗号化タイプの名前を指定します。 |
encryption_type | パスワード形式を指定します。 ・fixed_password …固定パスワード ・random_password …ランダムパスワード |
unique_password_per_recipient |
宛先ごとに異なるパスワードを生成するかどうかを指定します。 ・true |
fixed_password |
固定パスワードを指定します。 詳細は 暗号化タイプを作成する をご参考ください。 |
exclude_extensions |
暗号化しないファイル拡張子を指定します。 |
filename_encoding |
ZIP ファイル名のエンコーディング方法を指定します。 |
output_filename |
ZIP ファイル名を指定します。 |
notify_sender |
送信者通知を有効にする場合、「true」 を指定します。 |
notify_recipient_template_id |
受信者通知を有効にするとともに、通知テンプレートIDを指定します。 |
作成例①
固定パスワード pw_"送信日" 、添付ファイル名は「report_"送信日時""タイムゾーン".zip」を作成
YAML 形式
version: 1
encryption_configs:
- name: 固定パスワード(pw_yyyymmdd)
encryption_type: fixed_password
fixed_password_format: pw_((%LOCAL-YEAR%))((%LOCAL-MONTH%))((%LOCAL-DAY%))
filename_encoding: cp932
output_filename: report_((%LOCAL-MONTH%))((%LOCAL-DAY%))((%LOCAL-HOUR%))((%LOCAL-MINUTE%))((%TIMEZONE%)).zip
JSON 形式
{
"version": 1,
"encryption_configs": [
{
"name": "固定パスワード(pw_yyyymmdd)",
"encryption_type": "fixed_password",
"fixed_password_format": "pw_((%LOCAL-YEAR%))((%LOCAL-MONTH%))((%LOCAL-DAY%))",
"filename_encoding": "cp932",
"output_filename": "report_((%LOCAL-MONTH%))((%LOCAL-DAY%))((%LOCAL-HOUR%))((%LOCAL-MINUTE%))((%TIMEZONE%)).zip"
}
]
}
作成例②
宛先ごとに異なるランダムパスワードを設定、かつ zip と tar は暗号化しない。
※ インポート後、画面上で受信者通知のテンプレート指定が必要です。
YAML 形式
version: 1
encryption_configs:
- name: サンプル②
encryption_type: random_password
unique_password_per_recipient: true
filename_encoding: cp932
output_filename: ((%ORIGINAL-NAME%)) .zip
exclude_extensions:
- zip
- tar
notify_sender: true
notify_recipient: true
JSON 形式
{
"version": 1,
"encryption_configs": [
{
"name": "サンプル②",
"encryption_type": "random_password",
"unique_password_per_recipient": true,
"filename_encoding": "cp932",
"output_filename": "((%ORIGINAL-NAME%)) .zip",
"exclude_extensions": [
"zip",
"tar"
],
"notify_sender": true,
"notify_recipient": true
}
]
}