Changes between Initial Version and Version 1 of Ticket #18386, comment 2
- Timestamp:
- Jan 15, 2025, 7:42:07 PM (8 days ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #18386, comment 2
initial v1 3 3 Once liblitehtml is stable, I have a tech design for how to control loading of remote resources, so to keep users safe from tracking, scam and other online threats: 4 4 5 Similar to mail daemon, which uses customizable Queries and presents them in the deskbar menu, we can define a Query for "safe contacts", either specific like 6 ```"META:group == friends"```, or more general like just ```TYPE==application/x-person``` to match all contacts. 5 Similar to mail daemon, which uses customizable Queries and presents them in the deskbar menu, we can define a Query for "safe contacts", either just very broad using something like ```TYPE==application/x-person``` to match all contacts, or more specific by adding additional filters like ```"META:group == friends"```, . 7 6 8 7 Only WHEN this query is satisifed, and optionally HTML mail is enabled in the settings, and the View mode is set to HTML (extending the View menu), THEN we will render the HTML attachment. … … 15 14 Refs: 16 15 [1] https://en.wikipedia.org/wiki/HTML_email 16 17 loosely related to #19354