Comment 2 for bug 1776263

Revision history for this message
Colin Watson (cjwatson) wrote :

The kernel Bugzilla instance doesn't expose the email address:

  $ python
  >>> import xmlrpclib
  >>> mozilla = xmlrpclib.ServerProxy('https://bugzilla.mozilla.org/xmlrpc.cgi')
  >>> mozilla.Bug.comments({'comment_ids': [5440259]})['comments']['5440259']['creator']
  'david.ward@<domain redacted>'
  >>> kernel = xmlrpclib.ServerProxy('https://bugzilla.kernel.org/xmlrpc.cgi')
  >>> kernel.Bug.comments({'comment_ids': [1052651]})['comments']['1052651']['creator']
  'david.ward'

There may be some other API to let us get hold of the email address; this will require investigation.

[Reposted comment to redact email address, since it's marked private on your Launchpad account.]