Results 235 comments of Webklex

Hi @jane08 , thanks for the follow up. Looking through all the reported dates, it looks like you are mixing them up. Lets look at one message at the time....

Hi @TeroJarvinen , many thanks for your report. How would you suggest to implement this? Please feel free to push a pull request. Best regards & happy coding,

Hi @francescodiperna , a few things I can thingk of which could cause this problem: - You have to grant these permissions: IMAP.AccessAsUser.All and potentially (email, offline_access, User.Read) - You...

Hi @francescodiperna , I'm using this method to generate an auth token: ```bash #!/bin/bash CLIENT_ID="redacted" CLIENT_SECRET="redacted" TENANT="redacted" SCOPE="offline_access%20https%3A%2F%2Foutlook.office365.com%2FIMAP.AccessAsUser.All%20https%3A%2F%2Foutlook.office365.com%2FSMTP.Send" STATE="12345" REDIRECT_URI="http%3A%2F%2Flocalhost" echo "Open this url inside your browser:" echo "" echo...

Hi @francescodiperna , you can refresh the token with a call like this: ```bash curl -XPOST https://login.microsoftonline.com/${TENANT}/oauth2/v2.0/token -d "client_id=${CLIENT_ID}&scope=${SCOPE}&refresh_token=${REFRESH_TOKEN}&grant_type=refresh_token&client_secret=${CLIENT_SECRET}" ``` If you can't authenticate the user via browser, perhaps @eisolutions...

Hi @familiaorlando100 , the image you are looking for should be inside the attachments array: ```php /** @var \Webklex\PHPIMAP\Message $message */ /** @var \Webklex\PHPIMAP\Support\AttachmentCollection $attachments */ $attachments = $message->getAttachments(); ```...

Hi @FortuneV13 , I believe this was fixed by this commit: https://github.com/Webklex/php-imap/commit/33ee4d2eb8bc1645489c0715c0412c42746c90ac Best regards,

Hi @FortuneV13 , the error originated in this repository. But a similar issue was reported with issue #261 and git fixed in the commit mentioned above. It's just not released...

If you don't mid, I would like to hear your thought regarding the release frequency: #265 Best regards,

Hi @szymekjanaczek , that sounds like a good idea to me! Do you like to push a pull request? I'll patch it otherwise later today. Best regards,