summaryrefslogtreecommitdiff
path: root/smtp.h
diff options
context:
space:
mode:
authorJosé Fonseca <jrfonseca@users.sourceforge.net>2004-01-13 16:50:40 +0000
committerJosé Fonseca <jrfonseca@users.sourceforge.net>2004-01-13 16:50:40 +0000
commit566c484db7a60a0bdbfc84e9b53651b42a3e3552 (patch)
tree3562b4c30ebc8e2e46978adc26e55c305cd72146 /smtp.h
parent48e245a29e60eed2e2fb9dfdebf4b8c674d7c530 (diff)
Add a 'postconnect' keyword to execute a command after closing a SMTP connection.
Diffstat (limited to 'smtp.h')
-rw-r--r--smtp.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/smtp.h b/smtp.h
index 5df10ca..f5800fc 100644
--- a/smtp.h
+++ b/smtp.h
@@ -27,21 +27,22 @@ typedef struct {
char *host; /**< hostname and service (port) */
- /** \name Auth Extension */
+ /** \name Auth extension */
/*@{*/
char *user;
char *pass;
/*@}*/
- /** \name StartTLS Extension */
+ /** \name StartTLS extension */
/*@{*/
enum starttls_option starttls;
char *certificate_passphrase;
/*@}*/
- /** \name Pre-connect Command */
+ /** \name Pre- and post-connect commands */
/*@{*/
char *preconnect;
+ char *postconnect;
/*@}*/
} identity_t;