change Kopano Webapp Manual URL
-
Hi,
I would like to change the webapp manual URL to a corporate website with translated content.
Therefore I thought it is possible to change this variable in the config.php:define("PLUGIN_WEBAPPMANUAL_URL", "https://ticketsystem.company.at/help/de-de/58-kopano-mails-termine-kontakte/");
However, the webapp clients add a ‘\mail.html’ to this URL, which results in a “page not found”.
Then I checked out this file:
/usr/share/kopano-webapp/client/kopano.jsand in line 3263 I changed mail: “mail.html” to mail: ""
to make it work.
However I don’t know if that has any side effect and it’s not update persistent either.Why is it possible to set this variable in the config.php if it doesn’t work in the end?
Cheers,
Roland. -
I changed the URL to this:
define("PLUGIN_WEBAPPMANUAL_URL", "https://ticketsystem.company.at/help/de-de/58-kopano-mails-termine-kontakte/#");
as a work around without client changes.
However, this could be handled much better. ;-)
-
Hi @rgsell,
looking at the deployed functionality it looks like it wants to link to mail.html when someone is within the mail context and link to eg contacts.html when the user is within the contacts context.
So the current implementation tries to show the user the most relevant part of the documentation, but at the expense that alternative documentation locations would need to follow the same overall structure as the Kopano provided one.
-
@fbartels Ah, that actually makes sense. :-) Thanks for the clarification.