All Projects → forwardemail → Forwardemail.net

forwardemail / Forwardemail.net

Licence: other
The best free email forwarding for custom domains (Web Server)

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to Forwardemail.net

is-biz-mail-php
isBizMail tells you whether a given email address belongs to a free email account provider (gmail.com, yahoo.es, yandex.ru etc) or not.
Stars: ✭ 19 (-91%)
Mutual labels:  mail, email, domain, free
Free Email Forwarding
The best free email forwarding for custom domains. Visit our website to get started (SMTP server)
Stars: ✭ 2,024 (+859.24%)
Mutual labels:  email, mail, gmail, custom
Gatsby Mail
A Gatsby email *application*
Stars: ✭ 450 (+113.27%)
Mutual labels:  email, mail, gmail
Imapcopy
Recursively copy all e-mail messages and folders from one IMAP account to another.
Stars: ✭ 52 (-75.36%)
Mutual labels:  email, mail, gmail
Correo
💌 A menubar/taskbar Gmail App for Windows and macOS
Stars: ✭ 119 (-43.6%)
Mutual labels:  email, gmail
N1 Ido
Ido is a clean, simple, Polymail-inspired theme for Mailspring
Stars: ✭ 118 (-44.08%)
Mutual labels:  email, mail
Django mail admin
The one and only django app to receive & send mail with templates and multiple configurations.
Stars: ✭ 140 (-33.65%)
Mutual labels:  email, mail
0x4447 product s3 email
📫 A serverless email server on AWS using S3 and SES
Stars: ✭ 2,905 (+1276.78%)
Mutual labels:  free, email
Yii2 Swiftmailer
Yii 2 swiftmailer extension.
Stars: ✭ 109 (-48.34%)
Mutual labels:  email, mail
Django Mail Templated
Send emails using Django template system
Stars: ✭ 146 (-30.81%)
Mutual labels:  email, mail
Dart Basic Utils
A dart package for many helper methods fitting common situations
Stars: ✭ 153 (-27.49%)
Mutual labels:  email, domain
Postmark Php
The official PHP library for Postmark.
Stars: ✭ 117 (-44.55%)
Mutual labels:  email, mail
Mailinabox
Mail-in-a-Box helps individuals take back control of their email by defining a one-click, easy-to-deploy SMTP+everything else server: a mail server in a box.
Stars: ✭ 10,649 (+4946.92%)
Mutual labels:  email, mail
Mailspring
💌 A beautiful, fast and fully open source mail client for Mac, Windows and Linux.
Stars: ✭ 11,953 (+5564.93%)
Mutual labels:  email, mail
Action Send Mail
⚙️ A GitHub Action to send an email to multiple recipients
Stars: ✭ 111 (-47.39%)
Mutual labels:  email, mail
Clojure Mail
A Clojure library for parsing, downloading and reading email from IMAP servers.
Stars: ✭ 172 (-18.48%)
Mutual labels:  email, gmail
Ip Biter
IP-Biter: The Hacker-friendly E-Mail (but not only) Tracking Framework
Stars: ✭ 166 (-21.33%)
Mutual labels:  email, mail
Postmark.js
Official Node.js library for the Postmark API
Stars: ✭ 177 (-16.11%)
Mutual labels:  email, mail
Ptorx
📩🛡 Email privacy. Anonymously send and receive with alias forwarding.
Stars: ✭ 187 (-11.37%)
Mutual labels:  email, mail
Waveboxapp
Wavebox Classic has been updated to Wavebox 10. Learn more Wavebox.io
Stars: ✭ 1,198 (+467.77%)
Mutual labels:  email, gmail

ForwardEmail.net

build status code coverage code style styled with prettier made with lad

Table of Contents

How do I get started

For Consumers

Visit https://forwardemail.net to get started!

For Developers

See Requirements below.

Requirements

macOS

  1. You should have brew and node installed. We recommend installing Node.js with nvm (e.g. nvm install --lts).

  2. Install brew dependencies:

    brew tap mongodb/brew
    brew install [email protected] redis python3 ansible ansible-lint libtool automake autoconf nasm
    brew services start [email protected]
    brew services start redis
    pip3 install dkimpy pyspf dnspython
    
  3. Install ansible-galaxy requirements (assumes current working directory is the root of this repository):

    ansible-galaxy install -r ansible/requirements.yml
    
  4. Install pm2 which is used for deployment:

    npm i -g pm2
    
  5. Install npm dependencies:

    npm install
    
  6. Install wkhtmltopdf.

Ubuntu

Coming soon

Server Infrastructure

Naming Convention

Our server alias naming convention consists of the following fields, joined together by a hyphen, and converted to lower case:

  1. App name
  2. (Optional) App count (starting with 1) of the application (relative to the same provider and region). Only applicable for apps with potential count > 1.
  3. Provider name (abbreviated to 2 characters)
  4. Region name (this is the region name given by the provider)
  5. Region country (ISO-3166 alpha-2 code)
  6. Project fully-qualified domain name (FQDN - this is the main project domain name; e.g. forwardemail.net or api.forwardemail.net)

For example, one of our web servers is named web-1-do-nyc3-us.forwardemail.net, and one of our API servers is named api-1-do-nyc3-us.api.forwardemail.net.

Load Balancing

All server aliases with the same hostname (with a minimum count of at least 2) are set in Cloudflare under a geo-located load balancer.

Unless otherwise noted, all of the servers should have dedicated CPU's and not be running in a shared CPU environment.

Provisioning

See the ansible folder for our Ansible configuration and playbooks, which we use to provision servers with.

We recommend you to install yamllint and configure it in your editor while working with Ansible playbooks.

Also note that ansible-lint is a helpful linting tool you can use if you plan on making changes to playbooks. Note that our current playbooks have several existing lint errors.

First you must provision Ubuntu 18.04 LTS 64-bit server(s) using Digital Ocean, Linode, Vultr, or your host of choice. These newly provisioned server(s) should have your SSH key automatically added.

Follow the Deployment guide below for automatic provisioning and deployment instructions.

Deployment

  1. Set up host configuration by copying the hosts.yml file template:

    cp ansible/playbooks/templates/hosts.yml hosts.yml
    
  2. Edit this configuration and update the file with your newly created server aliases and IP addresses. You can add more than one host to each group if you are setting up load balancing. Refer to the Naming Convention documentation for our recommended approach to server alias naming. Note that this file is automatically ignored by git. If you have a private repository and would like to commit this, then remove hosts.yml from the root .gitignore file.

    vim hosts.yml
    
  3. Set up environment configuration by copying the env file template:

    cp ansible/playbooks/templates/env .env.production
    
  4. Edit this configuration and reference the official Lad documentation for a list of all available environment variables (or see .env.defaults). You will need to open this file in your preferred editor and set the values for any fields containing TODO, whereby you replace TODO with the appropriate value. Preserve double quotes where they are already defined.

    vim .env.production
    
  5. Generate pm2 ecosystem files using our automatic template generator. We created an ansible-playbook.js which loads the .env.production environment variables rendered with @ladjs/env into process.env, which then gets used in the playbooks. This is a superior, simple, and the only known dotenv approach we know of in Ansible. Newly created ecosystem-api.json, ecosystem-bree.json, ecosystem-web.json files will now be created for you in the root of the repository. If you ever more add or change IP addresses, you can simply re-run this command.

    node ansible-playbook ansible/playbooks/ecosystem.yml -l 'localhost'
    
  6. Set up the web and API server(s) (see patterns and ansible-playbook flags docs if you need help). If you completely (or partially) run this playbook (or any others below), then the second time you try to run it may not succeed. This is because we prevent root user access through security hardening. To workaround this, run the same command but without -e 'ansible_user=root' appended as it will default to the devops user created.

    node ansible-playbook ansible/playbooks/http.yml -e 'ansible_user=root' -l 'http'
    
  7. Set up the Bree server(s):

    node ansible-playbook ansible/playbooks/bree.yml -e 'ansible_user=root' -l 'bree'
    
  8. Set up the Redis server:

    node ansible-playbook ansible/playbooks/redis.yml -e 'ansible_user=root' -l 'redis'
    
  9. Set up the Mongo server:

    node ansible-playbook ansible/playbooks/mongo.yml -e 'ansible_user=root' -l 'mongo'
    
  10. Set up GitHub deployment keys for all the servers. Note that the deployment-keys directory is ignored from git, so if you have a private repository and wish to commit it, then remove deployment-keys from the .gitignore file.

    node ansible-playbook ansible/playbooks/deployment-keys.yml -l 'http:bree'
    
  11. Go to your repository "Settings" page on GitHub, click on "Deploy keys", and then add a deployment key for each servers' deployment key copied to the deployment-keys directory. If you're on macOS, you can use the pbcopy command to copy each file's contents to your clipboard. Use tab completion for speed, and replace the server names and paths with yours:

    cat deployment-keys/api-1-li-dal.forwardemail.net.pub | pbcopy
    
    #
    # NOTE: repeat the above command for all servers
    # and after running the command, it will copy
    # the key to your clipboard for you to paste as
    # a new deploy key (make sure to use read-only access)
    #
    
  12. Set up PM2 deployment directories on all the servers:

    pm2 deploy ecosystem-web.json production setup
    
    pm2 deploy ecosystem-api.json production setup
    
    pm2 deploy ecosystem-bree.json production setup
    
  13. Create a SSL certificate at Namecheap (we recommend a 5 year wildcard certificate), set up the certificate, and download and extract the ZIP file with the certificate (emailed to you) to your computer. We do not recommend using tools like LetsEncrypt and certbot due to complexity when you have (or scale to) a cluster of servers set up behind load balancers. In other words, we've tried approaches like lsyncd in combination with crontab for certbot renewals and automatic checking. Furthermore, using this exposes the server(s) to downtime as ports 80 and 443 may need to be shut down so that certbot can use them for certificate generation. This is not a reliable approach, and simply renewing certificates once a year is vastly simpler and also makes using load balancers trivial. Instead you can use a provider like Namecheap to get a cheap SSL certificate, then run a few commands as we've documented below. This command will prompt you for an absolute file path to the certificates you downloaded. Renewed your certificate after 1 year? Simply follow this step again. Do not set a password on the certificate files. When using the openssl command (see Namecheap instructions), you need to use *.example.com with an asterisk followed by a period if you are registering a wildcard certificate.

    ansible-playbook ansible/playbooks/certificates.yml
    

    Important: If you renew or change certificates in the future, then after running the previous command, you will subsequently need to reload the processes as such:

    #
    # NOTE: See the "Important" note above BEFORE running this command.
    #       This command ONLY APPLIES for certificate renewals/changes.
    #
    pm2 deploy ecosystem-web.json production exec "pm2 reload web"
    pm2 deploy ecosystem-api.json production exec "pm2 reload api"
    
  14. (Optional) Create a Google application credentials profile file and store it locally. You only need this if you want to support automatic translation. The following command will prompt you for the absolute file path (e.g. /path/to/client-profile.json). See the mandarin docs for more information.

    ansible-playbook ansible/playbooks/gapp-creds.yml -l 'http:bree'
    
  15. Copy the .env.production file and create an AWS config file on the servers:

    node ansible-playbook ansible/playbooks/env.yml -l 'http:bree'
    
  16. Run an initial deploy to all the servers:

    pm2 deploy ecosystem-web.json production
    
    pm2 deploy ecosystem-api.json production
    
    pm2 deploy ecosystem-bree.json production
    
  17. Save the process list on the servers so when if the server were to reboot, it will automatically boot back up the processes:

    pm2 deploy ecosystem-web.json production exec "pm2 save"
    
    pm2 deploy ecosystem-api.json production exec "pm2 save"
    
    pm2 deploy ecosystem-bree.json production exec "pm2 save"
    
  18. Test by visiting your web and API server in your browser (click "proceed to unsafe" site and bypass certificate warning).

  19. Configure your DNS records for the web and API server hostnames and respective IP addresses.

  20. Test by visiting your web and API server in your browser (in an incognito window). There should not be any certificate warnings (similar to the one that occurred in step 15).

  21. (Optional) Remove the local .env.production file for security purposes. If you do this, then make sure you have a backup, or securely back up off the server in the future before destroying the server.

    rm .env.production
    
  22. (Optional) Remove the local certificate files you downloaded locally and specified in step 11. If you do this, then make sure you have a backup, or securely back up off the server in the future before destroying the server.

  23. Finished. If you need to deploy again, then push your changes to GitHub master branch and then follow step 14 again. We recommend you to read the Ansible getting started guide, as it provides you with insight into commands like ansible all -a "echo hello" which can be run across all or specific servers.

Contributors

Name Website
Nick Baugh http://niftylettuce.com/

License

Business Source License 1.1 © Niftylettuce, LLC.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].