comparison ChangeLog @ 191:28488e0e3630 noffle

[svn] * src/group.h,src/group.c,src/noffle.c,src/server.c: Grp_setLastAccess is only ever called with last param as time(NULL), so remove it and call time() inside the implementation of Grp_setLastAccess. * src/client.c,src/group.h,src/group.c,src/noffle.c,src/post.c: Groups are automatically unsubscribed when the last access to the group is older than a particular threshold. However, for very low traffic groups, the last access may exceed the threshold simply because there has been no new article posted. In this case, rather than unsubscribe, update the group last access time. This means that groups are now only unsubscribed if the last access exceeds the threshold AND articles have arrived in the group since. Add Grp_setLastPostTime() to track the last time an article arrived in the group.
author bears
date Sat, 20 Oct 2001 14:23:46 +0100
parents b1b6963fdd63
children b9ef99708d1c
comparison
equal deleted inserted replaced
190:47569cf4ad4a 191:28488e0e3630
1 Sat Oct 20 2001 Jim Hague <jim.hague@acm.org>
2
3 * src/group.h,src/group.c,src/noffle.c,src/server.c: Grp_setLastAccess is
4 only ever called with last param as time(NULL), so remove it and call
5 time() inside the implementation of Grp_setLastAccess.
6 * src/client.c,src/group.h,src/group.c,src/noffle.c,src/post.c: Groups are
7 automatically unsubscribed when the last access to the group is older
8 than a particular threshold. However, for very low traffic groups, the
9 last access may exceed the threshold simply because there has been no new
10 article posted. In this case, rather than unsubscribe, update the group
11 last access time. This means that groups are now only unsubscribed if
12 the last access exceeds the threshold AND articles have arrived in the
13 group since. Add Grp_setLastPostTime() to track the last time an article
14 arrived in the group.
15
1 Fri Oct 05 2001 Markus Enzenberger <me@markus-enzenberger.de> 16 Fri Oct 05 2001 Markus Enzenberger <me@markus-enzenberger.de>
2 17
3 * src/configfile.c: fix bug with missing initialization of user name and passwd 18 * src/configfile.c: fix bug with missing initialization of user name and passwd
4 19
5 Wed Sep 12 2001 Jim Hague <jim.hague@acm.org> 20 Wed Sep 12 2001 Jim Hague <jim.hague@acm.org>