1. 20 Jun, 2006 1 commit
  2. 19 Jun, 2006 5 commits
  3. 30 May, 2006 1 commit
  4. 15 May, 2006 1 commit
  5. 23 Feb, 2006 1 commit
  6. 21 Feb, 2006 1 commit
  7. 26 Nov, 2005 2 commits
  8. 27 Aug, 2005 1 commit
  9. 08 Jul, 2005 1 commit
  10. 13 May, 2005 2 commits
  11. 25 Feb, 2005 1 commit
  12. 19 Feb, 2005 1 commit
  13. 09 Feb, 2005 1 commit
  14. 30 Jan, 2005 1 commit
  15. 29 Jan, 2005 1 commit
  16. 09 Apr, 2004 1 commit
  17. 27 Mar, 2004 1 commit
  18. 20 Jan, 2004 1 commit
  19. 22 Nov, 2003 1 commit
  20. 22 Aug, 2003 1 commit
  21. 25 Jan, 2003 1 commit
  22. 23 Sep, 2002 1 commit
  23. 26 Aug, 2002 1 commit
  24. 17 Aug, 2002 1 commit
  25. 12 Aug, 2002 1 commit
  26. 25 Jul, 2002 1 commit
  27. 25 May, 2001 1 commit
  28. 06 Sep, 2000 1 commit
  29. 31 Aug, 2000 1 commit
  30. 19 Mar, 2000 1 commit
  31. 16 Mar, 2000 1 commit
    • seth%cs.brandeis.edu's avatar
      A few changes ... · 63c4dd9e
      seth%cs.brandeis.edu authored
      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.
      63c4dd9e
  32. 08 Mar, 2000 1 commit
  33. 13 Feb, 2000 2 commits
    • seth%cs.brandeis.edu's avatar
      This implements canonical email address transformation. i.e., you have the… · fe5ed184
      seth%cs.brandeis.edu authored
      This implements canonical email address transformation.  i.e., you have the 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.
      fe5ed184
    • seth%cs.brandeis.edu's avatar
      o this is a minor step towards getting canonical email addresses to work, and… · f0134777
      seth%cs.brandeis.edu authored
      o this is a minor step towards getting canonical email addresses to work, 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.
      f0134777