aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorhiro <hiro@ee746299-78ed-0310-b773-934348b2243d>2006-05-26 09:09:49 +0000
committerhiro <hiro@ee746299-78ed-0310-b773-934348b2243d>2006-05-26 09:09:49 +0000
commit9b34b883cf71d46dece164c4704fab33983ead6e (patch)
tree2208f1344a39c2c90e64c7cd96c34bb6b27a725d
parent5fb0b010331667c7e94d1e165cf3c47212ac9bdb (diff)
increment Pop3Session::cur_total_bytes too when deleting expired messages.
git-svn-id: svn://sylpheed.sraoss.jp/sylpheed/trunk@1071 ee746299-78ed-0310-b773-934348b2243d
-rw-r--r--ChangeLog5
-rw-r--r--ChangeLog.ja5
-rw-r--r--libsylph/pop.c1
3 files changed, 11 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 7905eb02..1b7a44a1 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,10 @@
2006-05-26
+ * libsylph/pop.c: pop3_lookup_next(): increment
+ Pop3Session::cur_total_bytes too when deleting expired messages.
+
+2006-05-26
+
* src/foldersel.c: fixed a bug that bold face was disabled with
GLib 2.10 and Pango 1.12.
diff --git a/ChangeLog.ja b/ChangeLog.ja
index 8f1f467c..a05cdae4 100644
--- a/ChangeLog.ja
+++ b/ChangeLog.ja
@@ -1,5 +1,10 @@
2006-05-26
+ * libsylph/pop.c: pop3_lookup_next(): 期限切れのメッセージを削除する
+ 場合も Pop3Session::cur_total_bytes を増加させるようにした。
+
+2006-05-26
+
* src/foldersel.c: GLib 2.10 と Pango 1.12 でボールド表示が無効に
なっていたバグを修正。
diff --git a/libsylph/pop.c b/libsylph/pop.c
index ed5edee3..1a5bd7fd 100644
--- a/libsylph/pop.c
+++ b/libsylph/pop.c
@@ -622,6 +622,7 @@ static Pop3State pop3_lookup_next(Pop3Session *session)
ac->msg_leave_time * 24 * 60 * 60)) {
log_print(_("POP3: Deleting expired message %d\n"),
session->cur_msg);
+ session->cur_total_bytes += size;
pop3_delete_send(session);
return POP3_DELETE;
}