- Add @git.zone/tsrust with linux_amd64/linux_arm64 cross-compilation - Scaffold Rust workspace with 5 crates: mailer-core, mailer-smtp, mailer-security, mailer-napi, mailer-bin - Fix all TypeScript compilation errors for upgraded dependencies (smartfile v13, mailauth v4.13, smartproxy v23) - Replace smartfile.fs/memory with @push.rocks/smartfs throughout codebase - Fix .ts import extensions to .js for NodeNext module resolution - Update DKIMSignOptions usage to match mailauth v4.13 API - Add MTA error classes with permissive signatures for legacy SMTP client - Replace removed DcRouter/StorageManager/deliverability imports with local interfaces
24 lines
622 B
TypeScript
24 lines
622 B
TypeScript
/**
|
|
* SMTP Client Module Exports
|
|
* Modular SMTP client implementation for robust email delivery
|
|
*/
|
|
|
|
// Main client class and factory
|
|
export * from './smtp-client.js';
|
|
export * from './create-client.js';
|
|
|
|
// Core handlers
|
|
export * from './connection-manager.js';
|
|
export * from './command-handler.js';
|
|
export * from './auth-handler.js';
|
|
export * from './tls-handler.js';
|
|
export * from './error-handler.js';
|
|
|
|
// Interfaces and types
|
|
export * from './interfaces.js';
|
|
export * from './constants.js';
|
|
|
|
// Utilities
|
|
export * from './utils/validation.js';
|
|
export * from './utils/logging.js';
|
|
export * from './utils/helpers.js'; |