This repository has been archived by the owner on May 9, 2024. It is now read-only.
forked from YunoHostPlugins-Testing/rainloop_ynh
-
Notifications
You must be signed in to change notification settings - Fork 12
/
manifest.json
81 lines (81 loc) · 1.92 KB
/
manifest.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "Rainloop",
"id": "rainloop",
"packaging_format": 1,
"description": {
"en": "Lightweight multi-account webmail",
"fr": "Webmail léger multi-comptes"
},
"version": "1.17.0~ynh1",
"url": "https://www.rainloop.net/",
"upstream": {
"license": "AGPL-3.0-or-later",
"website": "https://www.rainloop.net/",
"demo": "https://mail.rainloop.net/",
"admindoc": "https://www.rainloop.net/docs/configuration/",
"code": "https://github.com/RainLoop/rainloop-webmail"
},
"license": "AGPL-3.0-or-later",
"maintainer": {
"name": "scith, Djip007, polytan02"
},
"requirements": {
"yunohost": ">= 11.0.9"
},
"multi_instance": true,
"services": [
"nginx",
"php7.4-fpm",
"mysql"
],
"arguments": {
"install" : [
{
"name": "warning",
"type": "display_text",
"ask": {
"en": "Rainloop is effectively unmaintained and its source code contains a security flaw (patched here). Installation is discouraged.",
"fr": "Rainloop n'est de facto plus maintenue, et son code source contient une faille de sécuritée (corrigée ici). Son installation est déconseillée."
}
},
{
"name": "domain",
"type": "domain"
},
{
"name": "path",
"type": "path",
"example": "/rainloop",
"default": "/rainloop"
},
{
"name": "is_public",
"type": "boolean",
"default": false
},
{
"name": "password",
"type": "password"
},
{
"name": "ldap",
"type": "boolean",
"ask": {
"en": "Do you want to add YunoHost users to the recipients suggestions?",
"fr": "Souhaitez-vous ajouter les utilisateurs YunoHost dans les suggestions de destinataires ?"
},
"default": true
},
{
"name": "language",
"type": "string",
"ask": {
"en": "Select default language",
"fr": "Definir la langue par defaut"
},
"choices": ["de", "en", "es", "fr", "it", "pt"],
"default": "en"
}
]
}
}