Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit a186e031 authored by Florent VINCENT's avatar Florent VINCENT 👾
Browse files

Merge branch '26.0.8' into 'master'

nextcloud 26.0.8

See merge request !95
parents 88f15850 6d86efca
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -125,6 +125,7 @@ CNAME | autoconfig.yourdomain.com | mail.yourdomain.com |
CNAME                 |  autodiscover.yourdomain.com  |  mail.yourdomain.com  |  -
CNAME                 |  spam.yourdomain.com          |  mail.yourdomain.com  |  -
CNAME                 |  welcome.yourdomain.com       |  mail.yourdomain.com  |  -
CNAME                 |  mta-sts.yourdomain.com       |  mail.yourdomain.com  |  -
=================================================================================================================================
=================================================================================================================================

+10 −0
Original line number Diff line number Diff line
<?xml version="1.0" encoding="utf-8"?>
<Autodiscover xmlns="http://schemas.microsoft.com/exchange/autodiscover/responseschema/2006">
    <Response>
        <Error Time="{{ time }}" Id="{{ id }}">
            <ErrorCode>601</ErrorCode>
            <Message>Provider is not available</Message>
            <DebugData />
        </Error>
    </Response>
</Autodiscover>
+19 −0
Original line number Diff line number Diff line
<?xml version="1.0" encoding="utf-8" ?>
<Autodiscover xmlns="http://schemas.microsoft.com/exchange/autodiscover/responseschema/2006">
  <Response xmlns="http://schemas.microsoft.com/exchange/autodiscover/mobilesync/responseschema/2006">
    <Culture>en:en</Culture>
    <User>
      <DisplayName>{{ display_name }}</DisplayName>
      <EMailAddress>{{ email_address }}</EMailAddress>
    </User>
    <Action>
      <Settings>
        <Server>
        <Type>MobileSync</Type>
        <Url>https://example.org/TODOmobilesyncURL</Url>
        <Name>TODO: Mobile sync name</Name>
        </Server>
      </Settings>
    </Action>
  </Response>
</Autodiscover>
+32 −0
Original line number Diff line number Diff line
<?xml version="1.0" encoding="utf-8" ?>
<Autodiscover xmlns="http://schemas.microsoft.com/exchange/autodiscover/responseschema/2006">
    <Response xmlns="http://schemas.microsoft.com/exchange/autodiscover/outlook/responseschema/2006a">
        <Account>
            <AccountType>email</AccountType>
            <Action>settings</Action>

            <Protocol>
                <Type>IMAP</Type>
                <Server>{{ imap_hostname }}</Server>
                <Port>993</Port>
                <DomainRequired>on</DomainRequired>
                <DomainName>{{ domain }}</DomainName>
                <SPA>off</SPA>
                <SSL>on</SSL>
                <AuthRequired>on</AuthRequired>
            </Protocol>

            <Protocol>
                <Type>SMTP</Type>
                <Server>{{ smtp_hostname }}</Server>
                <Port>587</Port>
                <DomainRequired>on</DomainRequired>
                <DomainName>{{ domain }}</DomainName>
                <SPA>off</SPA>
                <SSL>on</SSL>
                <AuthRequired>on</AuthRequired>
            </Protocol>

        </Account>
    </Response>
</Autodiscover>
+33 −0
Original line number Diff line number Diff line
<?xml version="1.0" encoding="UTF-8"?>

<clientConfig version="1.1">
    <emailProvider id="{{ domain }}">
        <domain>{{ domain }}</domain>
        <displayName>{{ display_name }}</displayName>
        <displayShortName>%EMAILLOCALPART%</displayShortName>

        <incomingServer type="imap">
            <hostname>{{ imap_hostname }}</hostname>
            <port>993</port>
            <socketType>SSL</socketType>
            <authentication>password-cleartext</authentication>
            <username>%EMAILADDRESS%</username>
        </incomingServer>
        <incomingServer type="imap">
            <hostname>{{ imap_hostname }}</hostname>
            <port>143</port>
            <socketType>STARTTLS</socketType>
            <authentication>password-cleartext</authentication>
            <username>%EMAILADDRESS%</username>
        </incomingServer>

        <outgoingServer type="smtp">
            <hostname>{{ smtp_hostname }}</hostname>
            <port>587</port>
            <socketType>STARTTLS</socketType>
            <authentication>password-cleartext</authentication>
            <username>%EMAILADDRESS%</username>
        </outgoingServer>

    </emailProvider>
</clientConfig>
Loading