diff --git a/doc/_build/doctrees/acknowledgements.doctree b/doc/_build/doctrees/acknowledgements.doctree
new file mode 100644
index 0000000..8a1b47a
--- /dev/null
+++ b/doc/_build/doctrees/acknowledgements.doctree
Binary files differ
diff --git a/doc/_build/doctrees/environment.pickle b/doc/_build/doctrees/environment.pickle
index 64cfe2a..d99ddd9 100644
--- a/doc/_build/doctrees/environment.pickle
+++ b/doc/_build/doctrees/environment.pickle
Binary files differ
diff --git a/doc/_build/doctrees/index.doctree b/doc/_build/doctrees/index.doctree
index e949e66..c5b1fe5 100644
--- a/doc/_build/doctrees/index.doctree
+++ b/doc/_build/doctrees/index.doctree
Binary files differ
diff --git a/doc/_build/doctrees/using.doctree b/doc/_build/doctrees/using.doctree
index 63f040c..db0cb0f 100644
--- a/doc/_build/doctrees/using.doctree
+++ b/doc/_build/doctrees/using.doctree
Binary files differ
diff --git a/doc/_build/html/_sources/acknowledgements.txt b/doc/_build/html/_sources/acknowledgements.txt
new file mode 100644
index 0000000..f4384f2
--- /dev/null
+++ b/doc/_build/html/_sources/acknowledgements.txt
@@ -0,0 +1,30 @@
+Acknowledgements
+================
+
+Test Server
+-----------
+
+We're proud to provide you a development server which is sponsered by XXX #Todo
+Feel free to change anything you like, we can simply rest the DB from Time to Time.
+
+Missing Functionality
+---------------------
+
+* Delete Domain
+ * missing in REST
+ * implemented in mailman3 a8
+
+* Show a List of all subscribed users
+
+ACL
+---
+
+* Middleware ...
+
+
+
+Ideas
+-----
+
+* ContactPage
+*
diff --git a/doc/_build/html/_sources/index.txt b/doc/_build/html/_sources/index.txt
index d6dcb21..a241ad8 100644
--- a/doc/_build/html/_sources/index.txt
+++ b/doc/_build/html/_sources/index.txt
@@ -13,6 +13,7 @@
setup.rst
using.rst
+ acknowledgements.rst
license.rst
* :ref:`search`
diff --git a/doc/_build/html/_sources/using.txt b/doc/_build/html/_sources/using.txt
index def91d5..94f842d 100644
--- a/doc/_build/html/_sources/using.txt
+++ b/doc/_build/html/_sources/using.txt
@@ -2,3 +2,28 @@
==========================================
.. automodule:: tests.tests
+
+Running the tests explained above.
+----------------------------------
+We've added our own test-suite to the Django App which will be executed together with the Django Test. Last thing you should do is running these tests. If they fail you did something wrong, if they succeed you can enjoy the site.
+
+Run the following in the Site Directory
+
+ .. code-block:: bash
+
+ $ python manage.py test
+
+.. note::
+ Please be aware that we want to run a development instance of mailman you need to stop the stable one first and the tests will open it's own mailman temporily.
+
+Accessing the REST Client for Testing
+-------------------------------------
+
+If you want to access the Functions, which we use in the views, directly feel free to run the following block of code within a Shell which does have it's current Directory within the Django Site Directory.
+
+ .. code-block:: python
+
+ from settings import API_USER, API_PASS
+ from mailman.client import Client
+ c = Client('http://localhost:8001/3.0', API_USER, API_PASS)
+ #DEBUG: Python Session
diff --git a/doc/_build/html/acknowledgements.html b/doc/_build/html/acknowledgements.html
new file mode 100644
index 0000000..aef3c84
--- /dev/null
+++ b/doc/_build/html/acknowledgements.html
@@ -0,0 +1,160 @@
+
+
+
+
+
+
We’re proud to provide you a development server which is sponsered by XXX #Todo
+Feel free to change anything you like, we can simply rest the DB from Time to Time.
+
+
+
\ No newline at end of file
diff --git a/doc/_build/html/index.html b/doc/_build/html/index.html
index 79ad466..432f359 100644
--- a/doc/_build/html/index.html
+++ b/doc/_build/html/index.html
@@ -63,6 +63,15 @@
We’ve added our own test-suite to the Django App which will be executed together with the Django Test. Last thing you should do is running these tests. If they fail you did something wrong, if they succeed you can enjoy the site.
+
Run the following in the Site Directory
+
+
$ python manage.py test
+
+
+
+
+
Note
+
Please be aware that we want to run a development instance of mailman you need to stop the stable one first and the tests will open it’s own mailman temporily.
If you want to access the Functions, which we use in the views, directly feel free to run the following block of code within a Shell which does have it’s current Directory within the Django Site Directory.
diff --git a/doc/acknowledgements.rst b/doc/acknowledgements.rst
new file mode 100644
index 0000000..f4384f2
--- /dev/null
+++ b/doc/acknowledgements.rst
@@ -0,0 +1,30 @@
+Acknowledgements
+================
+
+Test Server
+-----------
+
+We're proud to provide you a development server which is sponsered by XXX #Todo
+Feel free to change anything you like, we can simply rest the DB from Time to Time.
+
+Missing Functionality
+---------------------
+
+* Delete Domain
+ * missing in REST
+ * implemented in mailman3 a8
+
+* Show a List of all subscribed users
+
+ACL
+---
+
+* Middleware ...
+
+
+
+Ideas
+-----
+
+* ContactPage
+*
diff --git a/doc/index.rst b/doc/index.rst
index d6dcb21..a241ad8 100644
--- a/doc/index.rst
+++ b/doc/index.rst
@@ -13,6 +13,7 @@
setup.rst
using.rst
+ acknowledgements.rst
license.rst
* :ref:`search`
diff --git a/doc/using.rst b/doc/using.rst
index def91d5..94f842d 100644
--- a/doc/using.rst
+++ b/doc/using.rst
@@ -2,3 +2,28 @@
==========================================
.. automodule:: tests.tests
+
+Running the tests explained above.
+----------------------------------
+We've added our own test-suite to the Django App which will be executed together with the Django Test. Last thing you should do is running these tests. If they fail you did something wrong, if they succeed you can enjoy the site.
+
+Run the following in the Site Directory
+
+ .. code-block:: bash
+
+ $ python manage.py test
+
+.. note::
+ Please be aware that we want to run a development instance of mailman you need to stop the stable one first and the tests will open it's own mailman temporily.
+
+Accessing the REST Client for Testing
+-------------------------------------
+
+If you want to access the Functions, which we use in the views, directly feel free to run the following block of code within a Shell which does have it's current Directory within the Django Site Directory.
+
+ .. code-block:: python
+
+ from settings import API_USER, API_PASS
+ from mailman.client import Client
+ c = Client('http://localhost:8001/3.0', API_USER, API_PASS)
+ #DEBUG: Python Session