-
Hi! An app I am using accepts only one authentication but wants to be able to send mails from a few addresses. So I have [email protected] in the app, authenticated and can send email fine. But it also want to send emails from [email protected]. What is the way to authenticate for both of these mails with one credential/user? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 4 replies
-
Four minutes later and I have found the answer lol. Even though (at least to me) documentation is not clear about this, looks like aliases are exactly doing this. So if I do: |
Beta Was this translation helpful? Give feedback.
-
The email address is your accounts inbox and where mail will be received from on port 25, but you're not restricted to what sender address you use otherwise 👍 |
Beta Was this translation helpful? Give feedback.
Four minutes later and I have found the answer lol. Even though (at least to me) documentation is not clear about this, looks like aliases are exactly doing this. So if I do:
docker exec -ti mailserver setup alias add [email protected] [email protected]
what I want happens.