[Mailman-Developers] Re: Todo list questions

Scott scott@chronis.pobox.com
Thu, 7 May 1998 14:48:25 -0400


On Thu, May 07, 1998 at 09:52:19AM -0700, John Viega wrote:
| On Thu, May 07, 1998 at 12:30:54PM -0400, Ken Manheimer wrote:

[stuff about address matching]

just wanted to put in my $.02 about address matching.  i don't think
any special mechanism other than 

string.lower(string.strip(address1)) == string.lower(string.strip(address2))

should be used. therer are some instances , for example, 2 of my own
address, where it is perfectly valid for
user@furtherqualified.domain.dom to be a different address than
user@domain.dom.

in addition when you start taking into account how many parts you
should compare based on individual top level domains, you're hard
wiring knowledge that can change daily.

my vote is to have addresses match only if they are the same username
and have the same doman part, case folded.

scott