BREAKING_CHANGE(structure): rebrand as dcrouter

This commit is contained in:
Philipp Kunz 2025-05-22 13:03:09 +00:00
parent ac419e7b79
commit ca53816b41
2 changed files with 4 additions and 7 deletions

View File

@ -1,6 +1,6 @@
# @serve.zone/platformservice
# dcrouter
contains the platformservice container with mail, sms, letter, ai services.
dcrouter: a traffic router intended to be gating your datacenter.
## Install

View File

@ -371,11 +371,8 @@ export class UnifiedEmailServer extends EventEmitter {
// The server is started when it's created
logger.log('info', `UnifiedEmailServer listening on port ${port}`);
// Set up event handlers
(smtpServer as any).server.on('error', (err: Error) => {
logger.log('error', `SMTP server error on port ${port}: ${err.message}`);
this.emit('error', err);
});
// Event handlers are managed internally by the SmtpServer class
// No need to access the private server property
resolve();
} catch (err) {