Greg Korba
Greg Korba
Having the same issue with fresh Mailer installation (v5.2.3) and `amqp` transport. For now I had to set `serializer: messenger.transport.native_php_serializer` in transport's configuration as a workaround. Hope it will be...
@Nyholm I believe @diabl0's [repo](#issuecomment-567961010) is a good starting point, I've just reproduced the issue locally with it. Also I've changed `composer.json`: - `"php": "^7.2.5 || ^8.0",` - changed `5.0.*`...
@Nyholm AFAIS `87f3284` is related to native PHP serializer but the problem in this issue relates to JSON serialization. The fact that `RawMessage` has argument in constructor causes `Symfony\Component\Serializer\Normalizer\AbstractNormalizer::instantiateObject()` to...
Actually looking at the `SendEmailMessage` usage it could be proper solution to change `$message`'s type to `Email` since it's used only in `Symfony\Component\Mailer\Messenger\MessageHandler` with: ``` $this->transport->send($message->getMessage(), $message->getEnvelope()) ``` where `Symfony\Component\Mailer\Transport\TransportInterface::send()`...
@Nyholm Personally I am not so sure this is Serializer's issue. It looks to me like architectural mistake in Mailer/Mime component - there is `SendEmailMessage` message and even its name...
@fabpot I don't know if you're familiar with [my comment](#issuecomment-791295930) but IMHO there was architectural issue in Mailer/Mime component. I said "was" because I don't use Messenger/Mailer currently and I...
@beberlei any chances for merging it? 😅
@iamluc any news on this?
@iamluc hostmanager adds some non-human-friendly Docker hosts to `/etc/hosts`: ``` ## docker-hostmanager-start 172.20.0.2 reverse-proxy.traefik_loc 5b13bd735a62.traefik_loc traefik.traefik_loc 172.27.0.3 rabbitmq.arm_default 6f60c1c9caa7.arm_default arm_rabbitmq_1.arm_default ## docker-hostmanager-end ``` The goal here is to allow define...
@dkarlovi @iamluc would be good to finish this somehow... is there something we can do to get this PR merged? Using Dalibor's fork is OK, but maintaining it (keeping up-to-date)...