talons

Fork of Claws Mail https://www.claws-mail
Log | Files | Refs | README | LICENSE

commit 20ece29edf92ee9aa6e8e80a4cec0842b162108c
parent 0ebf0a02f878767624133613dff8ea9c2d65b42d
Author: Ricardo Mones <ricardo@mones.org>
Date:   Fri, 23 Sep 2016 09:33:10 +0200

Enable keeping old items by default

Be more conservative towards feed data to avoid unwanted and
unrecoverable loss of items.

Users which don't want to store old items can easily disable
this in feed preferences and also remove obsolete items with
the “Trim” button.

Diffstat:
Msrc/plugins/rssyl/rssyl.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/plugins/rssyl/rssyl.c b/src/plugins/rssyl/rssyl.c @@ -433,7 +433,7 @@ static FolderItem *rssyl_item_new(Folder *folder) ritem->official_title = NULL; ritem->source_id = NULL; ritem->items = NULL; - ritem->keep_old = FALSE; + ritem->keep_old = TRUE; ritem->default_refresh_interval = TRUE; ritem->refresh_interval = atoi(PREF_DEFAULT_REFRESH); ritem->fetch_comments = FALSE;