summaryrefslogtreecommitdiff
path: root/alot/db
diff options
context:
space:
mode:
authorPatrick Totzke <patricktotzke@gmail.com>2012-06-14 22:11:05 +0100
committerPatrick Totzke <patricktotzke@gmail.com>2012-06-14 22:11:05 +0100
commitd9650dc2718723f43cc86e0a1192114976cc7429 (patch)
tree4d3f444900b6a263c4b5e5311332527220533f61 /alot/db
parent7a1ce51c3022337dd4b1f7ee25ff866f5be64ae1 (diff)
add copyright statements to all source files
cf issue #472
Diffstat (limited to 'alot/db')
-rw-r--r--alot/db/__init__.py3
-rw-r--r--alot/db/attachment.py3
-rw-r--r--alot/db/envelope.py4
-rw-r--r--alot/db/errors.py3
-rw-r--r--alot/db/message.py3
-rw-r--r--alot/db/thread.py3
-rw-r--r--alot/db/utils.py3
7 files changed, 21 insertions, 1 deletions
diff --git a/alot/db/__init__.py b/alot/db/__init__.py
index 95d2b245..beb630d6 100644
--- a/alot/db/__init__.py
+++ b/alot/db/__init__.py
@@ -1,3 +1,6 @@
+# Copyright (C) 2011-2012 Patrick Totzke <patricktotzke@gmail.com>
+# This file is released under the GNU GPL, version 3 or a later revision.
+# For further details see the COPYING file
from notmuch import Database, NotmuchError, XapianError
import notmuch
import multiprocessing
diff --git a/alot/db/attachment.py b/alot/db/attachment.py
index bbfb6d71..2083dedd 100644
--- a/alot/db/attachment.py
+++ b/alot/db/attachment.py
@@ -1,3 +1,6 @@
+# Copyright (C) 2011-2012 Patrick Totzke <patricktotzke@gmail.com>
+# This file is released under the GNU GPL, version 3 or a later revision.
+# For further details see the COPYING file
import os
import tempfile
import email.charset as charset
diff --git a/alot/db/envelope.py b/alot/db/envelope.py
index 3faea935..c95428ea 100644
--- a/alot/db/envelope.py
+++ b/alot/db/envelope.py
@@ -1,4 +1,6 @@
-# vim:ts=4:sw=4:expandtab
+# Copyright (C) 2011-2012 Patrick Totzke <patricktotzke@gmail.com>
+# This file is released under the GNU GPL, version 3 or a later revision.
+# For further details see the COPYING file
import os
import email
import re
diff --git a/alot/db/errors.py b/alot/db/errors.py
index eb1a56d7..904ddbad 100644
--- a/alot/db/errors.py
+++ b/alot/db/errors.py
@@ -1,3 +1,6 @@
+# Copyright (C) 2011-2012 Patrick Totzke <patricktotzke@gmail.com>
+# This file is released under the GNU GPL, version 3 or a later revision.
+# For further details see the COPYING file
class DatabaseError(Exception):
pass
diff --git a/alot/db/message.py b/alot/db/message.py
index ecd94277..35a36aa1 100644
--- a/alot/db/message.py
+++ b/alot/db/message.py
@@ -1,3 +1,6 @@
+# Copyright (C) 2011-2012 Patrick Totzke <patricktotzke@gmail.com>
+# This file is released under the GNU GPL, version 3 or a later revision.
+# For further details see the COPYING file
import email
from datetime import datetime
import email.charset as charset
diff --git a/alot/db/thread.py b/alot/db/thread.py
index ee872c1f..8b49538d 100644
--- a/alot/db/thread.py
+++ b/alot/db/thread.py
@@ -1,3 +1,6 @@
+# Copyright (C) 2011-2012 Patrick Totzke <patricktotzke@gmail.com>
+# This file is released under the GNU GPL, version 3 or a later revision.
+# For further details see the COPYING file
from datetime import datetime
from message import Message
diff --git a/alot/db/utils.py b/alot/db/utils.py
index 5ff02c5d..bda6d4be 100644
--- a/alot/db/utils.py
+++ b/alot/db/utils.py
@@ -1,3 +1,6 @@
+# Copyright (C) 2011-2012 Patrick Totzke <patricktotzke@gmail.com>
+# This file is released under the GNU GPL, version 3 or a later revision.
+# For further details see the COPYING file
import os
import email
import tempfile