blob: 97a5d244d7c0407ba7740cb6739fb39ebcad225b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
|
<?xml version="1.0"?>
<!-- This Source Code Form is subject to the terms of the Mozilla Public
- License, v. 2.0. If a copy of the MPL was not distributed with this
- file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
<!DOCTYPE RDF>
<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>
<!-- Gmail IMAP access -->
<NC:nsIMsgAccount about="domain:gmail.com?type=imap">
<!-- IMAP server info -->
<NC:incomingServer>
<NC:nsIMsgIncomingServer>
<NC:prettyName>Gmail</NC:prettyName>
<NC:hostName>imap.gmail.com</NC:hostName>
<NC:type>imap</NC:type>
<NC:ServerType-imap>
<NC:nsIImapIncomingServer>
<NC:usingSubscription>false</NC:usingSubscription>
<!-- IMAP delete model: "remove it immediately". -->
<NC:deleteModel>2</NC:deleteModel>
<NC:trashFolderName>[Gmail]/Trash</NC:trashFolderName>
</NC:nsIImapIncomingServer>
</NC:ServerType-imap>
<NC:loginAtStartUp>true</NC:loginAtStartUp>
<NC:port>993</NC:port>
<NC:socketType>3</NC:socketType>
</NC:nsIMsgIncomingServer>
</NC:incomingServer>
<!-- SMTP server info -->
<NC:smtp>
<NC:nsISmtpServer>
<NC:hostname>smtp.gmail.com</NC:hostname>
<NC:port>587</NC:port>
<NC:trySSL>2</NC:trySSL>
<NC:description>Gmail SMTP</NC:description>
</NC:nsISmtpServer>
</NC:smtp>
<NC:smtpRequiresUsername>true</NC:smtpRequiresUsername>
<NC:smtpCreateNewServer>true</NC:smtpCreateNewServer>
<NC:smtpUsePreferredServer>true</NC:smtpUsePreferredServer>
<!-- identity defaults -->
<NC:identity>
<NC:nsIMsgIdentity>
<!-- Don't store sent mail in a Sent folder, as Gmail will show it
in [Gmail]/Sent Mail anyway. -->
<NC:doFcc>false</NC:doFcc>
<NC:FccFolder>[Gmail]/Sent Mail</NC:FccFolder>
<NC:DraftFolder>[Gmail]/Drafts</NC:DraftFolder>
</NC:nsIMsgIdentity>
</NC:identity>
<!-- other options -->
<NC:wizardSkipPanels>true</NC:wizardSkipPanels>
<NC:wizardShortName>Gmail</NC:wizardShortName>
<NC:wizardLongName>Gmail IMAP</NC:wizardLongName>
<NC:wizardLongNameAccesskey>M</NC:wizardLongNameAccesskey>
<NC:wizardShow>true</NC:wizardShow>
<NC:wizardPromote>true</NC:wizardPromote>
<NC:emailProviderName>Gmail</NC:emailProviderName>
<NC:sampleEmail>example@gmail.com</NC:sampleEmail>
<NC:sampleUserName>example</NC:sampleUserName>
<NC:emailIDDescription>Gmail Username:</NC:emailIDDescription>
<NC:showServerDetailsOnWizardSummary>true</NC:showServerDetailsOnWizardSummary>
</NC:nsIMsgAccount>
<NC:nsIMsgAccount about="domain:gmail.com?type=pop3">
<!-- pop3 server info -->
<NC:incomingServer>
<NC:nsIMsgIncomingServer>
<NC:prettyName>Gmail</NC:prettyName>
<NC:hostName>pop.gmail.com</NC:hostName>
<NC:type>pop3</NC:type>
<NC:ServerType-pop3>
<NC:nsIPopIncomingServer>
<NC:leaveMessagesOnServer>true</NC:leaveMessagesOnServer>
<NC:deleteMailLeftOnServer>false</NC:deleteMailLeftOnServer>
</NC:nsIPopIncomingServer>
</NC:ServerType-pop3>
<NC:loginAtStartUp>true</NC:loginAtStartUp>
<NC:downloadOnBiff>true</NC:downloadOnBiff>
<NC:port>995</NC:port>
<NC:socketType>3</NC:socketType>
</NC:nsIMsgIncomingServer>
</NC:incomingServer>
<!-- smtp server info -->
<NC:smtp>
<NC:nsISmtpServer>
<NC:hostname>smtp.gmail.com</NC:hostname>
<NC:port>587</NC:port>
<NC:trySSL>2</NC:trySSL>
<NC:description>Gmail</NC:description>
</NC:nsISmtpServer>
</NC:smtp>
<NC:smtpRequiresUsername>true</NC:smtpRequiresUsername>
<NC:smtpCreateNewServer>true</NC:smtpCreateNewServer>
<NC:smtpUsePreferredServer>true</NC:smtpUsePreferredServer>
<!-- identity defaults -->
<NC:identity>
<NC:nsIMsgIdentity>
</NC:nsIMsgIdentity>
</NC:identity>
<!-- other options -->
<NC:wizardSkipPanels>true</NC:wizardSkipPanels>
<NC:wizardShortName>Gmail</NC:wizardShortName>
<NC:wizardLongName>Gmail POP</NC:wizardLongName>
<NC:wizardLongNameAccesskey>G</NC:wizardLongNameAccesskey>
<NC:wizardShow>true</NC:wizardShow>
<NC:wizardPromote>true</NC:wizardPromote>
<NC:emailProviderName>Gmail</NC:emailProviderName>
<NC:sampleEmail>example@gmail.com</NC:sampleEmail>
<NC:sampleUserName>example</NC:sampleUserName>
<NC:emailIDDescription>Gmail Username:</NC:emailIDDescription>
<NC:showServerDetailsOnWizardSummary>true</NC:showServerDetailsOnWizardSummary>
</NC:nsIMsgAccount>
</NC:providers>
</RDF:Description>
</RDF:RDF>
|