Pesquisar no site de suporte

Evite golpes de suporte. Nunca pedimos que você ligue ou envie uma mensagem de texto para um número de telefone, ou compartilhe informações pessoais. Denuncie atividades suspeitas usando a opção “Denunciar abuso”.

Saiba mais

Esta discussão foi arquivada. Faça uma nova pergunta se precisa de ajuda.

Cloudmagic HTML signatures have broken images in thunderbird, how to fix?

  • 2 respostas
  • 1 tem este problema
  • 7 visualizações
  • Última resposta de Dazrpc

more options

I am using cloudmagic for email on my phone and utilizing the html signature functionality.

The signature displays fine in outlook, outlook.com, gmail and so on however in thunderbird all images are broken and do not display.

How do I fix this?

I am using cloudmagic for email on my phone and utilizing the html signature functionality. The signature displays fine in outlook, outlook.com, gmail and so on however in thunderbird all images are broken and do not display. How do I fix this?

Solução escolhida

Is the image included in a standards compliant form?

email does not use file extensions to identify a file as a "type" it uses the mime type.

Microsoft apparently think everyone should do it their way and use file extensions. This is actually a very bad idea as it makes including phishing attacks and malware so much easier. But they are the 1000 ton elephant in the room.

So open the message source. ((ctrl+U)

images will appear looking like this.

Content-Type: image/png;
  name="Grates.PNG"
Content-Transfer-Encoding: base64
Content-Disposition: inline;
 filename="Grates.PNG"

The important part of this is the ContentType which tells Thunderbird what the item is. Lots of non compliant products use octet stream or other generic statements meaning "binary data" what are your email showing in there?

Ler esta resposta 👍 1

Todas as respostas (2)

more options

Solução escolhida

Is the image included in a standards compliant form?

email does not use file extensions to identify a file as a "type" it uses the mime type.

Microsoft apparently think everyone should do it their way and use file extensions. This is actually a very bad idea as it makes including phishing attacks and malware so much easier. But they are the 1000 ton elephant in the room.

So open the message source. ((ctrl+U)

images will appear looking like this.

Content-Type: image/png;
  name="Grates.PNG"
Content-Transfer-Encoding: base64
Content-Disposition: inline;
 filename="Grates.PNG"

The important part of this is the ContentType which tells Thunderbird what the item is. Lots of non compliant products use octet stream or other generic statements meaning "binary data" what are your email showing in there?

more options

Its using octet stream as you suspected.

That will be that then.

Thank you for the response.