[Webkit-unassigned] [Bug 46266] Would like a way to send patch review request e-mails with webkit-patch

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Tue Sep 28 12:30:30 PDT 2010


https://bugs.webkit.org/show_bug.cgi?id=46266





--- Comment #1 from Eric Seidel <eric at webkit.org>  2010-09-28 12:30:30 PST ---
So this is rather straightforward to write.

Getting the bug links and title are as simple as calling self._tool.bugs.fetch_bug(bug_id) and accessing url(), title(), etc.

The Checkout() object can provide you information about the current checkout including the latest ChangeLogEntry which would include the bug_id().

One can send mail using http://docs.python.org/library/smtplib.html (configured to talk to Apple's SMTP) or just plain old self.tool.executive.run_command(["mail", "-s", subject, input=message) (if your machine is configured for smtp.

If this was written as a Step instead of a Command it could be added to the list of Steps that upload runs and guarded by a --send-mail option if desired.


Although I'm capable of writing the code, I'm not sure I fully understand the desired workflow.  It's not clear to me why the mailing list exists, for example?  Why not just CC the intended reviewers on the bug?

I guess the list is an artifact of the community being apple-internal?  Since there is a webkit-reviews at lists.webkit.org list which automatically gets review requests for the whole community.

Anyway, it's very possible to do this. But it may be better for me to explain to someone the technical details and let folks who do this workflow implement it exactly as would best fit for them.

-- 
Configure bugmail: https://bugs.webkit.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.



More information about the webkit-unassigned mailing list