SMFEmailAddress_T¶
SMFEmailAddress_T represents an email address and is used by SMFSession_T. The flag is_local indicates, whether an email address is local or not. If any lookup database is enabled, spmfilter automatically checks every envelope recipient/sender and/or message recipient/sender against the database, to set is_local and user_data.
1 typedef struct {
2 char *addr;
3 int is_local;
4 SMFLookupResult_T *user_data;
5 } SMFEmailAddress_T;
| name | description |
|---|---|
| addr | the actual email address |
| is_local | flag to determine whether the address is local or not. |
| user_data | user informations (like home directory..) from database |