James Gregory-Monk
James Gregory-Monk
@malversan - unfortunately, the IMAP protocol is purely for syncing emails, so it wouldn't be possible to sync calendar entries using that :( (For more info: https://support.office.com/en-us/article/sync-basics-what-you-can-and-cannot-sync-5537d587-4930-4ac2-b044-3568509b1294)
I think that sounds like a sensible idea to me. I was also wondering if you could bundle the following check in as well? ``` skip_before_action :verify_authenticity_token ``` I think...
Reading more into this, I wonder if it's also worth flagging up cases where `protect_from_forgery` [could be turned off](https://apidock.com/rails/v6.1.3.1/ActionController/RequestForgeryProtection/ClassMethods/protect_from_forgery), e.g.: ``` protect_from_forgery except: :index protect_from_forgery only: :show protect_from_forgery if: ->...
> Changes look okay but not keen on adding an entire new test application. > > Can this be tested by updating one of the existing apps? Ah, of course...
This issue seems to be caused by an older(?) version of `react-ace` having `react-ace.min.js` as a file, not a folder. Seemingly during the upgrade the old file isn't removed, which...
@CamJN - out of interest, what issues did you have with the websocket module in Apache? I presume there's some work involved on the Passenger side to integrate (if possible)...
@heangratha - the only solution we could come up with was to run a separate instance of the app in Puma, then proxy all WebSocket requests to that using mod_wstunnel.
@MggMuggins - I am indeed a programmer, just not in this particular language(s). I was mostly wondering if there was a known reason why the behaviour is different from WMail...
Hey @daytonellwanger :wave: I seem to be on the latest release of Live Share (`1.0.5090`) and same for VSCode (`1.62.2-1636665017`). I've just tried it again using a `vscode.dev` link and...
I've done a quick bit of digging, and in `extension-prod.js` on line 197993, it's checking if `linkHostname` and `workspaceHostname` are the same - in my case, `linkHostname` is `vscode.dev` and...