Closed Bug 1035972 Opened 10 years ago Closed 10 years ago

add preference to include all X-Headers in email bodies to allow gmail to filter on them

Categories

(bugzilla.mozilla.org :: Extensions, defect)

Production
defect
Not set
normal

Tracking

()

RESOLVED FIXED

People

(Reporter: gene, Assigned: glob)

References

Details

Attachments

(1 file, 2 obsolete files)

To simplify filtering Bugzilla emails in Gmail (which has limited email header filtering capabilities), what do you think about adding the header block to the body of HTML email in a non-displaying block?

I've put together a patch here : https://gist.github.com/gene1wood/62f64b0f363102cb4408

Does this look like something useful?

In this patch, I'm using "font-size:0px" because Gmail removes "dispaly:none" css from html email.

I've sent some emails with this format of html email to gmail and am able to filter on X-Headers.
:glob says : "This patch isn't suitable for deployment; it needs to be controlled via a preference (opt-in), needs to be present in both plain-text and html payloads, and should avoid duplication of x-header code (editing these fields should happen in a single place, not across 3 files). "
> it needs to be controlled via a preference (opt-in)

Ah, good idea. No need to put the content in everyone's HTML email.

> needs to be present in both plain-text and html payloads

Tell me more about this. Currently there are values which are only present in the body of the HTML emails and not plaintext (e.g. Component, Product, Reason)

> should avoid duplication of x-header code

Agreed

Byron, what do you think of the general concept of putting this type of content into the body of the email for purposes of enabling users of email providers without header filtering the ability to filter emails?
(In reply to Gene Wood [:gene] from comment #2)
> > needs to be present in both plain-text and html payloads
> 
> Tell me more about this. Currently there are values which are only present
> in the body of the HTML emails and not plaintext (e.g. Component, Product,
> Reason)

that isn't correct - that content is present in our plaintext part.

> Byron, what do you think of the general concept of putting this type of
> content into the body of the email for purposes of enabling users of email
> providers without header filtering the ability to filter emails?

even with the x-headers in the message body, we'd still have limited filtering capabilities in comparison with what is currently possible in zimbra.

examples of things that won't be possible:

multiple filters: gmail has a single "has the words" field.  i don't see how you can filter on things like "X-Bugzilla-Flags contains needinfo?" and "X-Bugzilla-Flag-Requestee contains glob@mozilla.com"

negative filtering: you can't express conditions like "X-Bugzilla-Watch-Reason does-not-match-example None"

per-field filtering:  you can't filter on a specific field.  eg. you wouldn't be able express "X-Bugzilla-Flags contains needinfo?" because that header can contain multiple values




it may pan out that dumping the x-headers into the body is "good enough" for most users, but it would be a shame to settle for a partial solution to this issue without first exploring alternatives (such as bug  1036263).
Component: General → Extensions: BMO
OS: Linux → All
Hardware: x86_64 → All
Summary: bugzilla.mozilla.org email template extension to include X-Headers in body → add preference to include all X-Headers in email bodies to allow gmail to filter on them
Version: Development/Staging → Production
One thought that Byron and I just chatted about to resolve the challenge of filtering on an X header that presents a list of values (for example :

X-Bugzilla-Reason: CC Reporter

)

is to take list values and represent them each on their own line for example :

X-Bugzilla-Reason: CC 
X-Bugzilla-Reason: Reporter

This would allow filters like 

from:bugzilla-daemon@mozilla.org "X-Bugzilla-Reason: CC" -"X-Bugzilla-Reason: Reporter"

which would include tickets which the user is CC'd on and exclude where the user id the Reporter
Assignee: nobody → glob
Attached patch 1035972_1.patch (obsolete) — Splinter Review
- insert placeholder text into the 3 email templates (bugmail.txt, bugmail.html, flagmail)
- adds a user setting, which if set to on:
  - reads the x-bugzilla- headers from the current email
  - splits multi-value items
  - replaces the placeholder
- if set to off, the placeholder text is replaced with an empty string
- in the html part, it's hidden from clients using:
  <pre style="font-size: 0pt; color: #fff">..</pre>
  - tested with gmail web client and thunderbird
Attachment #8491517 - Flags: review?(dkl)
Attached patch 1035972_2.patch (obsolete) — Splinter Review
fixes an issues where the parts were being updated, but the emails were not reflecting the updates.
Attachment #8491517 - Attachment is obsolete: true
Attachment #8491517 - Flags: review?(dkl)
Attachment #8495354 - Flags: review?(dkl)
Comment on attachment 8495354 [details] [diff] [review]
1035972_2.patch

Review of attachment 8495354 [details] [diff] [review]:
-----------------------------------------------------------------

The code runs as the current user and not the user being sent to the email. So if the current user (UI) has their pref to not include
headers, all emails do not get headers in the body and vice versa.

Unfortunately the mailer_before_send hook does not include the user the email is being sent as a param since it is ran by jobqueue.
You will need to pull out the user from the To: similar to how SecureMail does it currently to get the user's preference.

http://git.mozilla.org/?p=webtools/bmo/bugzilla.git;a=blob;f=extensions/SecureMail/Extension.pm;h=6871129556e86fe607294fb587d916301209d1ee;hb=HEAD#l272 [github]

Should be a quick r+ once that is solved as everything else checks out.

dkl

::: extensions/BMO/template/en/default/hook/global/setting-descs-settings.none.tmpl
@@ +10,5 @@
>      setting_descs.product_chooser        = "Product chooser to use when entering bugs",
>      setting_descs.pretty_product_chooser = "Pretty chooser with common products and icons",
>      setting_descs.full_product_chooser   = "Full chooser with all products",
> +
> +    setting_descs.headers_in_body        = "Include X-Bugzilla- headers in BugMail body",

nit: remove extra line
Attachment #8495354 - Flags: review?(dkl) → review-
Attached patch 1035972_3.patchSplinter Review
good catch!
Attachment #8495354 - Attachment is obsolete: true
Attachment #8495721 - Flags: review?(dkl)
Comment on attachment 8495721 [details] [diff] [review]
1035972_3.patch

Review of attachment 8495721 [details] [diff] [review]:
-----------------------------------------------------------------

r=dkl
Attachment #8495721 - Flags: review?(dkl) → review+
To ssh://gitolite3@git.mozilla.org/webtools/bmo/bugzilla.git
   6612062..9552ab9  master -> master
Status: NEW → RESOLVED
Closed: 10 years ago
Resolution: --- → FIXED
Depends on: 1111878
Blocks: 1111878
No longer depends on: 1111878
Component: Extensions: BMO → Extensions
You need to log in before you can comment on or make changes to this bug.

Attachment

General

Creator:
Created:
Updated:
Size: