Funkcjonalność tej witryny będzie ograniczona w czasie konserwacji. Jeśli artykuł nie rozwiązuje twojego problemu i chcesz zadać pytanie, to nasza społeczność wsparcia jest dostępna na @FirefoxSupport na Twitterze i /r/firefox na Reddicie.

Przeszukaj pomoc

Unikaj oszustw związanych z pomocą.Nigdy nie będziemy prosić Cię o dzwonienie na numer telefonu, wysyłanie SMS-ów ani o udostępnianie danych osobowych. Zgłoś podejrzaną aktywność, korzystając z opcji „Zgłoś nadużycie”.

Więcej informacji

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

  • 2 odpowiedzi
  • 1 osoba ma ten problem
  • 7 wyświetleń
  • Ostatnia odpowiedź od 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?

Wybrane rozwiązanie

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?

Przeczytaj tę odpowiedź w całym kontekście 👍 1

Wszystkie odpowiedzi (2)

more options

Wybrane rozwiązanie

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.