initial commit of file from CVS for smeserver-autodiscover on Sat Sep 7 20:08:09 AEST 2024

This commit is contained in:
Trevor Batley
2024-09-07 20:08:09 +10:00
parent 9379997240
commit d6803694bc
35 changed files with 403 additions and 2 deletions

View File

@@ -0,0 +1,22 @@
{
# <!-- A page where the ISP describes the configuration.
# This is purely informational and currently mainly for
# maintenance of the files and not used by the client at all.
# Note that we do not necessarily use exactly the config suggested
# by the ISP, e.g. when they don't recommend SSL, but it's available,
# we will configure SSL.
# The text content should contains a description in the native
# language of the ISP (customers), and a short English description,
# mostly for us.
# -->
$docpath=$autodiscover{'DocURL'} || "undef";
return "" if $docpath eq "undef";
$OUT=<<"string_ending_delimiter";
<documentation url="http://<?php echo \$_SERVER['SERVER_NAME']; ?>/$docpath">
<descr lang="en">Configure Thunderbird 2.0 for IMAP</descr>
<descr lang="de">Thunderbird 2.0 mit IMAP konfigurieren</descr>
<descr lang="fr">Configuration de Thunderbird 2.0 avec IMAP</descr>
</documentation>
string_ending_delimiter
}