Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
John McEleney
/
mailutils
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Issue Boards
Files
Commits
Network
Compare
Branches
Tags
Commit
8d58a988
...
8d58a9886af666246bf4a745e2b1fd1dbbdd785b
authored
2002-08-04 08:14:24 +0000
by
Sergey Poznyakoff
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
Output the actual number of recent messages.
1 parent
58cc46ab
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
imap4d/sync.c
imap4d/sync.c
View file @
8d58a98
...
...
@@ -226,11 +226,11 @@ notify (void)
size_t
uid
=
0
;
mailbox_get_message
(
mbox
,
i
,
&
msg
);
message_get_uid
(
msg
,
&
uid
);
if
(
!
notify_uid
(
uid
))
recent
++
;
notify_uid
(
uid
);
}
notify_deleted
();
util_out
(
RESP_NONE
,
"%d EXISTS"
,
total
);
mailbox_messages_recent
(
mbox
,
&
recent
);
if
(
recent
)
util_out
(
RESP_NONE
,
"%d RECENT"
,
recent
);
}
...
...
Please
register
or
sign in
to post a comment