summaryrefslogtreecommitdiffstats
path: root/contrib
AgeCommit message (Collapse)AuthorFilesLines
2003-01-25Bug 190521 - If the attachment didn't have a Content-Description: header in ↵jake%bugzilla.org1-2/+3
the e-mail, it ended up not having a description in Bugzilla leaving nothing to click on in the Attachment table on the bug form. r=jake a=justdave
2002-09-23bug 157756 - Groups_20020716_Branch Tracking : > 55 groups now supportedbugreport%peshkin.net1-1/+1
r=bbaetz, gerv
2002-09-03bug 163024 - bugzilla_email_append calls processmail incorrectlybbaetz%student.usyd.edu.au1-1/+1
r=joel, preed
2002-08-27Updating my e-mail address as jake@acutex.net is no longer valid.jake%bugzilla.org1-0/+1
* NO CODE CHANGES *
2002-08-27Bug 86651 - cvs-update was setting sticky dates which made commiting changes ↵jake%bugzilla.org1-3/+8
and getting updates more difficult r=bbaetz, jouni
2002-08-26Bug 76923 - Don't |use diagnostics| (its really expensive at startup time)bbaetz%student.usyd.edu.au4-5/+1
r=joel x2
2002-08-17bug 160631 - bug_email.pl is brokenbbaetz%student.usyd.edu.au1-7/+1
r=joel x2
2002-08-12Bug 43600 - Convert products/components to use ids instead of names.bbaetz%student.usyd.edu.au1-13/+23
Initial attempt by jake@bugzilla.org, updated by me r=joel, preed
2002-07-25Fix for bug 154008: some basic (but incomplete) maintenance on bug_email.pl, ↵justdave%syndicomm.com2-11/+22
also fixes a possible security hole with a misuse of a system() call. Patches by Erik Anderson <erikba@teamworkgroup.com> and Brad Baetz <bbaetz@student.usyd.edu.au> r= myk, justdave
2002-07-11Fix for bug 156559: Changes to mysqld-watcher.pl to make it kill queries ↵myk%mozilla.org1-29/+45
quicker, kill 'em all at once, give better notifications, and not include globals.pl, which is unnecessary. r=dmose
2002-02-13Adding jb2bz.py to contrib (bug 124869).justdave%syndicomm.com1-0/+303
Conversion script to import bugs from Jitterbug into Bugzilla contributed by Tom Emerson <tree@basistech.com>
2002-01-31Bug 122589 -- Update gnats conversion script to newer schema of 2.14.jake%acutex.net1-40/+86
Patch by Andrea Dell'Amico <adellam@link.it>
2001-11-16Bug 6419 - command-line query tools by Andreas Franke <afranke@ags.uni-sb.de>.gerv%gerv.net3-0/+174
2001-06-01Fix for bug 73249: perl warnings under 5.6.0.justdave%syndicomm.com1-13/+13
Patch by Chris Yeh <Chris.Yeh@nokia.com> r= justdave@syndicomm.com
2001-05-25Bug 79739 - Initial Owner and QA Contact were not being handled correctly by ↵jake%acutex.net1-23/+12
the email interface after they were changed to userid's in bug 66876. r= justdave@syndicomm.com
2001-04-23Added a couple of lines about mysqld-watcher.pl. Bug 76862.gerv%gerv.net1-3/+5
2001-04-23Per bug 76862, moving mysqld-watcher.pl into contribjustdave%syndicomm.com1-0/+102
2001-04-19initial checkinendico%mozilla.org1-0/+40
2000-09-13fix for 50647: RFE: yp_nomail.sh contribution. contributed by ↵cyeh%bluemartini.com2-0/+80
mtakacs@pacbell.net
2000-09-06Fix for bug 38791: scipped -> skipped spelling correction.dave%intrec.com1-2/+2
2000-08-31fix submitted for 42809: bug_email.pl doesn't allow for priority = 0cyeh%bluemartini.com1-3/+3
patch submitted by brad@xyu.dhs.org (Brad Sarsfield)
2000-03-19fixed bug where the everconfirmed field was not being properly set via a ↵seth%cs.brandeis.edu1-3/+14
bug_email.
2000-03-16Added a bugzilla.procmailrc as a sample procmailrc fileseth%cs.brandeis.edu3-2/+37
bugzilla_email_append.pl calls processmail.pl after writing out the changes.
2000-03-16A few changes ...seth%cs.brandeis.edu3-50/+270
1. BugzillaEmail.pm is a (kinda, sorta) module which is going to hold the various code which is common between all the scripts which access bugzilla via email. 2. bug_email.pl uses this module 3. bugzilla_email_append.pl is a mostly ready script which will append messages to existing bugs.
2000-03-15updated to better reflect reality in terms of recent changes to bug_email.pl.seth%cs.brandeis.edu1-6/+15
2000-03-08* this adds in DEFAULT_PRODUCT and DEFAULT_COMPONENT functionality to theseth%cs.brandeis.edu1-5/+20
bug_email.pl script. See comments in the script itself for how it works.
2000-03-08Submission by Klaas Freitag <freitag@suse.de>.terry%mozilla.org3-0/+299
2000-02-13This implements canonical email address transformation. i.e., you have the ↵seth%cs.brandeis.edu1-9/+33
option of setting up bug_email.pl to search the profiles database for a username which has the same username (before the @) same username and base domain (seth@cs.brandeis.edu = seth@job.cs.brandeis.edu) or identical email address (old behavior) based on the From email address. See the code for a more sensical description.
2000-02-13o this is a minor step towards getting canonical email addresses to work, ↵seth%cs.brandeis.edu1-9/+41
and not via a gross hack (the script with a gross hack is in use in a production environment, so ...) Anyways, this address the findUser() sub and email transforms of none, base domain, and name only. base_domain is not properly implemented yet. an email transform of none does an exact match on email addresses in the profiles table. A name only transform does a regular expression match (via mysql's RLIKE operator) on the name portion of the address (i.e., seth from seth@job.cs.brandeis.edu). This is sloppy, but useful in an environment where there are only a few users. the base_domain is next, probably tomorrow. I need to figure out how to implement it first.
2000-02-13this is the initial checkin of the bug_email.pl script into the bugzilla cvs ↵seth%cs.brandeis.edu1-0/+1258
tree under the contrib directory. This is not my code, but I'm championing its maintanence right now, since I'm using and hacking on it heavily. The list of contributors can be found in the file itself. Changes I've made : - updated to the newest CVS pull of bugzilla - works out of contrib/bugzilla - put in the MPL license header Directions for use are in the file itself. Essentially, you put in a procmailrc entry which cats the message to this script. Changes coming in the near future ... - canonical email transformation (i.e., seth@job.cs.brandeis.edu == seth@cs.brandeis.edu) - default product and component (i.e., if you don't specify a product and component, it goes into a PENDING product) - querying a bug over email - appending a bug over email - keywords over email - use the globals.pl parameters functionality to edit and save this script's parameters - integrate some setup in the checksetup.pl script FWIW, the first two things are necessary for this to be useful in my setup, so they get an overwhelming bit of priority
1999-11-19Patch by Tom Schutter <tom@platte.com>: Added some more doc, fixed product ↵terry%mozilla.org1-2/+5
description.
1999-11-02updated license boilerplatedmose%mozilla.org1-8/+13
1999-09-24Patch by Tom Schutter <tom@platte.com> -- set component to 'GNATS Import' ↵terry%mozilla.org1-9/+12
instead of $product
1999-09-23Patch by Tom Schutter <tom@platte.com> -- was setting milestone descriptions ↵terry%mozilla.org1-2/+2
to NULL instead of ''.
1999-09-22This is a perl script to help import bugs from a GNATS database into aterry%mozilla.org1-0/+1012
Bugzilla database. Contributed by Tom Schutter <tom@platte.com>
1999-09-22Added a directory for contributed software.terry%mozilla.org1-0/+10