diff options
author | Dan Winship <danw@src.gnome.org> | 2001-09-07 01:03:38 +0800 |
---|---|---|
committer | Dan Winship <danw@src.gnome.org> | 2001-09-07 01:03:38 +0800 |
commit | b0b7d720337424ea374e968a450976a04a5a3a35 (patch) | |
tree | 68388f813da3f2a9de4b274eeb9ef31e6707180b /camel/providers | |
parent | 403576f9c23cb0be22d64d52b5ca6884bd573d3c (diff) | |
download | gsoc2013-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
Diffstat (limited to 'camel/providers')
-rw-r--r-- | camel/providers/pop3/camel-pop3-provider.c | 2 |
1 files changed, 2 insertions, 0 deletions
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 } }; |