Skip to content

Commit

Permalink
v1.23.2
Browse files Browse the repository at this point in the history
  • Loading branch information
andris9 committed Apr 4, 2017
1 parent 60907c0 commit 4ca98dd
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 9 deletions.
14 changes: 7 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "mailtrain",
"private": true,
"version": "1.23.1",
"version": "1.23.2",
"description": "Self hosted email newsletter app",
"main": "index.js",
"scripts": {
Expand Down Expand Up @@ -34,8 +34,8 @@
"jsxgettext-andris": "^0.9.0-patch.1"
},
"dependencies": {
"async": "^2.1.5",
"aws-sdk": "^2.31.0",
"async": "^2.3.0",
"aws-sdk": "^2.37.0",
"bcrypt-nodejs": "0.0.3",
"body-parser": "^1.17.1",
"bounce-handler": "^7.3.2-fork.2",
Expand All @@ -52,7 +52,7 @@
"dompurify": "^0.8.5",
"escape-html": "^1.0.3",
"express": "^4.15.2",
"express-session": "^1.15.1",
"express-session": "^1.15.2",
"faker": "^4.1.0",
"feedparser": "^2.1.0",
"file-type": "^4.1.0",
Expand All @@ -74,7 +74,7 @@
"memory-cache": "^0.1.6",
"mjml": "3.3.0",
"mkdirp": "^0.5.1",
"moment-timezone": "^0.5.11",
"moment-timezone": "^0.5.12",
"morgan": "^1.8.1",
"multer": "^1.3.0",
"multiparty": "^4.1.3",
Expand All @@ -85,14 +85,14 @@
"nodemailer-openpgp": "^1.0.2",
"npmlog": "^4.0.2",
"object-hash": "^1.1.7",
"openpgp": "^2.5.1",
"openpgp": "^2.5.3",
"passport": "^0.3.2",
"passport-local": "^1.0.0",
"premailer-api": "^1.0.4",
"redfour": "^1.0.0",
"redis": "^2.7.1",
"request": "^2.81.0",
"serve-favicon": "^2.4.1",
"serve-favicon": "^2.4.2",
"shortid": "^2.2.8",
"slugify": "^1.1.0",
"smtp-server": "^2.0.3",
Expand Down
5 changes: 3 additions & 2 deletions setup/sql/mailtrain.sql
Original file line number Diff line number Diff line change
Expand Up @@ -154,6 +154,7 @@ CREATE TABLE `importer` (
`path` varchar(255) NOT NULL DEFAULT '',
`size` int(11) unsigned NOT NULL DEFAULT '0',
`delimiter` varchar(1) CHARACTER SET ascii NOT NULL DEFAULT ',',
`emailcheck` tinyint(4) unsigned NOT NULL DEFAULT '1',
`status` tinyint(4) unsigned NOT NULL DEFAULT '0',
`error` varchar(255) DEFAULT NULL,
`processed` int(11) unsigned NOT NULL DEFAULT '0',
Expand Down Expand Up @@ -237,7 +238,7 @@ CREATE TABLE `settings` (
`value` text NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `key` (`key`)
) ENGINE=InnoDB AUTO_INCREMENT=40 DEFAULT CHARSET=utf8mb4;
) ENGINE=InnoDB AUTO_INCREMENT=41 DEFAULT CHARSET=utf8mb4;
INSERT INTO `settings` (`id`, `key`, `value`) VALUES (1,'smtp_hostname','smtp-pulse.com');
INSERT INTO `settings` (`id`, `key`, `value`) VALUES (2,'smtp_port','465');
INSERT INTO `settings` (`id`, `key`, `value`) VALUES (3,'smtp_encryption','TLS');
Expand All @@ -254,7 +255,7 @@ INSERT INTO `settings` (`id`, `key`, `value`) VALUES (13,'default_from','My Awes
INSERT INTO `settings` (`id`, `key`, `value`) VALUES (14,'default_address','admin@example.com');
INSERT INTO `settings` (`id`, `key`, `value`) VALUES (15,'default_subject','Test message');
INSERT INTO `settings` (`id`, `key`, `value`) VALUES (16,'default_homepage','http://localhost:3000/');
INSERT INTO `settings` (`id`, `key`, `value`) VALUES (17,'db_schema_version','23');
INSERT INTO `settings` (`id`, `key`, `value`) VALUES (17,'db_schema_version','24');
CREATE TABLE `subscription` (
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
`cid` varchar(255) CHARACTER SET ascii NOT NULL,
Expand Down

0 comments on commit 4ca98dd

Please sign in to comment.