Полезная информация

Пользователи не любят читать документацию. Станьте оригинальным, будьте не как все. Ознакомьтесь с нашей базой знаний.

№103-04-2005 18:11:22

Unghost
Призрак-админ
 
Группа: Administrators
Откуда: Moscow, Russia
Зарегистрирован: 08-10-2004
Сообщений: 11771

Автоматическая настройка учетных записей

1) Разворачиваете Thunderbird в какую-либо папку.
2) В папку defaults\isp\ кладете файл с расширением .rdf (например myisp.rdf). Образцы файлов приведены ниже, значения и параметры надо разумеется ввести те, которые использует ваш провайдер.

Пример для POP3:

Выделить код

Код:

<?xml version="1.0"?>
<RDF:RDF
    xmlns:NC="http://home.netscape.com/NC-rdf#"
    xmlns:RDF="http://www.w3.org/1999/02/22-rdf-syntax-ns#">

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

        <!-- server info -->
        <NC:incomingServer>
          <NC:nsIMsgIncomingServer>
            <NC:prettyName>Gmail</NC:prettyName>
            <NC:hostName>smtp.gmail.com</NC:hostName>
            <NC:biffMinutes>15</NC:biffMinutes>
            <NC:type>pop3</NC:type>
            <NC:port>587</NC:port>
            <NC:loginAtStartup>true</NC:loginAtStartup>
            <NC:isSecure>true</NC:isSecure>
            <NC:username>bob</NC:username>
            <NC:rememberPassword>true</NC:rememberPassword>
            <NC:ServerType-pop3>
              <NC:nsIPopIncomingServer>
                <NC:leaveMessagesOnServer>false</NC:leaveMessagesOnServer>
                <NC:deleteMailLeftOnServer>true</NC:deleteMailLeftOnServer>
              </NC:nsIPopIncomingServer>
            </NC:ServerType-pop3>
          </NC:nsIMsgIncomingServer>
        </NC:incomingServer>

        <!-- identity defaults -->
        <NC:identity>
          <NC:nsIMsgIdentity>
            <NC:composeHtml>false</NC:composeHtml>
            <NC:bccSelf>true</NC:bccSelf>
            <NC:bccList>bob@gmail.com</NC:bccList>
            <NC:organization>Mozilla.ru</NC:organization>
          </NC:nsIMsgIdentity>
        </NC:identity>
        
        <!-- smtp defaults -->
        <NC:smtp>
           <NC:nsISmtpServer>
           <NC:hostname>smtp.uio.no</NC:hostname>
           <NC:port>587</NC:port>
           <NC:trySSL>2</NC:trySSL>
           </NC:nsISmtpServer>
        </NC:smtp>
        
        <NC:smtpRequiresUsername>true</NC:smtpRequiresUsername>
        <NC:smtpCreateNewServer>true</NC:smtpCreateNewServer>
        <NC:smtpUsePreferredServer>true</NC:smtpUsePreferredServer>

        <!-- other options... see http://www.mozilla.org/mailnews/?? -->
 
        <NC:wizardSkipPanels>true</NC:wizardSkipPanels>
        <NC:wizardShortName>Gmail</NC:wizardShortName>
        <NC:wizardLongName>Gmail</NC:wizardLongName>
        <NC:wizardPromote>true</NC:wizardPromote>
        <NC:wizardShow>true</NC:wizardShow>
        <NC:emailProviderName>Gmail</NC:emailProviderName>
        <NC:sampleEmail>username@gmail.com</NC:sampleEmail>
        <NC:sampleUserName>username</NC:sampleUserName>
        <NC:emailIDDescription>user name</NC:emailIDDescription>
        <NC:emailIDFieldTitle>User Name:</NC:emailIDFieldTitle>
        <NC:showServerDetailsOnWizardSummary>false</NC:showServerDetailsOnWizardSummary> 

      </NC:nsIMsgAccount>
    </NC:providers>
  </RDF:Description>

</RDF:RDF>

Пример для IMAP:

Выделить код

Код:

<?xml version="1.0"?>
<RDF:RDF
xmlns:NC="http://home.netscape.com/NC-rdf#"
xmlns:RDF="http://www.w3.org/1999/02/22-rdf-syntax-ns#">

<RDF:Description about="NC:ispinfo">
<NC:providers>
<NC:nsIMsgAccount about="domain:ulrik.uio.no">

<!-- server info -->
<NC:incomingServer>
  <NC:nsIMsgIncomingServer>
    <NC:prettyName>UiO</NC:prettyName>
    <NC:hostName>imap.uio.no</NC:hostName>
    <NC:biffMinutes>15</NC:biffMinutes>
    <NC:type>imap</NC:type>
    <NC:port>993</NC:port>
    <NC:loginAtStartup>true</NC:loginAtStartup>
    <NC:isSecure>true</NC:isSecure>
    <NC:ServerType-imap>
    <NC:nsIImapIncomingServer>
      <NC:maximumConnectionsNumber>2</NC:maximumConnectionsNumber>
      <NC:serverDirectory>INBOX.</NC:serverDirectory>
<!--  <NC:namespace.personal>INBOX.</NC:namespace.personal>  -->
      <NC:personalNamespace>"INBOX."</NC:personalNamespace>
      <NC:usingSubscription>0</NC:usingSubscription>
      <NC:emptyTrashOnExit>1</NC:emptyTrashOnExit>
      <NC:cleanupInboxOnExit>1</NC:cleanupInboxOnExit>
      <NC:manageMailAccountUrl>http://www.statsvitenskap.uio.no/manual/</NC:manageMailAccountUrl>
    </NC:nsIImapIncomingServer>
    </NC:ServerType-imap>
  </NC:nsIMsgIncomingServer>
</NC:incomingServer>

<!-- identity defaults -->
<NC:identity>
  <NC:nsIMsgIdentity>
    <NC:composeHtml>false</NC:composeHtml>
    <!-- <NC:forwardMessageMode>2</forwardMessageMode> -->
    <NC:bccSelf>false</NC:bccSelf>
    <NC:organization>Universitetet i Oslo</NC:organization>
  </NC:nsIMsgIdentity>
</NC:identity>


<!-- smtp defaults -->
<NC:smtp>
  <NC:nsISmtpServer>
    <NC:hostname>smtp.uio.no</NC:hostname>
    <NC:port>587</NC:port>
    <NC:trySSL>2</NC:trySSL>
  </NC:nsISmtpServer>
</NC:smtp>

<NC:smtpRequiresUsername>true</NC:smtpRequiresUsername>
<NC:smtpCreateNewServer>true</NC:smtpCreateNewServer>
<NC:smtpUsePreferredServer>true</NC:smtpUsePreferredServer>

<NC:wizardSkipPanels>true</NC:wizardSkipPanels>
<NC:wizardShortName>UiO hjemmebruker</NC:wizardShortName>
<NC:wizardLongName>UiO hjemmebruker</NC:wizardLongName>
<NC:wizardShow>true</NC:wizardShow>
<NC:wizardPromote>true</NC:wizardPromote>
<NC:emailProviderName>UiO</NC:emailProviderName>
<NC:sampleEmail>username@ulrik.uio.no</NC:sampleEmail>
<NC:sampleUserName>username</NC:sampleUserName>
<NC:emailIDDescription>username</NC:emailIDDescription>
<NC:emailIDFieldTitle>User Name</NC:emailIDFieldTitle>
<NC:showServerDetailsOnWizardSummary>true</NC:showServerDetailsOnWizardSummary>
</NC:nsIMsgAccount>
</NC:providers>
</RDF:Description>

</RDF:RDF>

Еще кое-какие примеры приведены по адресу http://lxr.mozilla.org/seamonkey/source/mailnews/base/ispdata

4) Запускаете Thunderbird и выбираете в Мастере Учетных Записей пункт, указанный в новом файле в параметре <NC:wizardShortName> (в вышеприведенном примере это Gmail). Вам надо будет только ввести имя и почтовый адрес. Все остальные параметры берутся из файла.

Все это разумеется работает и в Mozilla Mail.


Do not meddle in the affairs of Wizards, for they are subtle and quick to anger.

Отсутствует

 

Board footer

Powered by PunBB
Modified by Mozilla Russia
Copyright © 2004–2020 Mozilla Russia GitHub mark
Язык отображения форума: [Русский] [English]