Closed albgen closed 10 months ago
This is something that you will need to check in gmail. As far as I remember, gmail automatically copies all the messages sent in the "Sent" label.
The only workaround I can think of is creating a rule that filters those messages and archives or deletes
I don't think it has to do with gmail. I have tried another smtp software as relay and i don't any copy after sending.
Just checked the source code of the https://github.com/ix-ai/smtp/blob/master/entrypoint.sh The address used for gmail is not the relay one, but the normal smtp used for client mail smtp.gmail.com The address for relay is: smtp-relay.gmail.com
The difference is that if you use the smtp.gmail.com you have a lot of limits and one of the most restrictive is that you cannot send more than 100emails per day(amoung th fact that you find a copy on the sent folder) While using the relay, you can up to 10k emails per day!
Well, in this case you can always use SMARTHOST_ADDRESS
, SMARTHOST_ALIASES
, SMARTHOST_USER
and SMARTHOST_PASSWORD
instead of GMAIL_USER
and GMAIL_PASSWORD
. And to reproduce the behavior, you can set SMARTHOST_ALIASES=*.gmail.com
does not work even with SMARTHOST_ADDRESS
, SMARTHOST_ALIASES
, SMARTHOST_USER
and SMARTHOST_PASSWORD
This is the docker-compose file:
This is the error i see on the log:
Seems like the username and password are not copied on the right place...
Hello,
i've tested to send an email using gmail as realy and it works but the problem is that i see a copy on my gmail inbox too. Why is that? Any chance to disable this behaviour?
thank you