source: trunk/thunderbird/modulos/sources/isp/example-isp.rdf @ 23

Last change on this file since 23 was 23, checked in by sebas, 17 years ago

Modulo para facilitar la creacion de la cuenta de mail de cta

File size: 2.1 KB
Line 
1<?xml version="1.0"?>
2<!DOCTYPE RDF>
3<RDF:RDF
4    xmlns:NC="http://home.netscape.com/NC-rdf#"
5    xmlns:RDF="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
6
7  <RDF:Description about="NC:ispinfo">
8    <NC:providers>
9      <NC:nsIMsgAccount about="domain:cta.org.ar">
10        <!-- imap server info -->
11        <NC:incomingServer>
12          <NC:nsIMsgIncomingServer>
13            <NC:prettyName>CTA</NC:prettyName>
14            <NC:hostName>imaps.redcta.org.ar</NC:hostName>
15            <NC:type>imap</NC:type>
16            <NC:loginAtStartUp>true</NC:loginAtStartUp>
17            <NC:downloadOnBiff>true</NC:downloadOnBiff>
18            <NC:rememberPassword>true</NC:rememberPassword>
19            <NC:port>993</NC:port>
20            <NC:socketType>3</NC:socketType>
21          </NC:nsIMsgIncomingServer>
22        </NC:incomingServer>
23
24        <!-- smtp server info -->
25        <NC:smtp>
26          <NC:nsISmtpServer>
27            <NC:hostname>smtps.redcta.org.ar</NC:hostname>
28            <NC:port>465</NC:port>
29            <NC:trySSL>3</NC:trySSL>
30            <NC:description>servidor smpt-ssl de CTA</NC:description>
31          </NC:nsISmtpServer>
32        </NC:smtp>
33        <NC:smtpUserNameRequiresDomain>true</NC:smtpUserNameRequiresDomain>
34        <NC:smtpRequiresUsername>true</NC:smtpRequiresUsername>
35        <NC:smtpCreateNewServer>true</NC:smtpCreateNewServer>
36        <NC:smtpUsePreferredServer>true</NC:smtpUsePreferredServer>
37
38        <!-- identity defaults -->
39        <NC:identity>
40          <NC:nsIMsgIdentity>
41          </NC:nsIMsgIdentity>
42        </NC:identity>
43
44        <!-- other options -->
45        <NC:wizardSkipPanels>true</NC:wizardSkipPanels>
46        <NC:wizardShortName>CTA</NC:wizardShortName>
47        <NC:wizardLongName>Central de los trabajadores de la Argentina</NC:wizardLongName>
48        <NC:wizardShow>true</NC:wizardShow>
49        <NC:wizardPromote>true</NC:wizardPromote>
50        <NC:emailProviderName>CTA</NC:emailProviderName>
51        <NC:showServerDetailsOnWizardSummary>true</NC:showServerDetailsOnWizardSummary>
52      </NC:nsIMsgAccount>
53    </NC:providers>
54  </RDF:Description>
55</RDF:RDF>
Note: See TracBrowser for help on using the repository browser.