Yes, it's called "my development system" :) And I'm starting to have second thoughts about how I want to do this. It might make more sense just to add a field to the user record inet_addrs[SIZ] to stash as many email addresses as we can fit. SIZ is 4096 bytes. Maybe 1024 bytes would make more sense. How many different addresses is a single user likely to have, and what's the maximum amount of space they would take?
Time, space, and complexity are the eternal software rivals. If adding 1024 bytes to each user record can save a *lot* of complexity then maybe it makes more sense to simply put it there.
