diff --git a/docs/privacy.md b/docs/privacy.md index 1c150e50..b915c178 100644 --- a/docs/privacy.md +++ b/docs/privacy.md @@ -132,8 +132,8 @@ Dashy supports [Widgets](/docs/widgets.md) for displaying dynamic content. Below - [BlockCypher Privacy Policy](https://www.blockcypher.com/privacy.html) - **[Code::Stats](/docs/widgets.md#code-stats)**: `https://codestats.net` - [Code::Stats Privacy Policy](https://codestats.net/tos#privacy) -- **[AnonAddy](/docs/widgets.md#anonaddy)**: `https://app.anonaddy.com` - - [AnonAddy Privacy Policy](https://anonaddy.com/privacy/) +- **[addy.io](/docs/widgets.md#addyio)**: `https://app.addy.io` + - [addy.io Privacy Policy](https://addy.io/privacy/) - **[Vulnerability Feed](/docs/widgets.md#vulnerability-feed)**: `https://www.cvedetails.com` - [CVE Details Privacy Policy](https://www.cvedetails.com/privacy.php) - **[Exchange Rate](/docs/widgets.md#exchange-rates)**: `https://v6.exchangerate-api.com` diff --git a/docs/widgets.md b/docs/widgets.md index bc54044f..ac03ad54 100644 --- a/docs/widgets.md +++ b/docs/widgets.md @@ -18,7 +18,7 @@ Dashy has support for displaying dynamic content in the form of widgets. There a - [Crypto Wallet Balance](#wallet-balance) - [Code Stats](#code-stats) - [Mullvad Status](#mullvad-status) - - [Email Aliases (AnonAddy)](#anonaddy) + - [Email Aliases (addy.io)](#addyio) - [Vulnerability Feed](#vulnerability-feed) - [Exchange Rates](#exchange-rates) - [Public Holidays](#public-holidays) @@ -574,11 +574,11 @@ _No Options._ --- -### AnonAddy +### addy.io -[AnonAddy](https://anonaddy.com/) is a free and open source mail forwarding service. Use it to protect your real email address, by using a different alias for each of your online accounts, and have all emails land in your normal inbox(es). Supports custom domains, email replies, PGP-encryption, multiple recipients and more +[addy.io](https://addy.io/) is a free and open source mail forwarding service. Use it to protect your real email address, by using a different alias for each of your online accounts, and have all emails land in your normal inbox(es). Supports custom domains, email replies, PGP-encryption, multiple recipients and more -This widget display email addresses / aliases from AnonAddy. Click an email address to copy to clipboard, or use the toggle switch to enable/ disable it. Shows usage stats (bandwidth, used aliases etc), as well as total messages received, blocked and sent. Works with both self-hosted and managed instances of AnonAddy. +This widget display email addresses / aliases from addy.io. Click an email address to copy to clipboard, or use the toggle switch to enable/ disable it. Shows usage stats (bandwidth, used aliases etc), as well as total messages received, blocked and sent. Works with both self-hosted and managed instances of addy.io.

@@ -586,8 +586,8 @@ This widget display email addresses / aliases from AnonAddy. Click an email addr **Field** | **Type** | **Required** | **Description** --- | --- | --- | --- -**`apiKey`** | `string` | Required | Your AnonAddy API Key / Personal Access Token. You can generate this under [Account Settings](https://app.anonaddy.com/settings) -**`hostname`** | `string` | _Optional_ | If your self-hosting AnonAddy, then supply the host name. By default it will use the public hosted instance +**`apiKey`** | `string` | Required | Your addy.io API Key / Personal Access Token. You can generate this under [Account Settings](https://app.addy.io/settings) +**`hostname`** | `string` | _Optional_ | If your self-hosting addy.io, then supply the host name. By default it will use the public hosted instance **`apiVersion`** | `string` | _Optional_ | If you're using an API version that is not version `v1`, then specify it here **`limit`** | `number` | _Optional_ | Limit the number of emails shown per page. Defaults to `10` **`sortBy`** | `string` | _Optional_ | Specify the sort order for email addresses. Defaults to `updated_at`. Can be either: `local_part`, `domain`, `email`, `emails_forwarded`, `emails_blocked`, `emails_replied`, `emails_sent`, `created_at`, `updated_at` or `deleted_at`. Precede with a `-` character to reverse order. @@ -615,7 +615,7 @@ This widget display email addresses / aliases from AnonAddy. Click an email addr - **Auth**: 🔴 Required - **Price**: 🟠 Free for Self-Hosted / Free Plan available on managed instance or $1/month for premium - **Host**: Self-Hosted or Managed -- **Privacy**: _See [AnonAddy Privacy Policy](https://anonaddy.com/privacy/)_ +- **Privacy**: _See [addy.io Privacy Policy](https://addy.io/privacy/)_ --- diff --git a/src/components/Widgets/WidgetBase.vue b/src/components/Widgets/WidgetBase.vue index bcb16e12..c4d4220f 100644 --- a/src/components/Widgets/WidgetBase.vue +++ b/src/components/Widgets/WidgetBase.vue @@ -46,7 +46,7 @@ const COMPAT = { 'adguard-filter-status': 'AdGuardFilterStatus', 'adguard-stats': 'AdGuardStats', 'adguard-top-domains': 'AdGuardTopDomains', - anonaddy: 'AnonAddy', + anonaddy: 'addy.io', apod: 'Apod', 'blacklist-check': 'BlacklistCheck', clock: 'Clock', diff --git a/src/utils/defaults.js b/src/utils/defaults.js index ef97eda8..e5cd6966 100644 --- a/src/utils/defaults.js +++ b/src/utils/defaults.js @@ -221,7 +221,7 @@ module.exports = { }, /* API endpoints for widgets that need to fetch external data */ widgetApiEndpoints: { - anonAddy: 'https://app.anonaddy.com', + anonAddy: 'https://app.addy.io', astronomyPictureOfTheDay: 'https://apod.as93.net/apod', blacklistCheck: 'https://api.blacklistchecker.com/check', codeStats: 'https://codestats.net/',