Behavior on Import
- The file format supports YAML and JSON.
- There are two registration methods: "Create New" and "Overwrite".
- Importing does not result in deletion. Definitions not included in the imported data will not be updated (they will not be deleted and will remain as they are).
- The unique key is the "Encryption Type Name".
Replace ␣ with a half-width space |
|
---|---|
Column | Description |
version:␣1 | Version (fixed) |
encryption_configs:
|
Creates encryption types specified in the lines below ※In JSON, use "EncryptionConfigs": for this purpose |
-␣name:␣
|
Specify the encryption type name |
encryption_type:␣
|
Specify the password format ・Fixed Password (fixed_password) ・Random Password (random_password) |
unique_password_per_recipient:␣true |
Generate a different password for each recipient |
fixed_password:␣ |
Specify a fixed password For more details, refer to the Setting for Automatic File Encryption |
exclude_extensions: ␣␣-␣[Extensions (dot (.) not needed)] |
Do not encrypt the specified extensions in the lines below |
filename_encoding:␣ |
Specify the encoding method for ZIP file names |
output_filename:␣ | Specify the ZIP file name ※Be sure to include the file extension |
notify_sender:␣true | Enable sender notification ※Cannot be specified with fixed password |
notify_recipient_template_id:␣ |
Enable recipient notification and specify the notification template ID |
Example 1: Create a fixed password pw_"send date" and name the attachment as "report_"send date time""timezone".zip
version: 1
encryption_configs:
- name: Fixed Password (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
Example 2: Set a different random password for each recipient and do not encrypt zip and tar files.
※ After import, specify the recipient notification template on the screen.
version: 1
encryption_configs:
- name: Sample 2
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