Git Product home page Git Product logo

burner.kiwi's Introduction

Roger the pyro kiwi

Burner.kiwi

Build Status Go Report Card Coverage Status

A temporary email service and API built in Go. No JavaScript. No tracking. No analytics. No bullshit.

Check it out here: https://burner.kiwi

About

Burner.kiwi is designed to be able to run on both AWS Lambda and normal machines. The goal is to have several backing database implementations and flexible configuration.

At this point it's working on normal machines and in Lambda. There are now three production-ready database implementations - DynamoDB, PostgreSQL and SQLite3.

There are also now two email implementations: Mailgun and SMTP. SMTP allows you to receive emails directly at no extra cost but will not work with AWS lambda.

This is definitely still a work in progress, see the To Do section.

Deploy Your Own!

To run it on your own server. Build a binary, set up with the configuration parameters detailed below and run it.

AWS Lambda

Modify the provided cloudformation.json template and upload the zipped code to a bucket in that region.

Test

Run all of burner.kiwi's tests locally:

make test

Build

Run:

make build

This will create and populate a build directory containing the binary file and minified/renamed static assets.

If you wish to use SQLite3 you must run:

make build-sqlite

Configuration Parameters

These are all set as environment variables.

General

Parameter Type Description
LAMBDA Boolean Whether or not the binary is being hosted on AWS Lambda
KEY String Key used to sign cookies and keys. Make this something strong!
WEBSITE_URL String The url where the binary is being hosted. This must be internet reachable as it is the destination for Mailgun routes
STATIC_URL String The url where static content is being hosted. Set to /static to have the binary serve it. Otherwise set to a full domain name with protocol e.g https://static.example.com
DEVELOPING Boolean Set to true to disable HSTS and set Cache-Control to zero.
DOMAINS []String Comma separated list of domains connected to Mailgun account and able to receive email
RESTOREREALIP Boolean Restores the real remote ip using the CF-Connecting-IP header. Set to true to enable, false by default
BLACKLISTED []String Comma separated list of domains to reject email from

Email

Parameter Type Description
EMAIL_TYPE String One of mailgun or smtp
SMTP_LISTEN String Listen address for SMTP server (default 25)
MG_KEY String Mailgun private API key (if using mailgun)
MG_DOMAIN String One of the domains set up on your Mailgun account (if using mailgun)

Database

Parameter Type Description
DB_TYPE String One of memory, postgres, sqlite3 or dynamo for InMemory, PostgreSQL, SQLite3 (not this requires building with SQLite3 support) and DynamoDB respectively
DATABASE_URL String URL for the PostgreSQL database or filename for SQLite3 see documentation here.
DYNAMO_TABLE String Name of the dynamodb table to use for storage (if using DynamoDB)

AWS

If you are using DynamoDB in a non-AWS environment you need to set these. If you are on AWS you should, of course, use IAM roles.

Parameter Type Description
AWS_ACCESS_KEY_ID String Your AWS access key ID corresponding to an IAM role with permission to use DynamoDB
AWS_SECRET_ACCESS_KEY String AWS secret access key corresponding to your access key ID
AWS_REGION String The AWS region containing the DynamoDB table. Use the appropriate value from the Region column here.

Contributing

If you notice any issues or have anything to add, I would be more than happy to work with you. Create an issue and outline your plans or bugs.

To do

  • More tests for server package
  • Better documentation on how to self host
  • Proxy images to disrupt tracking pixels
  • Attachments

If you think you can help, then create an issue and outline your plans.

Contributors

Thanks to:

  • cdubz for adding SQLite3 and custom address support
  • lopezator for switching to go modules

License

Copyright 2018 Hayden Woodhead

Licensed under the MIT License.

The Roger logo is drawn by Melissa Bather, used with permission, and licensed under Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International (CC BY-NC-SA 4.0).

burner.kiwi's People

Contributors

cdubz avatar haydenwoodhead avatar lopezator avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.