diff options
-rw-r--r-- | camel/ChangeLog | 3 | ||||
-rw-r--r-- | camel/providers/smtp/camel-smtp-provider.c | 2 |
2 files changed, 4 insertions, 1 deletions
diff --git a/camel/ChangeLog b/camel/ChangeLog index e072891a2f..ad59ec9918 100644 --- a/camel/ChangeLog +++ b/camel/ChangeLog @@ -1,5 +1,8 @@ 2001-03-02 Jeffrey Stedfast <fejj@ximian.com> + * providers/smtp/camel-smtp-provider.c: Doh! Set the + CAMEL_URL_ALLOW_AUTH flag. + * providers/smtp/camel-smtp-transport.c (get_smtp_error_string): Updated with the extended AUTH return codes. diff --git a/camel/providers/smtp/camel-smtp-provider.c b/camel/providers/smtp/camel-smtp-provider.c index 83fb54bc8e..0436800554 100644 --- a/camel/providers/smtp/camel-smtp-provider.c +++ b/camel/providers/smtp/camel-smtp-provider.c @@ -40,7 +40,7 @@ static CamelProvider smtp_provider = { CAMEL_PROVIDER_IS_REMOTE, - CAMEL_URL_NEED_HOST, + CAMEL_URL_NEED_HOST | CAMEL_URL_ALLOW_AUTH, { 0, 0 }, |