[asterisk-bugs] [Asterisk 0017306]: Sequencing numbers of IMAP email messages is incorrect
Asterisk Bug Tracker
noreply at bugs.digium.com
Tue May 11 21:12:13 CDT 2010
A NOTE has been added to this issue.
======================================================================
https://issues.asterisk.org/view.php?id=17306
======================================================================
Reported By: uxbod
Assigned To:
======================================================================
Project: Asterisk
Issue ID: 17306
Category: Applications/app_voicemail/IMAP
Reproducibility: always
Severity: minor
Priority: normal
Status: acknowledged
Asterisk Version: 1.6.2.6
JIRA: SWP-1432
Regression: No
Reviewboard Link:
SVN Branch (only for SVN checkouts, not tarball releases): N/A
SVN Revision (number only!):
Request Review:
======================================================================
Date Submitted: 2010-05-07 08:28 CDT
Last Modified: 2010-05-11 21:12 CDT
======================================================================
Summary: Sequencing numbers of IMAP email messages is
incorrect
Description:
Left six voicemails which were all successfully delivered to the IMAP
server. On checking them the sequence numbers were not sequential. Screen
shot attached.
======================================================================
Relationships ID Summary
----------------------------------------------------------------------
related to 0017135 Message count incorrect
child of 0016350 Deleting Multiple IMAP voicemails does ...
======================================================================
----------------------------------------------------------------------
(0121762) ebroad (manager) - 2010-05-11 21:12
https://issues.asterisk.org/view.php?id=17306#c121762
----------------------------------------------------------------------
I just realized something, folder_int() has no case for "Urgent" which
means:
return __messagecount(context, mailbox, "INBOX") +
__messagecount(context, mailbox, "Urgent");
is really INBOX + INBOX, since the fallback in folder_int() is 0 which is
INBOX. Try this, add the following below "Cust5" in folder_int():
---
else if (!strcasecmp(folder, "Urgent"))
return 11;
---
elazar
Issue History
Date Modified Username Field Change
======================================================================
2010-05-11 21:12 ebroad Note Added: 0121762
======================================================================
More information about the asterisk-bugs
mailing list