Mozilla サポートの検索

Avoid support scams. We will never ask you to call or text a phone number or share personal information. Please report suspicious activity using the “Report Abuse” option.

詳しく学ぶ

このスレッドはアーカイブに保管されました。 必要であれば新たに質問してください。

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

  • 2 件の返信
  • 1 人がこの問題に困っています
  • 7 回表示
  • 最後の返信者: 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?

選ばれた解決策

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?

この回答をすべて読む 👍 1

すべての返信 (2)

more options

選ばれた解決策

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.