You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The Mail Reader Sampler should retrieve the most recent n messages from the mailbox, regardless of the server's default ordering. Instead of fetching messages starting from the first received email, it should correctly fetch the last n messages by adjusting the indices in the getMessages method. This ensures that users can access the latest emails as needed.
Actual behavior
The Mail Reader Sampler retrieves messages starting from the first received email by default. This behavior aligns with the typical IMAP server ordering, where messages are numbered sequentially from the earliest to the latest. As a result, the sampler fetches older messages instead of the most recent ones, which may not meet the intended requirement of retrieving the latest n messages.
Steps to reproduce the problem
Configure the Mail Reader Sampler to connect to an IMAP mailbox.
Use the folder.getMessages(1, n) method to retrieve emails, specifying a value for n (e.g., n=5).
Ensure the mailbox contains more than n messages, with both old and new messages available.
Execute the sampler to fetch the emails.
Observe the retrieved messages and verify that they correspond to the oldest messages in the mailbox instead of the most recent ones.
JMeter Version
5.6.3
Java Version
openjdk version "21.0.1" 2023-10-17
OS Version
No response
The text was updated successfully, but these errors were encountered:
Frankly, I am not sure why users would expect "the recent" messages rather than "the oldest" ones.
In any case, we should not change the behaviour, as the existing scripts will start failing.
I think we could add a configuration parameter to let the users decide if they want the N recent or the N oldest messges.
Thank you for the feedback! You're absolutely right; adding a configuration parameter to let users choose between the N recent or the N oldest messages makes the feature more flexible and user-friendly. I’ll make the necessary adjustments and update the PR accordingly. Thanks again for pointing this out!
This was actually a need we identified while testing our messaging systems. For example, I sent 100 messages to a mailbox, but the last message I sent had an attachment. When I wanted to measure the response time for fetching this particular message with the attachment, I couldn't. I had to write an additional script to handle this.
Expected behavior
The Mail Reader Sampler should retrieve the most recent n messages from the mailbox, regardless of the server's default ordering. Instead of fetching messages starting from the first received email, it should correctly fetch the last n messages by adjusting the indices in the getMessages method. This ensures that users can access the latest emails as needed.
Actual behavior
The Mail Reader Sampler retrieves messages starting from the first received email by default. This behavior aligns with the typical IMAP server ordering, where messages are numbered sequentially from the earliest to the latest. As a result, the sampler fetches older messages instead of the most recent ones, which may not meet the intended requirement of retrieving the latest n messages.
Steps to reproduce the problem
JMeter Version
5.6.3
Java Version
openjdk version "21.0.1" 2023-10-17
OS Version
No response
The text was updated successfully, but these errors were encountered: