Configuração automática da conta de e-mail no Thunderbird 2

0

Estou tentando configurar automaticamente as contas de e-mail do Thunderbird que estão em meu domínio e em seus subdomínios (por exemplo, [email protected], [email protected]). Cliente de e-mail não tem acesso à internet e por causa do complemento necessário eu tenho que usar o Thunderbird 2.0.0.6.

Abaixo estão meus arquivos de configuração:
1. rdf (baseado no link ) - adiciona tipo de conta para escolher no configuração da conta, mas apenas para um domínio
2. xml ( link ) - não funciona (como provavelmente deve - é anunciado para ser incluído no Thunderbird 3 e mais recente)

Minhas perguntas:
existe uma maneira de definir subdomínios no arquivo .rdf
- é possível fazer a autoconfiguração de xml funcionar com o Thunderbird 2

Este é o exemplo rdf ::               

  <RDF:Description about="NC:ispinfo">
    <NC:providers>
      <NC:nsIMsgAccount about="domain:my.example.com">

        <NC:incomingServer>
          <NC:nsIMsgIncomingServer>
            <NC:hostName>mail.example.com</NC:hostName>

            <NC:type>imap</NC:type>
            <NC:ServerType-imap>
                <NC:nsIImapIncomingServer>
                    <NC:cleanupInboxOnExit>true</NC:cleanupInboxOnExit>
                </NC:nsIImapIncomingServer>
            </NC:ServerType-imap>
            <NC:loginAtStartUp>true</NC:loginAtStartUp>
            <NC:downloadOnBiff>true</NC:downloadOnBiff>
            <NC:rememberPassword>false</NC:rememberPassword>
            <NC:port>993</NC:port>
            <NC:socketType>3</NC:socketType>
          </NC:nsIMsgIncomingServer>
        </NC:incomingServer>

        <NC:smtp>
          <NC:nsISmtpServer>
            <NC:hostname>mail.example.com</NC:hostname>
            <NC:port>465</NC:port>
            <NC:trySSL>2</NC:trySSL>
            <NC:description>MyMail</NC:description>
          </NC:nsISmtpServer>
        </NC:smtp>
        <NC:smtpRequiresUsername>true</NC:smtpRequiresUsername>
        <NC:smtpCreateNewServer>true</NC:smtpCreateNewServer>
        <NC:smtpUsePreferredServer>true</NC:smtpUsePreferredServer>

        <NC:identity>
          <NC:nsIMsgIdentity>
          </NC:nsIMsgIdentity>
        </NC:identity>

        <NC:wizardSkipPanels>true</NC:wizardSkipPanels>
        <NC:wizardShortName>MyMail</NC:wizardShortName>
        <NC:wizardLongName>MyMailExample</NC:wizardLongName>
        <NC:wizardShow>true</NC:wizardShow>
        <NC:wizardPromote>true</NC:wizardPromote>
        <NC:emailProviderName>MyMail</NC:emailProviderName>
        <NC:showServerDetailsOnWizardSummary>true</NC:showServerDetailsOnWizardSummary>
      </NC:nsIMsgAccount>
    </NC:providers>
  </RDF:Description>
</RDF:RDF>

E este é o meu xml:                   

      <domain>my.example.com</domain>
      <domain>sub1.my.example.com</domain>
      <domain>sub2.my.example.com</domain>

      <displayName>MyMailExample</displayName>
      <displayShortName>MyMail</displayShortName>

      <incomingServer type="imap">
         <hostname>mail.example.com</hostname>
         <port>993</port>
         <socketType>SSL</socketType>
         <username>%EMAILADDRESS%</username>
         <authentication>password-cleartext</authentication>
      </incomingServer>

      <outgoingServer type="smtp">
         <hostname>mail.example.com</hostname>
         <port>465</port>
         <socketType>SSL</socketType>
         <username>%EMAILADDRESS%</username>
         <authentication>password-cleartext</authentication>
      </outgoingServer>

    </emailProvider>
</clientConfig>
    
por jacob_w 02.09.2017 / 20:25

0 respostas