Lefteris Chatzimparmpas
Lefteris Chatzimparmpas
Well, the support is still there in the config file, so in theory if you can get the correct string and supply it to imapfilter you should be able to...
Closing this as PID file functionality was merged (with changes): 7e70efd854130fc48ad4ab4cc045e14895137f52
Would it work to fetch the whole message, modify it locally using Lua, then re-upload it? There's an example at: https://github.com/lefcha/imapfilter/blob/9e6661278572009a92a8e125c9b339232a9735a1/samples/extend.lua#L103-L118
Seems it's the date format used, try with `'01-Jan-2023'`. From `imapfilter_config(5)`: > The following methods can be used to search for messages based on their > arrival or sent date,...
I was wondering whether I might have forgotten to update the version in the code (the one that `-V` reports) in version 2.7.5, but that's not the case, as can...
Have you tried printing the password it gets from `pipe_from()`, in order to verify it really gets the password string you expect?
The `account1["Lecture"]` is a mailbox object, not a collection of all messages of the mailbox. You need to send a search query for all messages, and you do that with...
What messages do you get in the `MailingList` mailbox when you run the above snippet? I mean for starters, I would verify how many messages each query gets for example:...
> Do you or anybody else know if imapfilter will support the new Microsoft login protocol? Doesn't Microsoft Exchange still support XOAUTH2? Ref: https://learn.microsoft.com/en-us/exchange/client-developer/legacy-protocols/how-to-authenticate-an-imap-pop-smtp-application-by-using-oauth#sasl-xoauth2 Imapfilter supports XOAUTH2, you just have...
Which version are you using? The recovery mechanism was refactored in version `2.8.0`: https://github.com/lefcha/imapfilter/blob/e6372b88e09a4d1c573b57270de6b40846825a8b/NEWS#L5-L9 So the 3 options you mentioned have been actually removed. You can see some examples of...