So,
If an alias points to a user and that user has an alias or forward
that points to another user or alias, then the e-mail will not reach
the final user, it will stop at the first user.

Couldn't I find all occurrances of this with the following for the
postmaster user:

ex.

SELECT * FROM  dbmail_aliases where
deliver_to = '[EMAIL PROTECTED] or deliver_to = '27'

Or get a list of all users who might need additional aliases with:

Select
        dbmail_users.userid,
        dbmail_users.user_idnr
from
        dbmail_users
left join
        dbmail_aliases on
                dbmail_aliases.alias = dbmail_users.userid
group by
        dbmail_users.userid
Having
        count(dbmail_users.userid) > 1

It would turn out to be alot of extra records in the database.

Reply via email to