-
Notifications
You must be signed in to change notification settings - Fork 11
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
implement disallow_attester_search_for_domains OrgRule #1203
Comments
Here is the implementation in OrgRules class: Here is the implementation in public key lookup code - only affects lookup from Attester: (search by email) https://github.com/FlowCrypt/flowcrypt-browser/blob/48cb02a244b71a2acffbbc0fdb6ed4254baa0da3/extension/js/common/api/key-server/attester.ts#L22-L28 (search by fingerprint) https://github.com/FlowCrypt/flowcrypt-browser/blob/48cb02a244b71a2acffbbc0fdb6ed4254baa0da3/extension/js/common/api/key-server/attester.ts#L38-L51 Right now, on Android, Attester is the only source of public keys. However, after #1201 , there will be two sources: WKD and Attester. This OrgRule here will only affects Attester, and will not affect WKD. |
@tomholub Could you clarify what place should I change. As I understand, I should modify the logic on the following screen |
It can be done after #1382 will be merged |
The behavior throughout the app needs to be modified. Any place that calls flowcrypt.com/attester. Instead of changing several places, you should just change the API client class instead. On browser extension, we have a While this updates the behavior of the compose message view, the logic should be in the public key lookup classes themselves. |
I understand the described logic. I've alredy added support of |
part of #1298
including wildcard
*
support meaning don't search on attester at allThe text was updated successfully, but these errors were encountered: