Moved privacy policy

This commit is contained in:
M66B 2019-01-10 13:53:23 +00:00
parent bf9ce3e9df
commit 7e558d01bb
3 changed files with 18 additions and 2 deletions

16
PRIVACY.md Normal file
View File

@ -0,0 +1,16 @@
# FairEmail
*Open source, privacy friendly email app*
## Privacy policy
FairEmail **does not** collect any information.
FairEmail **does not** store data on third party servers.
FairEmail **does not** require unnecessary permissions.
For more information on permissions, see [this FAQ](https://github.com/M66B/open-source-email/blob/master/FAQ.md#user-content-faq1).
FairEmail is 100 % open source.
Copyright © 2018-2019 Marcel Bokhorst.

View File

@ -139,7 +139,7 @@ FairEmail uses:
[GNU General Public License version 3](https://www.gnu.org/licenses/gpl.txt)
Copyright (c) 2018-2019 Marcel Bokhorst. All rights reserved
Copyright © 2018-2019 Marcel Bokhorst. All rights reserved
FairEmail is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by

View File

@ -162,7 +162,7 @@ public class Helper {
static Intent getIntentPrivacy() {
Intent intent = new Intent(Intent.ACTION_VIEW);
intent.setData(Uri.parse("https://email.faircode.eu/privacy/"));
intent.setData(Uri.parse("https://github.com/M66B/open-source-email/blob/master/PRIVACY.md#fairemail"));
return intent;
}