1. 10 Mar, 2000 1 commit
  2. 08 Mar, 2000 13 commits
  3. 07 Mar, 2000 1 commit
  4. 26 Feb, 2000 2 commits
  5. 25 Feb, 2000 1 commit
  6. 19 Feb, 2000 3 commits
  7. 18 Feb, 2000 6 commits
  8. 17 Feb, 2000 8 commits
  9. 16 Feb, 2000 2 commits
  10. 15 Feb, 2000 1 commit
  11. 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