Lines 1-5
Link Here
|
1 |
--- ./imap.c.orig 2003-10-15 21:17:41.000000000 +0200 |
1 |
--- imap.c.orig Wed Oct 15 22:17:41 2003 |
2 |
+++ ./imap.c 2005-10-29 15:19:58.000000000 +0200 |
2 |
+++ imap.c Fri Nov 11 18:43:23 2005 |
3 |
@@ -105,6 +105,15 @@ |
3 |
@@ -105,6 +105,15 @@ |
4 |
{ |
4 |
{ |
5 |
recentcount = atoi(buf+2); |
5 |
recentcount = atoi(buf+2); |
Lines 8-14
Link Here
|
8 |
+ * so count down by ourselves */ |
8 |
+ * so count down by ourselves */ |
9 |
+ else if (strstr(buf, " EXPUNGE")) |
9 |
+ else if (strstr(buf, " EXPUNGE")) |
10 |
+ { |
10 |
+ { |
11 |
+ if (atoi(buf+2) > 0) { |
11 |
+ if (strstr(buf, " ") != NULL && atoi(strstr(buf, " ") + 1) > 0) { |
12 |
+ if (count > 0) |
12 |
+ if (count > 0) |
13 |
+ count --; |
13 |
+ count --; |
14 |
+ } |
14 |
+ } |