Ce site disposera de fonctionnalités limitées pendant que nous effectuons des opérations de maintenance en vue de vous proposer un meilleur service. Si un article ne règle pas votre problème et que vous souhaitez poser une question, notre communauté d’assistance est prête à vous répondre via @FirefoxSupport sur Twitter, et /r/firefox sur Reddit.

Rechercher dans l’assistance

Évitez les escroqueries à l’assistance. Nous ne vous demanderons jamais d’appeler ou d’envoyer un SMS à un numéro de téléphone ou de partager des informations personnelles. Veuillez signaler toute activité suspecte en utilisant l’option « Signaler un abus ».

En savoir plus

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

  • 2 réponses
  • 1 a ce problème
  • 7 vues
  • Dernière réponse par 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?

Solution choisie

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?

Lire cette réponse dans son contexte 👍 1

Toutes les réponses (2)

more options

Solution choisie

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.