Add domain

If you want Mireka to accept mails from external servers then you have to specify the list of your domain names. For example, if john@example.com and john@example.net are mail addresses of your local users, then you have to add example.com and example.net to the list. If the domain part of a recipient is not in this list, then the recipient will be rejected by the MX SMTP service.

The list is specified in the domains.js configuration file. Edit the file and add your domain to the remoteParts list. For the example above the file should look something like this:

localDomains = setup(InlineDomainRegistry, { remoteParts: [ "example.com", "example.net" ] });

The domain must be double quoted, multiple domains must be separated by commas.