From 347dc3f5e581f883b79b419d67f9780661940c3f Mon Sep 17 00:00:00 2001 From: Carl Worth Date: Sun, 5 Dec 2010 03:38:25 -0800 Subject: [PATCH] Add an explicit license (GPLv3+) to nodemuch.js This is the same license used by notmuch itself. --- nodemuch.js | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/nodemuch.js b/nodemuch.js index fb57c91..0c44e6d 100644 --- a/nodemuch.js +++ b/nodemuch.js @@ -1,3 +1,25 @@ +/* nodemuch - A nodejs interface to the notmuch mail system + * + * Copyright © 2010 Carl Worth + * Copyright © 2010 Richard D. Worth + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see http://www.gnu.org/licenses/ . + * + * Authors: Carl Worth + * Richard D. Worth + */ + var http = require( "http" ), parse = require( "url" ).parse, exec = require( "child_process" ).exec; -- 2.43.0