anonaddy

Anonymous email forwarding

AGPL-3.0 License

Stars
3K
Committers
12

Bot releases are hidden (Show)

anonaddy - v1.2.0 Latest Release

Published by willbrowningme 5 months ago

  • Upgraded application to Laravel 11
  • Fixed #632
  • Added applied count and last applied to Rules
  • Added Update Available link above version number when a new release is available

Laravel 11.x requires a minimum PHP version of 8.2.

anonaddy - v1.1.0

Published by willbrowningme 7 months ago

  • Added last_forwarded, last_blocked, last_replied and last_sent to aliases. You can view each of these by hovering over the "count" in the Forwards/Blocks and Replies/Sends columns in the table on the aliases page. #119
  • You can also now sort your aliases by Last Forwarded At, Last Blocked At, Last Replied At and Last Sent At.
  • Added option in General settings to turn off the above 'last used at' from being saved.
  • Added ability for addy.io to automatically decrypt PGP encrypted replies/sends from aliases on the server. They must be encrypted using the [email protected] public key. See #599 for more details.
  • Attached PGP public keys and signatures will now be removed in any replies/sends in order to prevent accidental leaking of ones real email address.
  • usernames, domains and recipients resources will no longer return aliases in their API response because there was no pagination. Instead an aliases_count will be returned. You can use get all aliases endpoint specifying the ID of a username, domain, or recipient instead.
  • Fixed #604
  • Fixed #605
  • Fixed #143
  • Fixed #619
anonaddy - v1.0.9

Published by willbrowningme 8 months ago

  • Fixed #602
anonaddy - v1.0.8

Published by willbrowningme 8 months ago

  • Added overrides to fix rollup issue on Docker image
  • Fixed return types for account details API endpoint
anonaddy - v1.0.7

Published by willbrowningme 8 months ago

anonaddy - v1.0.6

Published by willbrowningme 9 months ago

  • Fixed #588
anonaddy - v1.0.5

Published by willbrowningme 9 months ago

  • Added missing limits to api/v1/account-details endpoint
anonaddy - v1.0.4

Published by willbrowningme 11 months ago

  • Fixed #566
  • Added login redirect setting
  • Added alias sorting and direction to session
  • Added information about Passkey support
  • Made buttons and inputs keyboard accessible
anonaddy - v1.0.3

Published by willbrowningme 12 months ago

  • Updated domain options endpoint
anonaddy - v1.0.2

Published by willbrowningme 12 months ago

  • Fixed issue with email verification notification
  • Prevented alias count request being made if no recipients are found for a search
anonaddy - v1.0.1

Published by willbrowningme 12 months ago

  • Fixed hard-coded domain references
anonaddy - v1.0.0

Published by willbrowningme 12 months ago

Changes

Update the user interface and code after the rebrand to addy.io.

Breaking Changes

  • PHP 8.2+ is required
  • In /etc/postfix/main.cf:
smtpd_recipient_restrictions =
   permit_mynetworks,
   reject_unauth_destination,
   check_recipient_access mysql:/etc/postfix/mysql-recipient-access.cf,
   reject_rhsbl_helo dbl.spamhaus.org,
   reject_rhsbl_reverse_client dbl.spamhaus.org,
   reject_rhsbl_sender dbl.spamhaus.org,
   reject_rbl_client zen.spamhaus.org
   reject_rbl_client dul.dnsbl.sorbs.net

Needs updating to:

smtpd_recipient_restrictions =
   permit_mynetworks,
   reject_unauth_destination,
   check_policy_service unix:private/policy,
   reject_rhsbl_helo dbl.spamhaus.org,
   reject_rhsbl_reverse_client dbl.spamhaus.org,
   reject_rhsbl_sender dbl.spamhaus.org,
   reject_rbl_client zen.spamhaus.org
   reject_rbl_client dul.dnsbl.sorbs.net

You can safely delete /etc/postfix/mysql-recipient-access.cf by running sudo rm /etc/postfix/mysql-recipient-access.cf.

In /etc/postfix/master.cf add the following to the end of the file:

policy  unix  -       n       n       -       0       spawn
    user=johndoe argv=php /var/www/anonaddy/postfix/AccessPolicy.php

Where johndoe is your system user that is running the web application and /var/www/anonaddy/ is the path to your web application.

Restart Postfix by running sudo service postfix restart to reflect these changes.

anonaddy - v0.14.1

Published by willbrowningme over 1 year ago

  • Updated to Laravel 10
  • Added custom domain alias CSV import
  • Added indexes to speed up relationship queries
anonaddy - v0.14.0

Published by willbrowningme over 1 year ago

  • Fixed issue with styling for multiselect component
  • Default alias format (from account settings) will now be used if none is provided whilst making API calls to create aliases
  • Added all Received: headers to forwarded messages
anonaddy - v0.13.13

Published by willbrowningme almost 2 years ago

anonaddy - v0.13.12

Published by willbrowningme almost 2 years ago

  • Reduced the number of queries made in ReceiveEmail
  • Improved email banner automatic removal
  • Fixed issue where emails with no subject were being forwarded with the class name as the subject e.g. Forward Email
anonaddy - v0.13.11

Published by willbrowningme almost 2 years ago

  • Email banner is now removed automatically from replies (email must have been forwarded after today) - #253
  • Improved the look of the email banner
anonaddy - v0.13.10

Published by willbrowningme almost 2 years ago

anonaddy - v0.13.9

Published by willbrowningme about 2 years ago

  • Fixed issue where replies and sends were coming from the admin email ([email protected]) - closes #340
  • Node version 14 or greater required
anonaddy - v0.13.7

Published by willbrowningme about 2 years ago

  • Fixed invalid recipient bug when creating a new alias - closes #327