aboutsummaryrefslogtreecommitdiffstats
path: root/camel/ChangeLog
diff options
context:
space:
mode:
authorJeffrey Stedfast <fejj@ximian.com>2003-06-14 03:06:52 +0800
committerJeffrey Stedfast <fejj@src.gnome.org>2003-06-14 03:06:52 +0800
commit398d437cedc1b66726dbb94ebae25508e09582d6 (patch)
tree378fd45653c21eb6bac38af117c23cabcbb6aaf8 /camel/ChangeLog
parent8853de7d70254a1cf2f6e38ceef9282fde1264f2 (diff)
downloadgsoc2013-evolution-398d437cedc1b66726dbb94ebae25508e09582d6.tar
gsoc2013-evolution-398d437cedc1b66726dbb94ebae25508e09582d6.tar.gz
gsoc2013-evolution-398d437cedc1b66726dbb94ebae25508e09582d6.tar.bz2
gsoc2013-evolution-398d437cedc1b66726dbb94ebae25508e09582d6.tar.lz
gsoc2013-evolution-398d437cedc1b66726dbb94ebae25508e09582d6.tar.xz
gsoc2013-evolution-398d437cedc1b66726dbb94ebae25508e09582d6.tar.zst
gsoc2013-evolution-398d437cedc1b66726dbb94ebae25508e09582d6.zip
Fix for bug #40788.
2003-06-05 Jeffrey Stedfast <fejj@ximian.com> Fix for bug #40788. * providers/pop3/camel-pop3-engine.c (camel_pop3_engine_new): Now takes a flags argument. Currently there is only 1 flag which can be used to disable Pop3 server extensions. (get_capabilities): Don't check for Pop3 server extensions if the DISABLE_EXTENSIONS flag is set on the engine. (camel_pop3_engine_iterate): If we get a response that is neither +OK nor -ERR, default to treating it like a -ERR. * providers/pop3/camel-pop3-store.c (connect_to_server): Check for the disable_extensions param. * providers/pop3/camel-pop3-provider.c: Define a checkbox to disable all POP3 extension support. svn path=/trunk/; revision=21438
Diffstat (limited to 'camel/ChangeLog')
-rw-r--r--camel/ChangeLog18
1 files changed, 18 insertions, 0 deletions
diff --git a/camel/ChangeLog b/camel/ChangeLog
index 335f346cc5..968dcc4e0a 100644
--- a/camel/ChangeLog
+++ b/camel/ChangeLog
@@ -1,3 +1,21 @@
+2003-06-05 Jeffrey Stedfast <fejj@ximian.com>
+
+ Fix for bug #40788.
+
+ * providers/pop3/camel-pop3-engine.c (camel_pop3_engine_new): Now
+ takes a flags argument. Currently there is only 1 flag which can
+ be used to disable Pop3 server extensions.
+ (get_capabilities): Don't check for Pop3 server extensions if the
+ DISABLE_EXTENSIONS flag is set on the engine.
+ (camel_pop3_engine_iterate): If we get a response that is neither
+ +OK nor -ERR, default to treating it like a -ERR.
+
+ * providers/pop3/camel-pop3-store.c (connect_to_server): Check for
+ the disable_extensions param.
+
+ * providers/pop3/camel-pop3-provider.c: Define a checkbox to
+ disable all POP3 extension support.
+
2003-06-11 Jeffrey Stedfast <fejj@ximian.com>
Partial fix for bug #44457.