Jon

Results 8 comments of Jon

Can also confirm the angle brackets in the new "SMTP From" field does cause 501 error with Mailgun as an ESP. This can be avoided by only specifying the email...

FYI -- this is still an issue. Just need to add this to the [ Attachment class in models.py](https://github.com/gophish/api-client-python/blob/1ddcc746c37b4638eed76bc76ecf202740d26518/gophish/models.py#L395) ``` def __init__(self, **kwargs): for key, default in Page._valid_properties.items(): setattr(self, key,...

Hi @tommoor, thanks for the quick response! What exactly do you mean by every time the app is loaded? I'm just trying to figure out what I might be doing...

Hmmm nope, I waited over 30min before re-opening Outline, still auth'd 🤔 Happy to pursue any other troubleshooting steps you'd suggest or provide additional configuration info to track down. Lmk!

Oh, interesting, yeah I'm seeing a bunch of these invalid JSON logs for `ValidateSSOAccessTask`: ``` {"label":"worker","level":"info","message":"ValidateSSOAccessTask running","userId":"[redacted]"} {"error":"invalid json response body at https://[redacted].okta.com/oauth2/v1/userinfo reason: Unexpected end of JSON input","level":"error","message":"Error processing...

Cool, patched fetch.js and investigated `init` object in logs. This is interesting - it appears that it's using an expired access token as the bearer token, which results in a...

Yep you're right - the solution here was adding `offline_access` to the OIDC_SCOPES in `docker.env`. Totally missed that before. With that scope added, looks like it's populating the `refreshToken` column...