chore: editor config
This commit is contained in:
parent
401ed70d37
commit
147b2b2052
5 changed files with 16 additions and 3 deletions
12
.editorconfig
Normal file
12
.editorconfig
Normal file
|
@ -0,0 +1,12 @@
|
||||||
|
root = true
|
||||||
|
|
||||||
|
[*]
|
||||||
|
indent_style = space
|
||||||
|
indent_size = 2
|
||||||
|
end_of_line = lf
|
||||||
|
insert_final_newline = false
|
||||||
|
trim_trailing_whitespace = true
|
||||||
|
charset = utf-8
|
||||||
|
|
||||||
|
[*.js]
|
||||||
|
insert_final_newline = true
|
BIN
src/assets/img/og/adblocks.jpg
Normal file
BIN
src/assets/img/og/adblocks.jpg
Normal file
Binary file not shown.
After Width: | Height: | Size: 49 KiB |
BIN
src/assets/img/og/fastmail-workflow.jpg
Normal file
BIN
src/assets/img/og/fastmail-workflow.jpg
Normal file
Binary file not shown.
After Width: | Height: | Size: 67 KiB |
|
@ -3,6 +3,7 @@ date: '2023-02-17'
|
||||||
title: 'Workflows: handling inbound email on Fastmail with regular expressions (now featuring ChatGPT)'
|
title: 'Workflows: handling inbound email on Fastmail with regular expressions (now featuring ChatGPT)'
|
||||||
draft: false
|
draft: false
|
||||||
tags: ['Email', 'Fastmail', 'regular expressions', 'workflows', 'ChatGPT']
|
tags: ['Email', 'Fastmail', 'regular expressions', 'workflows', 'ChatGPT']
|
||||||
|
image: /src/assets/img/og/fastmail-workflow.jpg
|
||||||
---
|
---
|
||||||
|
|
||||||
I've been using Fastmail for years now and have explored a number of different approaches to handling mail. I've approached it by creating rules targeting lists of top level domains, I've gone with no rules at all and a heavy-handed approach to unsubscribing from messages (operating under the idea that _everything_ warrants being seen and triaged) and I've even used HEY.<!-- excerpt -->[^1]
|
I've been using Fastmail for years now and have explored a number of different approaches to handling mail. I've approached it by creating rules targeting lists of top level domains, I've gone with no rules at all and a heavy-handed approach to unsubscribing from messages (operating under the idea that _everything_ warrants being seen and triaged) and I've even used HEY.<!-- excerpt -->[^1]
|
||||||
|
@ -222,7 +223,7 @@ This pattern of filtering and filing continues for several additional categories
|
||||||
],
|
],
|
||||||
```
|
```
|
||||||
|
|
||||||
**Travel (forwarding)**
|
**Travel (forwarding)**
|
||||||
These are designed to capture confirmations sent by Southwest and are sent off to [Flighty](https://www.flightyapp.com) before being sorted.
|
These are designed to capture confirmations sent by Southwest and are sent off to [Flighty](https://www.flightyapp.com) before being sorted.
|
||||||
|
|
||||||
```json
|
```json
|
||||||
|
@ -274,7 +275,7 @@ These are designed to capture confirmations sent by Southwest and are sent off t
|
||||||
],
|
],
|
||||||
```
|
```
|
||||||
|
|
||||||
**Social networking messages**
|
**Social networking messages**
|
||||||
These I've left as a simple list wherein `any` included top level domain is filed away as I don't belong to many social networks, and they change fairly infrequently.
|
These I've left as a simple list wherein `any` included top level domain is filed away as I don't belong to many social networks, and they change fairly infrequently.
|
||||||
|
|
||||||
**DMARC notifications (depending on how you have your policy record configured)**
|
**DMARC notifications (depending on how you have your policy record configured)**
|
||||||
|
|
|
@ -3,7 +3,7 @@ date: '2023-05-23'
|
||||||
title: 'I block ads'
|
title: 'I block ads'
|
||||||
draft: false
|
draft: false
|
||||||
tags: ['advertising', 'privacy', 'tech']
|
tags: ['advertising', 'privacy', 'tech']
|
||||||
image: https://cdn.coryd.dev/blog/adblocks.jpg
|
image: /src/assets/img/og/adblocks.jpg
|
||||||
---
|
---
|
||||||
|
|
||||||
I block ads in the browser.
|
I block ads in the browser.
|
||||||
|
|
Reference in a new issue