-
Notifications
You must be signed in to change notification settings - Fork 391
Open
Description
It appears that any SEARCH HEADER command is failing against iCloud mailboxes due to the quote marks.
For example making the following query;
const query = [
'ALL',
['SINCE', '9-Aug-2019']
['HEADER', 'FROM', 'james@squarecat.io']
];
client.search(query, (err, uuids) => {});
Debug tells me that this is the command performed;
UID SEARCH ALL SINCE 9-Aug-2019 HEADER "FROM" "james@squarecat.io"
Which results in a parse error.
If I do the same command using telnet then I get the same response;
However the same query without the quotes works great;
So it seems iCloud is falling over the quotes.
This works fine against all other servers I've tried, so perhaps iCloud specific.
Is there a way to get the command to run?
Sn-Kinos
Metadata
Metadata
Assignees
Labels
No labels

