diff --git a/tasks/common.js b/tasks/common.js index 1f88d14ed..6ed596229 100644 --- a/tasks/common.js +++ b/tasks/common.js @@ -12,6 +12,6 @@ exports.copy = (sFile, sNewFile, done) => { done(); }; -exports.getHead = () => config.head.agpl; +exports.getHead = () => config.head.mit; exports.cleanStatic = () => del(config.paths.static); diff --git a/tasks/config.js b/tasks/config.js index 8c3d2c6b8..1d5aa7931 100644 --- a/tasks/config.js +++ b/tasks/config.js @@ -3,7 +3,7 @@ const path = require('path'); const config = { head: { - agpl: '/* SnappyMail Webmail (c) SnappyMail | Licensed under AGPL v3 */' + mit: '/* SnappyMail Webmail (c) SnappyMail | Licensed under MIT */' }, devVersion: '0.0.0', diff --git a/tasks/rollup.js b/tasks/rollup.js index ebf8407c3..6c47c4684 100644 --- a/tasks/rollup.js +++ b/tasks/rollup.js @@ -1,4 +1,4 @@ -/* SnappyMail Webmail (c) SnappyMail Team | Licensed under AGPL 3 */ +/* SnappyMail Webmail (c) SnappyMail Team | Licensed under MIT */ const rollup2 = require('gulp-rollup-2'); const includePaths = require('rollup-plugin-includepaths'); const externalGlobals = require('rollup-plugin-external-globals');