1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/z-push_ynh.git synced 2024-09-03 18:05:58 +02:00

Fix DOMAIN arguments

This commit is contained in:
Yalh 2019-01-27 04:37:16 +01:00
parent 9d2a7a9543
commit 3b77b35b82
2 changed files with 8 additions and 8 deletions

View file

@ -29,10 +29,10 @@
"en": "Choose a domain for Z-push ActiveSync", "en": "Choose a domain for Z-push ActiveSync",
"fr": "Choisissez un domaine pour Z-push ActiveSync" "fr": "Choisissez un domaine pour Z-push ActiveSync"
}, },
"example": "example.com", "example": "mail.example.com",
"help": { "help": {
"en": "Z-push will be available at domain/Microsoft-Server-ActiveSync.", "en": "Z-push ActiveSync will be available at domain/Microsoft-Server-ActiveSync.",
"fr": "Z-push sera disponible à l'adresse domaine/Microsoft-Server-ActiveSync." "fr": "Z-push ActiveSync sera disponible à l'adresse domaine/Microsoft-Server-ActiveSync."
} }
}, },
{ {
@ -42,10 +42,10 @@
"en": "Choose a domain for Z-push Autodiscover", "en": "Choose a domain for Z-push Autodiscover",
"fr": "Choisissez un domaine pour Z-push Autodiscover" "fr": "Choisissez un domaine pour Z-push Autodiscover"
}, },
"example": "example.com", "example": "autodiscover.example.com",
"help": { "help": {
"en": "Z-push will be available at domain/Microsoft-Server-Autodiscover.", "en": "Z-push Autodiscover will be available at domain/AutoDiscover/AutoDiscover.xml. Better to use autodiscover.example.org.",
"fr": "Z-push sera disponible à l'adresse domaine/Microsoft-Server-Autodiscover." "fr": "Z-push Autodiscover sera disponible à l'adresse domaine/AutoDiscover/AutoDiscover.xml. Il est préférable d'utiliser le nom de domaine autodiscover.example.org."
} }
} }
] ]

View file

@ -24,8 +24,8 @@ ynh_abort_if_errors
# RETRIEVE ARGUMENTS FROM THE MANIFEST # RETRIEVE ARGUMENTS FROM THE MANIFEST
#================================================= #=================================================
domain_activesync=$YNH_APP_ARG_DOMAIN domain_activesync=$YNH_APP_ARG_DOMAIN_ACTIVESYNC
domain_autodiscover=$YNH_APP_ARG_DOMAIN domain_autodiscover=$YNH_APP_ARG_DOMAIN_AUTODISCOVER
path_url_activesync="/Microsoft-Server-ActiveSync" path_url_activesync="/Microsoft-Server-ActiveSync"
path_url_autodiscover1="/AutoDiscover" path_url_autodiscover1="/AutoDiscover"
path_url_autodiscover2="/Autodiscover" path_url_autodiscover2="/Autodiscover"