|
|
The ADDRESS structure is a parsed form of a linked list of RFC 822 addresses. It contains the following information:
char *personal;
Personal name phrase.
char *adl;
At-domain-list (also called ``source route'').
char *mailbox;
Mailbox name.
char *host;
Domain name of mailbox's host.
char *error;
Error in address from smtp_mail. If an error is returned from smtp_mail for one of the recipient addresses, the SMTP server's error text for that recipient can be found here. If it is null, then there was no error (or an error was found with a prior recipient).
ADDRESS *next;
Pointer to next address in list.