Changing texts, since ownership changed

This commit is contained in:
ohartl 2016-04-30 00:23:55 +02:00
parent a5ec3e879e
commit 25ff5bf759
3 changed files with 30 additions and 9 deletions

View file

@ -1,12 +1,13 @@
# WebMUM - Web Mailserver User Manager
[![Build Status](https://travis-ci.org/ThomasLeister/webmum.svg)](https://travis-ci.org/ThomasLeister/webmum)
[![Build Status](https://travis-ci.org/ohartl/webmum.svg)](https://travis-ci.org/ohartl/webmum)
***WebMUM is not compatible with the [new Mailserver-HowTo](https://thomas-leister.de/allgemein/sicherer-mailserver-dovecot-postfix-virtuellen-benutzern-mysql-ubuntu-server-xenial/)!***
***WebMUM is not compatible with the [new Mailserver-HowTo](https://thomas-leister.de/allgemein/sicherer-mailserver-dovecot-postfix-virtuellen-benutzern-mysql-ubuntu-server-xenial/)!,*** but we will try to implement the changes for the release of version 1.0.0.
WebMUM is a web frontend based on PHP which helps you to manage e-mail server via MySQL. This software is licensed under the MIT license.
Lead and started by [ThomasLeister](https://github.com/ThomasLeister), a passionate [blogger](https://thomas-leister.de/) specialized topics like linux, open-source, servers etc., this project is developed together with [ohartl](https://github.com/ohartl) and the [contributes](https://github.com/ThomasLeister/webmum/graphs/contributors).
This project is currently developed and managed by [ohartl](https://github.com/ohartl) and together with the [contributes](https://github.com/ohartl/webmum/graphs/contributors).
Founder of this project is [ThomasLeister](https://github.com/ThomasLeister), a passionate [blogger](https://thomas-leister.de/) specialized topics like linux, open-source, servers etc.
Feel free to send in issues and pull requests, your support for this project is much appreciated!
@ -16,7 +17,7 @@ Feel free to send in issues and pull requests, your support for this project is
Clone the WebMUM Repository to your webserver's virtual host root directory:
```bash
git clone https://github.com/ThomasLeister/webmum
git clone https://github.com/ohartl/webmum
```
A update / upgrade guide can be found [here](#update--upgrade-webmum).
@ -316,7 +317,7 @@ The input for addresses can be separated by `,`, `;`, `:`, `|`, `newline` and co
## Update / Upgrade WebMUM
If you cloned WebMUM into your filesystem via `git clone https://github.com/ThomasLeister/webmum`:
If you cloned WebMUM into your filesystem via `git clone https://github.com/ohartl/webmum`:
```bash
git stash

View file

@ -325,7 +325,24 @@ body {
color: grey;
}
#footer ul {
list-style: none;
}
#footer li {
display: inline-block;
}
#footer li:not(:last-child):after {
content: '|';
color: #444444;
padding: 0 6px;
}
#footer a {
text-decoration: none;
color: grey;
color: #888888;
}
#footer a:hover {
color: #666666;
}

View file

@ -44,8 +44,11 @@
</div>
<div id="footer">
Software by Thomas Leister and contributors<br/> WebMUM on GitHub:
<a href="https://git.io/v2fQg">https://github.com/ThomasLeister/webmum</a> | License: MIT
<ul>
<li>Powered by WebMUM (<a target="_blank" href="https://git.io/vwXhh">https://github.com/ohartl/webmum</a>).</li>
<li>Developed by Oliver Hartl, Thomas Leister and contributors.</li>
<li>License: MIT</li>
</ul>
</div>
</body>
</html>