-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
17 changed files
with
211 additions
and
116 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,6 +13,12 @@ categories: | |
tags: | ||
- on-front-page | ||
- archiving | ||
keywords: | ||
- ProtonPass | ||
- SimpleLogin | ||
- inbox | ||
- Sieve mail filtering language rule | ||
description: Protect inbox against spam and phishing and sort automatically | ||
preamble: | ||
disable: true | ||
text: | ||
|
@@ -53,8 +59,7 @@ of these aliases, I've developed a Sieve script that automatically sorts | |
incoming emails into appropriate folders. | ||
|
||
|
||
<code-group> | ||
<code-block label="Sieve" active> | ||
<code-block label="Sieve"> | ||
|
||
```sieve | ||
require ["include", "environment", "variables", "relational", "comparator-i;ascii-numeric", "spamtest"]; | ||
|
@@ -88,8 +93,7 @@ if address :matches :domain ["to", "cc", "bcc"] "alias.example.org" { | |
} | ||
``` | ||
|
||
</code-block> | ||
</code-group> | ||
</code-block> | ||
|
||
This Sieve script effectively sorts incoming emails based on their alias | ||
pattern. Emails with aliases like `[email protected]` or | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
export * from './consts' | ||
export * from './model' | ||
export * from './runtime' | ||
export type * from './types' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
import type { MetaInfo } from 'vue-meta' | ||
|
||
export type Flatten<T> = T extends any[] ? T[number] : T | ||
|
||
export type RefreshMetaInfo = { | ||
content: string | ||
hid: string | ||
'http-equiv': 'refresh' | ||
} | ||
|
||
export type IVueMetaHeadMetaInfoArray = Pick<MetaInfo, 'meta'>['meta'] | ||
|
||
export type IVueMetaHeadLinkArray = Pick<MetaInfo, 'link'>['link'] | ||
|
||
export interface IAppIdentity { | ||
email: string | ||
name: string | ||
description: string | ||
homepage: string | ||
version: string | ||
} | ||
|
||
export interface CreateVueMetaInfoOptions { | ||
locale: string | ||
title: string | ||
description?: string | ||
keywords?: string[] | ||
redirect?: string | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.