From 1e21bb6e5c2f34a3b339ca6c978c0eebd27d5018 Mon Sep 17 00:00:00 2001 From: Jeffrey Stedfast Date: Tue, 28 Nov 2000 17:25:19 +0000 Subject: Clear the exception if EHLO fails before trying HELO in the cases where 2000-11-28 Jeffrey Stedfast * providers/smtp/camel-smtp-transport.c (smtp_connect): Clear the exception if EHLO fails before trying HELO in the cases where the SMTP provider doesn't announce its ESMTPness. svn path=/trunk/; revision=6695 --- camel/providers/smtp/camel-smtp-transport.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'camel/providers') diff --git a/camel/providers/smtp/camel-smtp-transport.c b/camel/providers/smtp/camel-smtp-transport.c index df70d48baf..7fe0aa5384 100644 --- a/camel/providers/smtp/camel-smtp-transport.c +++ b/camel/providers/smtp/camel-smtp-transport.c @@ -200,10 +200,12 @@ smtp_connect (CamelService *service, CamelException *ex) transport->is_esmtp = TRUE; if (!smtp_helo (transport, ex)) { /* Okay, apprently this server doesn't support ESMTP */ + camel_exception_clear (ex); transport->is_esmtp = FALSE; smtp_helo (transport, ex); } } else { + /* send EHLO */ smtp_helo (transport, ex); } -- cgit v1.2.3