How can I enable CSV exports?
Since passbolt >= 5.10, cleartext exports are no longer suppported by default, however we still decided to let the administrator the choice to enable CSV exports manually. In order to do that, you will need to set an environment variable, the process varies depending on your installation type:
- Docker
- Helm
- Package
You need to update the docker compose file by adding this environment variable
PASSBOLT_PLUGINS_EXPORT_POLICIES_ALLOW_CSV_FORMAT=true
You need to update the values file by adding this environment variable
PASSBOLT_PLUGINS_EXPORT_POLICIES_ALLOW_CSV_FORMAT=true
You need to update the passbolt configuration file located in /etc/passbolt/passbolt.php
(...)
'passbolt' => [
'plugins' => [
'exportPolicies' => [
'allowCsvFormat' => true,
],
],
(...)