Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Opened 7 years ago

Closed 7 years ago

#476 closed task (fixed)

Let Thunderbird autoconfiguration prefer SSL over STARTTLS

Reported by: landauf Owned by: landauf
Priority: minor Milestone: IT: Server Setup
Component: IT Version:
Keywords: Cc:
Referenced By: References:

Change History (3)

comment:1 Changed 7 years ago by landauf

  • Status changed from new to assigned

comment:2 Changed 7 years ago by landauf

See these resources: https://wiki.mozilla.org/Thunderbird:Autoconfiguration https://wiki.mozilla.org/Thunderbird:Autoconfiguration:ConfigFileFormat

Edit /etc/apache2/sites-available/www.orxonox_secure.conf and add the following line:

    Alias /.well-known /var/www/well-known

Create new file /var/www/well-known/autoconfig/mail/config-v1.1.xml and add following configuration:

<?xml version="1.0"?>
<clientConfig version="1.1">
        <emailProvider id="orxonox.net">
                <domain>orxonox.net</domain>
                <!--displayName>Orxonox Mail</displayName>
                <displayShortName>Orxonox</displayShortName-->

                <incomingServer type="imap">
                        <hostname>mail.orxonox.net</hostname>
                        <port>993</port>
                        <socketType>SSL</socketType>
                        <username>%EMAILLOCALPART%</username>
                        <authentication>password-cleartext</authentication>
                </incomingServer>
                <incomingServer type="imap">
                        <hostname>mail.orxonox.net</hostname>
                        <port>143</port>
                        <socketType>STARTTLS</socketType>
                        <username>%EMAILLOCALPART%</username>
                        <authentication>password-cleartext</authentication>
                </incomingServer>


                <outgoingServer type="smtp">
                        <hostname>mail.orxonox.net</hostname>
                        <port>465</port>
                        <socketType>SSL</socketType>
                        <username>%EMAILLOCALPART%</username>
                        <authentication>password-cleartext</authentication>
                </outgoingServer>
                <outgoingServer type="smtp">
                        <hostname>mail.orxonox.net</hostname>
                        <port>587</port>
                        <socketType>STARTTLS</socketType>
                        <username>%EMAILLOCALPART%</username>
                        <authentication>password-cleartext</authentication>
                </outgoingServer>
        </emailProvider>
</clientConfig>

Restart apache2.

comment:3 Changed 7 years ago by landauf

  • Resolution set to fixed
  • Status changed from assigned to closed
Note: See TracTickets for help on using tickets.