No description
Find a file
2016-05-04 16:54:09 +03:00
config added view for RSS campaigns 2016-05-03 12:36:06 +03:00
lib RSS campaigns 2016-05-04 16:54:09 +03:00
public updated logo 2016-04-30 19:40:02 +03:00
routes RSS campaigns 2016-05-04 16:54:09 +03:00
services RSS campaigns 2016-05-04 16:54:09 +03:00
setup updated transactional messages 2016-05-04 11:27:46 +03:00
test Initial import 2016-04-04 15:36:30 +03:00
views RSS campaigns 2016-05-04 16:54:09 +03:00
.eslintrc.js Initial import 2016-04-04 15:36:30 +03:00
.gitignore Added VERP support 2016-04-10 20:26:20 -07:00
app.js Added option to include GA tracking 2016-05-02 19:50:43 +03:00
CHANGELOG.txt v1.3.0 2016-04-28 20:46:26 +03:00
Gruntfile.js Initial import 2016-04-04 15:36:30 +03:00
index.js first actually working version of RSS campaigns 2016-05-03 14:04:46 +03:00
LICENSE Initial import 2016-04-04 15:36:30 +03:00
meta.json added view for RSS campaigns 2016-05-03 12:36:06 +03:00
nitrous-post-create.sh Display failed imported addresses 2016-04-25 15:39:17 +03:00
nitrous.json Add nitrous.io Quickstart configs and update README 2016-04-12 09:14:02 +00:00
package.json Use juice to prepare html messages 2016-05-03 19:21:01 +03:00
README.md updated readme 2016-04-28 23:37:36 +03:00
README.nitrous.md Add nitrous.io Quickstart configs and update README 2016-04-12 09:14:02 +00:00

Mailtrain

Mailtrain is a self hosted newsletter application built on Node.js (v5+) and MySQL (v5.5+ or MariaDB).

Features

Mailtrain supports subscriber list management, list segmentation, custom fields, email templates, large CSV list import files, etc.

Subscribe to Mailtrain Newsletter here (uses Mailtrain obviously)

Cons

  • Alpha-grade software. Might or might not work as expected
  • Awful code base, needs refactoring
  • No tests
  • Almost no documentation (there are some guides in the Wiki)

Requirements

  • Nodejs v5+
  • MySQL v5.5 or MariaDB
  • Redis (optional, disabled by default, used only for session storage)

Installation

Automatic install (Ubuntu 14.04)

You can download and run install.sh in your blank Ubuntu 14.04 VPS to set up Mailtrain and all required dependencies (including MySQL).

If you are using DigitalOcean then you can copy the contents of the installation script to the User Data textarea field when creating a new VPS (select Ubuntu 14.04 as the droplet Distribution image). After your droplet is created it should already have Mailtrain up and running. Navigate to http://droplet-hostname-or-ip/ and authenticate as admin:test. Do not forget to update your account information and set up SMTP settings.

Manual (any OS that supports Node.js)

  1. Download Mailtrain files using git: git clone git://github.com/andris9/mailtrain.git (or download zipped repo) and open Mailtrain folder cd mailtrain
  2. Run npm install --production in the Mailtrain folder to install required dependencies
  3. Copy config/default.toml as config/production.toml and update MySQL and any other settings in it
  4. Run the server NODE_ENV=production npm start
  5. Open http://localhost:3000/
  6. Authenticate as admin:test
  7. Navigate to http://localhost:3000/settings and update service configuration
  8. Navigate to http://localhost:3000/users/account and update user information and password

Upgrade

  • Replace old files with new ones by running in the Mailtrain folder git pull origin master if you used Git to set Mailtrain up or just download new files and replace old ones with these
  • Run npm install --production in the Mailtrain folder

Using environment variables

Some servers expose custom port and hostname options through environment variables. To support these, create a new configuration file config/local.js:

module.exports = {
    www: {
        port: process.env.OPENSHIFT_NODEJS_PORT,
        host: process.env.OPENSHIFT_NODEJS_IP
    }
};

Mailtrain uses node-config for configuration management and thus the config files are loaded in the following order:

  1. default.toml
  2. {NODE_ENV}.toml (eg. development.toml or production.toml)
  3. local.js

Running behind Nginx proxy

Edit mailtrain.nginx (update server_name directive) and copy it to /etc/nginx/sites-enabled

Running as an Upstart service in Ubuntu 14.04

Edit mailtrain.conf (update application folder) and copy it to /etc/init

Nitrous Quickstart

You can quickly create a free development environment for this Mailtrain project in the cloud on www.nitrous.io:

Nitrous Quickstart

In the IDE, start Mailtrain via Run > Start Mailtrain and access your site via Preview > 3000.

Bounce handling

Mailtrain uses webhooks integration to detect bounces and spam complaints. Currently supported webhooks are:

  • AWS SES create a SNS topic for complaints and bounces and use http://domain/webhooks/aws as the subscriber URL for these topics
  • SparkPost use http://domain/webhooks/sparkpost as the webhook URL for bounces and complaints (instructions)
  • SendGrid use http://domain/webhooks/sendgrid as the webhook URL for bounces and complaints (instructions)
  • Mailgun use http://domain/webhooks/mailgun as the webhook URL for bounces and complaints (instructions)

Additionally Mailtrain (v1.1+) is able to use VERP-based bounce handling. This would require to have a compatible SMTP relay (the services mentioned above strip out or block VERP addresses in the SMTP envelope) and you also need to set up special MX DNS name that points to your Mailtrain installation server.

License

GPL-V3.0