summaryrefslogtreecommitdiff
path: root/smtp.h
diff options
context:
space:
mode:
Diffstat (limited to 'smtp.h')
-rw-r--r--smtp.h16
1 files changed, 13 insertions, 3 deletions
diff --git a/smtp.h b/smtp.h
index 233c078..cc3fac8 100644
--- a/smtp.h
+++ b/smtp.h
@@ -22,12 +22,22 @@
*/
typedef struct {
struct list_head list;
- char *address;
- char *host;
+
+ char *address; /**< reverse path address */
+
+ char *host; /**< hostname and service (port) */
+
+ /** \name Auth Extension */
+ /*@{*/
char *user;
char *pass;
- enum starttls_option starttls; /**< it should default to Starttls_DISABLED */
+ /*@}*/
+
+ /** \name StartTLS Extension */
+ /*@{*/
+ enum starttls_option starttls;
char *certificate_passphrase;
+ /*@}*/
} identity_t;
/**