aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDan Winship <danw@src.gnome.org>2001-09-07 01:03:38 +0800
committerDan Winship <danw@src.gnome.org>2001-09-07 01:03:38 +0800
commitb0b7d720337424ea374e968a450976a04a5a3a35 (patch)
tree68388f813da3f2a9de4b274eeb9ef31e6707180b
parent403576f9c23cb0be22d64d52b5ca6884bd573d3c (diff)
downloadgsoc2013-evolution-b0b7d720337424ea374e968a450976a04a5a3a35.tar
gsoc2013-evolution-b0b7d720337424ea374e968a450976a04a5a3a35.tar.gz
gsoc2013-evolution-b0b7d720337424ea374e968a450976a04a5a3a35.tar.bz2
gsoc2013-evolution-b0b7d720337424ea374e968a450976a04a5a3a35.tar.lz
gsoc2013-evolution-b0b7d720337424ea374e968a450976a04a5a3a35.tar.xz
gsoc2013-evolution-b0b7d720337424ea374e968a450976a04a5a3a35.tar.zst
gsoc2013-evolution-b0b7d720337424ea374e968a450976a04a5a3a35.zip
#ifdef out the "delete after N days" option in pop3_conf_entries, since it
* providers/pop3/camel-pop3-provider.c: #ifdef out the "delete after N days" option in pop3_conf_entries, since it won't be done for 1.0. svn path=/trunk/; revision=12651
-rw-r--r--camel/ChangeLog6
-rw-r--r--camel/providers/pop3/camel-pop3-provider.c2
2 files changed, 8 insertions, 0 deletions
diff --git a/camel/ChangeLog b/camel/ChangeLog
index b6be181381..df8ea2f434 100644
--- a/camel/ChangeLog
+++ b/camel/ChangeLog
@@ -1,3 +1,9 @@
+2001-09-06 Dan Winship <danw@ximian.com>
+
+ * providers/pop3/camel-pop3-provider.c: #ifdef out the "delete
+ after N days" option in pop3_conf_entries, since it won't be done
+ for 1.0.
+
2001-09-04 Jeffrey Stedfast <fejj@ximian.com>
* camel-remote-store.c (remote_disconnect): Too late to sync the
diff --git a/camel/providers/pop3/camel-pop3-provider.c b/camel/providers/pop3/camel-pop3-provider.c
index 695d2d1fc0..bc7fbf1c8f 100644
--- a/camel/providers/pop3/camel-pop3-provider.c
+++ b/camel/providers/pop3/camel-pop3-provider.c
@@ -37,8 +37,10 @@ CamelProviderConfEntry pop3_conf_entries[] = {
N_("Message storage") },
{ CAMEL_PROVIDER_CONF_CHECKBOX, "keep_on_server", NULL,
N_("Leave messages on server"), "0" },
+#ifdef NOT_FOR_1_0
{ CAMEL_PROVIDER_CONF_CHECKSPIN, "delete_after", "UNIMPLEMENTED",
N_("Delete after %s day(s)"), "0:1:7:365" },
+#endif
{ CAMEL_PROVIDER_CONF_SECTION_END },
{ CAMEL_PROVIDER_CONF_END }
};