Mail_Addresses

Contains a broken down database representation of the From, To, Cc ReplyTo, and Bcc addresses for each message.

> Columns

> Example

Consider a message sent from john.doe@company.com to me@me.com,anotherone@mail.com. We assume that it gets 1234 as a mail_id, that john.doe@company.com has an id of 1000 (i.e., SELECT addr_id FROM addresses WHERE email_addr='john.doe@company.com' returns 1000), me@me.com is 10, and anotherone@mail.com is 2000. The mail_addresses entries related to this message would be:

mail_idaddr_idaddr_typeaddr_pos
1234100010
12341020
1234200021

> Size

Can be expected to contain at least twice the number of rows of mail, and possibly quite more if messages tend to have many different recipients. The growth factor can be expected to be the same as the mail table, however.