Hello, I am trying to do an integration as the internal system of the company, where I can create email accounts directly through it from my domain "domain.com"
I did the following:
INSERT INTO `imscp`.`mail_users` (`mail_id`, `mail_acc`, `mail_pass`, `mail_forward`, `domain_id`, `mail_type`, `sub_id`, `status`, `mail_auto_respond`, `mail_auto_respond_text`, `quota`, `mail_addr`) VALUES (NULL, 'test', 'q1w2e3', '_no_', '1', 'normal_mail', '0', 'ok', '0', NULL, '11534336', 'teste@domain.com');
So far all right, I can access the webmail and send email without problem.
However when I send an email to "teste@domain.com" informs the server that the user does not exist.
=================
Delivery to the following recipient failed permanently:
teste@domain.com
Technical details of permanent failure:
Google tried to deliver your message, but it was rejected by the server for the recipient domain domain.com by mail.domain.com. [1.1.1.1].
The error that the other server returned was:
550 5.1.1 <teste@domain.com>: Recipient address rejected: User unknown in virtual mailbox table
==================
This would be possible? I appreciate if someone can help me.
Sorry for the english!