Gnus development mailing list
 help / color / mirror / Atom feed
* gmail html email. Quote are not recognized.
@ 2017-12-14 14:20 Uwe Brauer
  2017-12-14 15:09 ` [partially solved] (was: gmail html email. Quote are not recognized.) Uwe Brauer
  0 siblings, 1 reply; 3+ messages in thread
From: Uwe Brauer @ 2017-12-14 14:20 UTC (permalink / raw)
  To: ding

 

Hi

I am using Ubuntu 14.04, GNU emacs 26 and the gnus version 
shipped.

Steps to reproduce  the problem.

    - From a google account send a HTML mail to yourself. (for not 
    HTML 
        mail this problem does not occur, but HTML is, 
        unfortunately now, the standard setting)

    -  open that message in google mail (not in gnus) reply and 
    leave 
       the quotation intact, reply inline, in gnus that it would 
       be.

> original message

This is my answer.

    -  sent the reply to yourself.

    -  open it reply message with gnus. Now the original message 
    and the 
       quotes can not be distinguished by gnus (they  can by 
       thunderbird).  The problem is not solved by adding new 
       lines after the quotes.

For me this is a serious problem, because a lot of my colleagues 
use now gmail (most of them reply above the quote, which is also 
annoying) but in the case of inline quotation the thing now seems 
messed up.

Anybody has had similar experience and knows what to do??
Any help is strongly appreciated.

Here is an example


MIME-Version: 1.0 Received: by 10.25.26.6 with HTTP; Thu, 14 Dec 
2017 06:02:26 -0800 (PST) Date: Thu, 14 Dec 2017 15:02:26 +0100 
Delivered-To: oub@ucm.es Message-ID: 
<CABUPoZhEFJ=EPY8LeOvZXWV8drtujtwXN_VHaeMSGpwuCFSK2w@mail.gmail.com> 
Subject: first message From: Uwe Brauer <oub@mat.ucm.es> To: Uwe 
Brauer <oub@mat.ucm.es> Content-Type: multipart/alternative; 
boundary="089e0827bf7c83823905604d55e5"  This is a test  we will 
add more text. 
 

And here is the answer

MIME-Version: 1.0 Received: by 10.25.26.6 with HTTP; Thu, 14 Dec 
2017 06:03:19 -0800 (PST) In-Reply-To: 
<CABUPoZhEFJ=EPY8LeOvZXWV8drtujtwXN_VHaeMSGpwuCFSK2w@mail.gmail.com> 
References: 
<CABUPoZhEFJ=EPY8LeOvZXWV8drtujtwXN_VHaeMSGpwuCFSK2w@mail.gmail.com> 
Date: Thu, 14 Dec 2017 15:03:19 +0100 Delivered-To: oub@ucm.es 
Message-ID: 
<CABUPoZijwR-VzJsqpv-y8tWMU35Azr0uo1epg3eLQSKN3caPoQ@mail.gmail.com> 
Subject: Re: first message From: Uwe Brauer <oub@mat.ucm.es> To: 
Uwe Brauer <oub@mat.ucm.es> Content-Type: multipart/alternative; 
boundary="001a11411e3ca7252e05604d5891"  On Thu, Dec 14, 2017 at 
3:02 PM, Uwe Brauer <oub@mat.ucm.es> wrote: 
 
 This is a test  
 
Hi let us see  
 
 we will add more text. 
 
Let us see  


I could send a digest as well

Regards

Uwe Brauer  





^ permalink raw reply	[flat|nested] 3+ messages in thread

* [partially solved] (was: gmail html email. Quote are not recognized.)
  2017-12-14 14:20 gmail html email. Quote are not recognized Uwe Brauer
@ 2017-12-14 15:09 ` Uwe Brauer
  2017-12-15 13:26   ` [SOLVED] (was: [partially solved]) Uwe Brauer
  0 siblings, 1 reply; 3+ messages in thread
From: Uwe Brauer @ 2017-12-14 15:09 UTC (permalink / raw)
  To: ding

>>> "Uwe" == Uwe Brauer <oub@mat.ucm.es> writes:

    > Hi

    > For me this is a serious problem, because a lot of my colleagues use
    > now gmail (most of them reply above the quote, which is also annoying)
    > but in the case of inline quotation the thing now seems messed up.

    > Anybody has had similar experience and knows what to do??
    > Any help is strongly appreciated.


I played around with these 3 variables

 gnus-mime-display-multipart-alternative-as-mixed 

 gnus-mime-display-multipart-related-as-mixed 
 gnus-mime-display-multipart-as-mixed 

When all are nil, the default, math png is displayed nicely, but GMAIL
HTML messages with quotes are not correctly displayed.

This can be overcome by setting


(setq gnus-mime-display-multipart-alternative-as-mixed t)
(setq gnus-mime-display-multipart-related-as-mixed nil)
(setq gnus-mime-display-multipart-as-mixed nil)

Then quotation is OK, math is OK, but the message are displayed twice.

Any other solution would be appreciated.

Uwe Brauer 




^ permalink raw reply	[flat|nested] 3+ messages in thread

* [SOLVED] (was: [partially solved])
  2017-12-14 15:09 ` [partially solved] (was: gmail html email. Quote are not recognized.) Uwe Brauer
@ 2017-12-15 13:26   ` Uwe Brauer
  0 siblings, 0 replies; 3+ messages in thread
From: Uwe Brauer @ 2017-12-15 13:26 UTC (permalink / raw)
  To: ding


    > I played around with these 3 variables

    >  gnus-mime-display-multipart-alternative-as-mixed 
    >  gnus-mime-display-multipart-related-as-mixed 
    >  gnus-mime-display-multipart-as-mixed 


After playing around with these variables I found out that the correct
setting which displays math/png and the gmail/html quotes is:

(setq gnus-mime-display-multipart-alternative-as-mixed nil) 
(setq gnus-mime-display-multipart-related-as-mixed nil)
(setq gnus-mime-display-multipart-as-mixed nil)  
(setq mm-discouraged-alternatives '("text/html")) ;standard setting for quotes in gmail
(setq mm-text-html-renderer 'shr) 




^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2017-12-15 13:26 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-12-14 14:20 gmail html email. Quote are not recognized Uwe Brauer
2017-12-14 15:09 ` [partially solved] (was: gmail html email. Quote are not recognized.) Uwe Brauer
2017-12-15 13:26   ` [SOLVED] (was: [partially solved]) Uwe Brauer

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).