fix(paths): Update directory paths to use a dedicated data directory and add ensureDirectories function for proper directory creation.

This commit is contained in:
2025-03-15 13:57:21 +00:00
parent c084de9c78
commit e9b2ec0f59
2 changed files with 30 additions and 6 deletions

View File

@ -1,5 +1,12 @@
# Changelog
## 2025-03-15 - 1.1.1 - fix(paths)
Update directory paths to use a dedicated 'data' directory and add ensureDirectories function for proper directory creation.
- Refactored ts/paths.ts to define a base data directory using process.cwd().
- Reorganized MTA directories (keys, dns, emails sent/received/failed, logs) under the data directory.
- Added ensureDirectories function to create missing directories at runtime.
## 2025-03-15 - 1.1.1 - fix(mta)
Refactor API Manager and DKIMCreator: remove Express dependency in favor of Node's native HTTP server, add an HttpResponse helper to improve request handling, update path and authentication logic, and expose previously private DKIMCreator methods for API access.