summaryrefslogtreecommitdiff
path: root/smtp.c
diff options
context:
space:
mode:
authorJosé Fonseca <jrfonseca@users.sourceforge.net>2003-11-07 11:54:24 +0000
committerJosé Fonseca <jrfonseca@users.sourceforge.net>2003-11-07 11:54:24 +0000
commit3837a2bc1158b4044ae5dddb3df0a9285949f228 (patch)
tree53b2849c4d49b8a03f5ec10b0f48215c03215e3e /smtp.c
parentbfcbc48ddf4d13c73b09ed66499781f451dcaf81 (diff)
Don't call smtp_starttls_set_password_cb() unless StartTLS is enabled (Maurice Galland).
Diffstat (limited to 'smtp.c')
-rw-r--r--smtp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/smtp.c b/smtp.c
index f111ea4..9fe8aa1 100644
--- a/smtp.c
+++ b/smtp.c
@@ -433,7 +433,7 @@ void smtp_send(message_t *msg)
/* Use our callback for X.509 certificate passwords. If STARTTLS is not in
* use or disabled in configure, the following is harmless.
*/
- if(!smtp_starttls_set_password_cb (tlsinteract, identity))
+ if(identity->starttls && !smtp_starttls_set_password_cb (tlsinteract, identity))
goto failure;
/* Now tell libESMTP it can use the SMTP AUTH extension. */