Bug 115290

Summary: dosendpr.cgi - does not set X-GNATS-Notify field
Product: Documentation Reporter: edwin
Component: Books & ArticlesAssignee: freebsd-doc (Nobody) <doc>
Status: Closed FIXED    
Severity: Affects Only Me    
Priority: Normal    
Version: Latest   
Hardware: Any   
OS: Any   

Description edwin 2007-08-08 02:50:00 UTC
The dosendpr.cgi script on www.freebsd.org
(http://www.freebsd.org/cgi/cvsweb.cgi/www/en/cgi/dosendpr.cgi)
does not set the X-GNATS-Notify field in the mail header.

This field is used by the GNATS Auto Assign script to add the
maintainer of a port to the PR.

Fix: 

In dosendpr.cgi:

- $pr .= "X-Send-Pr-Version: www-3.0\n\n" .
+ $pr .= "X-Send-Pr-Version: www-3.0\n" .
+     "X-GNATS-Notify: \n\\n" .
      ">Submitter-Id:\t" . param('submitterid') . "\n" .
      ">Originator:\t" . param('originator') . "\n" .
      ">Organization:\t" . param('organization') . "\n" .
Comment 1 dfilter service freebsd_committer freebsd_triage 2007-08-08 12:31:03 UTC
remko       2007-08-08 11:30:57 UTC

  FreeBSD doc repository

  Modified files:
    en/cgi               dosendpr.cgi 
  Log:
  Add the X-Notify-GNATS: header when we send a PR through the webinterface,
  the GNATS auto assign script uses this to add the maintainer of a port
  to the PR.
  
  PR:             115290
  Submitted by:   Edwin
  
  Revision  Changes    Path
  1.36      +3 -2      www/en/cgi/dosendpr.cgi
_______________________________________________
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to "cvs-all-unsubscribe@freebsd.org"
Comment 2 Remko Lodder freebsd_committer freebsd_triage 2007-08-08 12:31:08 UTC
State Changed
From-To: open->closed

Committed. Thanks!