aboutsummaryrefslogtreecommitdiffstats
path: root/plugins
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2017-01-23 19:18:15 +0100
committerKim Alvefur <zash@zash.se>2017-01-23 19:18:15 +0100
commitfcd827853a8dcda866ce6fda71424582238fd57f (patch)
tree08e413e76314efba15cd72b4c7bec6049288eb51 /plugins
parent8adfea849c2328eeeedbd0ea85afd0d65a9214eb (diff)
downloadprosody-fcd827853a8dcda866ce6fda71424582238fd57f.tar.gz
prosody-fcd827853a8dcda866ce6fda71424582238fd57f.zip
mod_mam: Normalize copyright headers
Diffstat (limited to 'plugins')
-rw-r--r--plugins/mod_mam/fallback_archive.lib.lua8
-rw-r--r--plugins/mod_mam/mamprefs.lib.lua10
-rw-r--r--plugins/mod_mam/mamprefsxml.lib.lua10
-rw-r--r--plugins/mod_mam/mod_mam.lua10
4 files changed, 32 insertions, 6 deletions
diff --git a/plugins/mod_mam/fallback_archive.lib.lua b/plugins/mod_mam/fallback_archive.lib.lua
index 92155bef..975f99b3 100644
--- a/plugins/mod_mam/fallback_archive.lib.lua
+++ b/plugins/mod_mam/fallback_archive.lib.lua
@@ -1,3 +1,11 @@
+-- Prosody IM
+-- Copyright (C) 2008-2017 Matthew Wild
+-- Copyright (C) 2008-2017 Waqas Hussain
+-- Copyright (C) 2011-2017 Kim Alvefur
+--
+-- This project is MIT/X11 licensed. Please see the
+-- COPYING file in the source package for more information.
+--
-- luacheck: ignore 212/self
local uuid = require "util.uuid".generate;
diff --git a/plugins/mod_mam/mamprefs.lib.lua b/plugins/mod_mam/mamprefs.lib.lua
index f9b4b129..3fccf645 100644
--- a/plugins/mod_mam/mamprefs.lib.lua
+++ b/plugins/mod_mam/mamprefs.lib.lua
@@ -1,7 +1,13 @@
+-- Prosody IM
+-- Copyright (C) 2008-2017 Matthew Wild
+-- Copyright (C) 2008-2017 Waqas Hussain
+-- Copyright (C) 2011-2017 Kim Alvefur
+--
+-- This project is MIT/X11 licensed. Please see the
+-- COPYING file in the source package for more information.
+--
-- XEP-0313: Message Archive Management for Prosody
--- Copyright (C) 2011-2013 Kim Alvefur
--
--- This file is MIT/X11 licensed.
local global_default_policy = module:get_option("default_archive_policy", true);
diff --git a/plugins/mod_mam/mamprefsxml.lib.lua b/plugins/mod_mam/mamprefsxml.lib.lua
index ec728e55..0598bbcd 100644
--- a/plugins/mod_mam/mamprefsxml.lib.lua
+++ b/plugins/mod_mam/mamprefsxml.lib.lua
@@ -1,7 +1,13 @@
+-- Prosody IM
+-- Copyright (C) 2008-2017 Matthew Wild
+-- Copyright (C) 2008-2017 Waqas Hussain
+-- Copyright (C) 2011-2017 Kim Alvefur
+--
+-- This project is MIT/X11 licensed. Please see the
+-- COPYING file in the source package for more information.
+--
-- XEP-0313: Message Archive Management for Prosody
--- Copyright (C) 2011-2013 Kim Alvefur
--
--- This file is MIT/X11 licensed.
local st = require"util.stanza";
local xmlns_mam = "urn:xmpp:mam:1";
diff --git a/plugins/mod_mam/mod_mam.lua b/plugins/mod_mam/mod_mam.lua
index cff542bb..69977813 100644
--- a/plugins/mod_mam/mod_mam.lua
+++ b/plugins/mod_mam/mod_mam.lua
@@ -1,7 +1,13 @@
+-- Prosody IM
+-- Copyright (C) 2008-2017 Matthew Wild
+-- Copyright (C) 2008-2017 Waqas Hussain
+-- Copyright (C) 2011-2017 Kim Alvefur
+--
+-- This project is MIT/X11 licensed. Please see the
+-- COPYING file in the source package for more information.
+--
-- XEP-0313: Message Archive Management for Prosody
--- Copyright (C) 2011-2016 Kim Alvefur
--
--- This file is MIT/X11 licensed.
local xmlns_mam = "urn:xmpp:mam:1";
local xmlns_delay = "urn:xmpp:delay";