1<?xml version="1.0" encoding="utf-8"?>
2<!-- Copyright (C) 2008 The Android Open Source Project
3
4     Licensed under the Apache License, Version 2.0 (the "License");
5     you may not use this file except in compliance with the License.
6     You may obtain a copy of the License at
7
8          http://www.apache.org/licenses/LICENSE-2.0
9
10     Unless required by applicable law or agreed to in writing, software
11     distributed under the License is distributed on an "AS IS" BASIS,
12     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13     See the License for the specific language governing permissions and
14     limitations under the License.
15-->
16
17    <!--
18        This file contains configuration data for commonly-used email providers.
19
20        ==== CONTENT GUIDELINES ====
21
22        This file should only be used for email providers that are considered "universal"
23        and are appropriate for *all* android platform devices.  These entries must be accessible
24        from all networks.  It should be reasonable for any user to obtain an account on these
25        networks, and test accounts must be easily obtainable.  No entries should be added
26        that are device, product, or carrier-specific.
27
28        Entries that are device, product or carrier-specific should be added as overlays
29        in the appropriate providers_product.xml file.
30
31        ==== FORMAT OF ENTRIES ====
32
33        This file is used to specify providers that we know default settings for
34        so that the user can set up their account by simply entering their email
35        address and password.
36
37        When a user starts this process, the email address is parsed, the domain
38        broken out and used to search this file for a provider. If one is found the
39        provider's settings are used to attempt to connect to the account.
40
41        At this time, the id and label attributes are not used.  However, please include them
42        if you make edits to this file.  id must also be completely unique.  label will be shown
43        to the user when there are multiple options provided for a single domain (not currently
44        supported).
45
46        A provider contains the settings for setting up an email account
47        that ends with the given domain. Domains should be unique within
48        this file. Each provider should have at least one incoming section and
49        one outgoing section. If more than one is specified only the first
50        will be used.
51
52        Valid incoming uri schemes are:
53            imap        IMAP with no transport security.
54            imap+tls+   IMAP with required TLS transport security.
55                            If TLS is not available the connection fails.
56            imap+ssl+   IMAP with required SSL transport security.
57                            If SSL is not available the connection fails.
58
59            pop3        POP3 with no transport security.
60            pop3+tls+   POP3 with required TLS transport security.
61                            If TLS is not available the connection fails.
62            pop3+ssl+   POP3 with required SSL transport security.
63                            If SSL is not available the connection fails.
64
65        Valid outgoing uri schemes are:
66            smtp        SMTP with no transport security.
67            smtp+tls+   SMTP with required TLS transport security.
68                            If TLS is not available the connection fails.
69            smtp+ssl+   SMTP with required SSL transport security.
70                            If SSL is not available the connection fails.
71
72        To the above schemes you may also add "trustallcerts" to indicate that,
73        although link encryption is still required, "non-trusted" certificates may
74        will be excepted.  For example, "imap+ssl+trustallcerts" or
75        "smtp+tls+trustallcerts".  This should only used when necessary, as it
76        could allow a spoofed server to intercept password and mail.
77
78        The URIs must contain all of the information to make a connection,
79        including a port if the service uses a non-default port.  The default
80        ports are as follows:
81            imap        143     pop3        110     smtp        587
82            imap+tls+   143     pop3+tls+   110     smtp+tls+   587
83            imap+ssl+   993     pop3+ssl+   995     smtp+ssl+   465
84
85        ==== DOMAIN PATTERNS ====
86
87        Often times a hosting company will have multiple mail server addresses. Often
88        times used for load balancing or based upon geographical boundaries. In these
89        cases, it would be unwieldy to maintain a list of 2-dozen providers that all
90        point to essentially the same mail server. To alleviate this, domains may
91        contain pattern matching characters that can be used to match user entered
92        domains without knowing the exact domain.
93
94        An asterisk (*) is used to match that part of a domain name that is demarcated
95        by a period (dot); no other characters may appear on either side of an asterisk.
96        Therefore, foo.*.com and *.mail.com are valid, whereas a*.com and foo.c* are not.
97        An asterisk is also not greedy; it only matches a single part of a domain name;
98        therefore, foo.bar.bletch is NOT matched by foo.*; it does, however, match
99        foo.*.* or foo.bar.*.
100
101        The alternate is the wild card character - a '?'. The wild card character
102        matches any single character. This is very useful when the number of characters
103        is known (such as the country code in the domain).
104
105        ==== TEMPLATES ====
106
107        Both the username and uri attributes (for both incoming and outgoing elements)
108        are templates.
109
110        The username attribute is used to supply a template for the username
111        that will be presented to the server. This username is built from a
112        set of variables that are substituted with parts of the user specified
113        email address.
114
115        Valid substitution values for all templates are:
116            $email - the email address the user entered
117            $user - the string before the @ sign in the email address the user entered
118            $domain - the string after the @ sign in the email address the user entered
119
120        The username attribute MUST be specified for the incoming element, so the POP3 or IMAP
121        server can identify the mailbox to be opened.
122
123        The username attribute MAY be the empty string for the outgoing element, but only if the
124        SMTP server supports anonymous transmission (most don't).
125    -->
126
127<providers>
128
129    <!-- Gmail variants -->
130    <provider id="gmail" label="Gmail" domain="gmail.com">
131        <incoming uri="imap+ssl+://imap.gmail.com" username="$email" />
132        <outgoing uri="smtp+ssl+://smtp.gmail.com" username="$email" />
133    </provider>
134    <provider id="googlemail" label="Google Mail" domain="googlemail.com">
135        <incoming uri="imap+ssl+://imap.googlemail.com" username="$email" />
136        <outgoing uri="smtp+ssl+://smtp.googlemail.com" username="$email" />
137    </provider>
138    <provider id="google" label="Google" domain="google.com">
139        <incoming uri="imap+ssl+://imap.gmail.com" username="$email" />
140        <outgoing uri="smtp+ssl+://smtp.gmail.com" username="$email" />
141    </provider>
142    <provider id="android" label="Android" domain="android.com">
143        <incoming uri="imap+ssl+://imap.gmail.com" username="$email" />
144        <outgoing uri="smtp+ssl+://smtp.gmail.com" username="$email" />
145    </provider>
146    <provider id="chromium" label="Chromium" domain="chromium.org" oauth="google">
147        <incoming uri="imap+ssl+://imap.gmail.com" username="$email" />
148        <outgoing uri="smtp+ssl+://smtp.gmail.com" username="$email" />
149    </provider>
150
151    <!-- USA -->
152
153    <provider id="eon" label="EON" domain="nextobject.com">
154        <incoming uri="imap2://imap.everyone.net" username="$email" />
155        <outgoing uri="smtp://smtp.everyone.net" username="$email" />
156    </provider>
157
158    <!-- AOL and variants -->
159    <!-- Note, AOL appears to support SSL on both sides, as well -->
160    <provider id="aim" label="AIM" domain="aim.com">
161        <incoming uri="imap+ssl+://imap.aim.com" label="IMAP" username="$email" />
162        <outgoing uri="smtp+ssl+://smtp.aim.com" username="$email" />
163    </provider>
164    <!-- Note, AOL appears to support SSL on both sides, as well -->
165    <provider id="aol" label="AOL" domain="aol.com">
166        <incoming uri="imap+ssl+://imap.aol.com" label="IMAP" username="$email" />
167        <outgoing uri="smtp+ssl+://smtp.aol.com" username="$email" />
168    </provider>
169
170    <!-- MobileMe and variants -->
171    <provider id="dotmac" label=".Mac" domain="mac.com">
172        <incoming uri="imap+ssl+://mail.mac.com" username="$email" />
173        <outgoing uri="smtp+tls+://smtp.mac.com" username="$email" />
174    </provider>
175    <!-- Note: Mac Mail.app sets IMAP to mail.mac.com, but it's the same server -->
176    <provider id="mobileme" label="MobileMe" domain="me.com">
177        <incoming uri="imap+ssl+://mail.me.com" username="$email" />
178        <outgoing uri="smtp+tls+://smtp.me.com" username="$email" />
179    </provider>
180    <provider id="icloud" label="iCloud" domain="icloud.com">
181        <incoming uri="imap+ssl+://imap.mail.me.com" username="$email" />
182        <outgoing uri="smtp+tls+://smtp.mail.me.com" username="$email" />
183    </provider>
184
185    <!-- Hotmail and variants.  NOTE: These are handled by exchange if available, else POP3. -->
186    <provider id="live1" label="Windows Live Hotmail Plus" domain="live.*">
187        <incoming uri="eas+ssl+://m.hotmail.com"  username="$email" />
188        <outgoing uri="eas+ssl+://m.hotmail.com" username="$email" />
189        <incoming-fallback uri="imap+ssl+://imap-mail.outlook.com" username="$email" />
190        <outgoing-fallback uri="smtp+tls+://smtp-mail.outlook.com" username="$email" />
191    </provider>
192    <provider id="live2" label="Windows Live Hotmail Plus" domain="live.*.*">
193        <incoming uri="eas+ssl+://m.hotmail.com"  username="$email" />
194        <outgoing uri="eas+ssl+://m.hotmail.com" username="$email" />
195        <incoming-fallback uri="imap+ssl+://imap-mail.outlook.com" username="$email" />
196        <outgoing-fallback uri="smtp+tls+://smtp-mail.outlook.com" username="$email" />
197    </provider>
198    <provider id="live3" label="Windows Live Hotmail Plus" domain="*.live.*">
199        <incoming uri="eas+ssl+://m.hotmail.com"  username="$email" />
200        <outgoing uri="eas+ssl+://m.hotmail.com" username="$email" />
201        <incoming-fallback uri="imap+ssl+://imap-mail.outlook.com" username="$email" />
202        <outgoing-fallback uri="smtp+tls+://smtp-mail.outlook.com" username="$email" />
203    </provider>
204    <provider id="hotmail1" label="Windows Live Hotmail Plus" domain="hotmail.*">
205        <incoming uri="eas+ssl+://m.hotmail.com"  username="$email" />
206        <outgoing uri="eas+ssl+://m.hotmail.com" username="$email" />
207        <incoming-fallback uri="imap+ssl+://imap-mail.outlook.com" username="$email" />
208        <outgoing-fallback uri="smtp+tls+://smtp-mail.outlook.com" username="$email" />
209    </provider>
210    <provider id="hotmail2" label="Windows Live Hotmail Plus" domain="hotmail.*.*">
211        <incoming uri="eas+ssl+://m.hotmail.com"  username="$email" />
212        <outgoing uri="eas+ssl+://m.hotmail.com" username="$email" />
213        <incoming-fallback uri="imap+ssl+://imap-mail.outlook.com" username="$email" />
214        <outgoing-fallback uri="smtp+tls+://smtp-mail.outlook.com" username="$email" />
215    </provider>
216    <provider id="hotmail3" label="Windows Live Hotmail Plus" domain="livemail.*">
217        <incoming uri="eas+ssl+://m.hotmail.com"  username="$email" />
218        <outgoing uri="eas+ssl+://m.hotmail.com" username="$email" />
219        <incoming-fallback uri="imap+ssl+://imap-mail.outlook.com" username="$email" />
220        <outgoing-fallback uri="smtp+tls+://smtp-mail.outlook.com" username="$email" />
221    </provider>
222    <provider id="hotmail4" label="Windows Live Hotmail Plus" domain="livemail.*.*">
223        <incoming uri="eas+ssl+://m.hotmail.com"  username="$email" />
224        <outgoing uri="eas+ssl+://m.hotmail.com" username="$email" />
225        <incoming-fallback uri="imap+ssl+://imap-mail.outlook.com" username="$email" />
226        <outgoing-fallback uri="smtp+tls+://smtp-mail.outlook.com" username="$email" />
227    </provider>
228    <provider id="msn" label="Windows Live Hotmail Plus" domain="msn.*">
229        <incoming uri="eas+ssl+://m.hotmail.com"  username="$email" />
230        <outgoing uri="eas+ssl+://m.hotmail.com" username="$email" />
231        <incoming-fallback uri="imap+ssl+://imap-mail.outlook.com" username="$email" />
232        <outgoing-fallback uri="smtp+tls+://smtp-mail.outlook.com" username="$email" />
233    </provider>
234    <provider id="msnhotmail" label="Windows Live Hotmail Plus" domain="msnhotmail.com">
235        <incoming uri="eas+ssl+://m.hotmail.com"  username="$email" />
236        <outgoing uri="eas+ssl+://m.hotmail.com" username="$email" />
237        <incoming-fallback uri="imap+ssl+://imap-mail.outlook.com" username="$email" />
238        <outgoing-fallback uri="smtp+tls+://smtp-mail.outlook.com" username="$email" />
239    </provider>
240        <provider id="outlook" label="Outlook" domain="outlook.com">
241        <incoming uri="eas+ssl+://m.hotmail.com"  username="$email" />
242        <outgoing uri="eas+ssl+://m.hotmail.com" username="$email" />
243            <incoming-fallback uri="imap+ssl+://imap-mail.outlook.com" username="$email" />
244            <outgoing-fallback uri="smtp+tls+://smtp-mail.outlook.com" username="$email" />
245    </provider>
246
247    <!-- Yahoo! Mail variants -->
248    <provider id="yahoo" label="Yahoo!" domain="yahoo.com">
249        <incoming uri="imap+ssl+://android.imap.mail.yahoo.com" username="$email" />
250        <outgoing uri="smtp+ssl+://android.smtp.mail.yahoo.com" username="$email" />
251    </provider>
252    <provider id="rocketmail" label="Yahoo! RocketMail" domain="rocketmail.com">
253        <incoming uri="imap+ssl+://android.imap.mail.yahoo.com" username="$email" />
254        <outgoing uri="smtp+ssl+://android.smtp.mail.yahoo.com" username="$email" />
255    </provider>
256    <provider id="ymail" label="Yahoo!" domain="ymail.com">
257        <incoming uri="imap+ssl+://android.imap.mail.yahoo.com" username="$email" />
258        <outgoing uri="smtp+ssl+://android.smtp.mail.yahoo.com" username="$email" />
259    </provider>
260    <provider id="bellsouth" label="AT&amp;T Bell South" domain="bellsouth.net">
261        <incoming uri="imap+ssl+://android.imap.mail.yahoo.com" username="$email" />
262        <outgoing uri="smtp+ssl+://android.smtp.mail.yahoo.com" username="$email" />
263    </provider>
264    <provider id="att" label="AT&amp;T" domain="att.net">
265        <incoming uri="imap+ssl+://android.imap.mail.yahoo.com" username="$email" />
266        <outgoing uri="smtp+ssl+://android.smtp.mail.yahoo.com" username="$email" />
267    </provider>
268    <provider id="pacbell" label="AT&amp;T Pacific Bell" domain="pacbell.net">
269        <incoming uri="imap+ssl+://android.imap.mail.yahoo.com" username="$email" />
270        <outgoing uri="smtp+ssl+://android.smtp.mail.yahoo.com" username="$email" />
271    </provider>
272    <provider id="sbcglobal" label="AT&amp;T SBC Global" domain="sbcglobal.net">
273        <incoming uri="imap+ssl+://android.imap.mail.yahoo.com" username="$email" />
274        <outgoing uri="smtp+ssl+://android.smtp.mail.yahoo.com" username="$email" />
275    </provider>
276    <provider id="swbell" label="AT&amp;T Southwest Bell" domain="swbell.net">
277        <incoming uri="imap+ssl+://android.imap.mail.yahoo.com" username="$email" />
278        <outgoing uri="smtp+ssl+://android.smtp.mail.yahoo.com" username="$email" />
279    </provider>
280    <provider id="btinternet" label="BT Internet" domain="btinternet.com">
281        <incoming uri="imap+ssl+://mail.btinternet.com" username="$email" />
282        <outgoing uri="smtp+ssl+://mail.btinternet.com" username="$email" />
283    </provider>
284    <provider id="btopenworld" label="BT Open World" domain="btopenworld.com">
285        <incoming uri="imap+ssl+://mail.btinternet.com" username="$email" />
286        <outgoing uri="smtp+ssl+://mail.btinternet.com" username="$email" />
287    </provider>
288    <provider id="talk21" label="BT Talk 21" domain="talk21.com">
289        <incoming uri="imap+ssl+://mail.btinternet.com" username="$email" />
290        <outgoing uri="smtp+ssl+://mail.btinternet.com" username="$email" />
291    </provider>
292    <provider id="rogers" label="Rogers" domain="rogers.com">
293        <incoming uri="imap+ssl+://android.imap.mail.yahoo.com" username="$email" />
294        <outgoing uri="smtp+ssl+://android.smtp.mail.yahoo.com" username="$email" />
295    </provider>
296    <provider id="rogers-nl" label="Rogers" domain="nl.rogers.com">
297        <incoming uri="imap+ssl+://android.imap.mail.yahoo.com" username="$email" />
298        <outgoing uri="smtp+ssl+://android.smtp.mail.yahoo.com" username="$email" />
299    </provider>
300
301    <!-- Roadrunner variants -->
302    <provider id="rr-roadrunner" label="RoadRunner" domain="roadrunner.com">
303        <incoming uri="pop3://pop-server.roadrunner.com" username="$email" />
304        <outgoing uri="smtp://mobile-smtp.roadrunner.com" username="$email" />
305    </provider>
306    <provider id="rr-global" label="RoadRunner" domain="*.rr.com">
307        <incoming uri="pop3://pop-server.$domain" username="$email" />
308        <outgoing uri="smtp://mobile-smtp.roadrunner.com" username="$email" />
309    </provider>
310
311    <!-- USA (other)-->
312    <provider id="comcast" label="Comcast" domain="comcast.net">
313        <incoming uri="pop3+ssl+://mail.comcast.net" username="$user" />
314        <outgoing uri="smtp+ssl+://smtp.comcast.net" username="$user" />
315    </provider>
316    <provider id="compuserve" label="CompuServe" domain="cs.com">
317        <incoming uri="imap://imap.cs.com" username="$user" />
318        <outgoing uri="smtp://smtp.cs.com" username="$user" />
319    </provider>
320    <provider id="cox" label="Cox" domain="cox.net">
321        <incoming uri="pop3+ssl+://pop.east.cox.net" username="$user" />
322        <outgoing uri="smtp+ssl+://smtp.east.cox.net" username="$user" />
323    </provider>
324    <provider id="earthlink" label="Earthlink" domain="earthlink.net">
325        <incoming uri="pop3://pop.earthlink.net" username="$email" />
326        <outgoing uri="smtp://smtpauth.earthlink.net:587" username="$email" />
327    </provider>
328    <!-- Tested with imap/ssl (no connection) and imap/tls (unsupported)-->
329    <!-- Tested with smtp/ssl (no connection) and smtp/tls (unsupported)-->
330    <provider id="juno" label="Juno" domain="juno.com">
331        <incoming uri="pop3://pop.juno.com" username="$user" />
332        <outgoing uri="smtp://smtp.juno.com" username="$user" />
333    </provider>
334    <provider id="netzero" label="NetZero" domain="netzero.com">
335        <incoming uri="pop3://pop.netzero.com" username="$user" />
336        <outgoing uri="smtp://smtp.netzero.com" username="$user" />
337    </provider>
338    <provider id="verizon" label="Verizon" domain="verizon.net">
339        <incoming uri="pop3://incoming.verizon.net" username="$user" />
340        <outgoing uri="smtp://outgoing.verizon.net" username="$user" />
341    </provider>
342
343    <!-- UK -->
344    <provider id="aol-uk" label="AOL" domain="aol.co.uk">
345        <incoming uri="imap+ssl+://imap.uk.aol.com" label="IMAP" username="$user" />
346        <outgoing uri="smtp+ssl+://smtp.uk.aol.com" username="$user" />
347    </provider>
348
349    <!-- France -->
350    <provider id="laposte" label="Laposte" domain="laposte.net">
351        <incoming uri="imap+ssl://imap.laposte.net" username="$email" />
352        <outgoing uri="smtp+ssl://smtp.laposte.net" username="$email" />
353    </provider>
354
355    <!-- Germany -->
356    <provider id="freenet" label="Freenet" domain="freenet.de">
357        <incoming uri="pop3://mx.freenet.de" username="$user" />
358        <outgoing uri="smtp+ssl://mx.freenet.de" username="$email" />
359    </provider>
360    <provider id="gmx" label="GMX" domain="gmx.de">
361        <incoming uri="pop3://pop.gmx.net" username="$email" />
362        <outgoing uri="smtp://mail.gmx.net" username="$email" />
363    </provider>
364    <provider id="T-Online" label="T-Online" domain="t-online.de"
365              note="@string/provider_note_t_online">
366        <incoming uri="pop3://popmail.t-online.de" username="$email" />
367        <outgoing uri="smtp://smtpmail.t-online.de" username="$email" />
368    </provider>
369    <provider id="web.de" label="Web.de" domain="web.de">
370        <incoming uri="pop3://pop3.web.de" username="$user" />
371        <outgoing uri="smtp://smtp.web.de" username="$user" />
372    </provider>
373
374    <!-- Poland -->
375    <provider id="onet" label="Onet.pl" domain="poczta.onet.pl">
376        <incoming uri="pop3://pop3.poczta.onet.pl" username="$email" />
377        <outgoing uri="smtp://smtp.poczta.onet.pl" username="$email" />
378    </provider>
379    <provider id="wirtualna" label="Wirtualna Polska" domain="wp.pl">
380        <incoming uri="imap+ssl+://imap.wp.pl" username="$user" />
381        <outgoing uri="smtp+ssl+://smtp.wp.pl" username="$user" />
382    </provider>
383    <provider id="interia" label="Interia" domain="interia.pl">
384        <incoming uri="pop3+ssl://poczta.interia.pl" username="$user" />
385        <outgoing uri="smtp+ssl://poczta.interia.pl" username="$user" />
386    </provider>
387    <provider id="o2" label="O2" domain="o2.pl">
388        <incoming uri="pop3+ssl://poczta.o2.pl" username="$user" />
389        <outgoing uri="smtp+ssl://poczta.o2.pl" username="$user" />
390    </provider>
391
392    <!-- Russia -->
393    <provider id="mail.ru" label="Mail.ru" domain="mail.ru">
394        <incoming uri="imap+tls+://imap.mail.ru" username="$email" />
395        <outgoing uri="smtp+ssl+://smtp.mail.ru" username="$email" />
396    </provider>
397
398    <!-- Korea -->
399    <provider id="daum" label="Daum Hanmail" domain="hanmail.net">
400        <incoming uri="imap+ssl+://imap.hanmail.net" username="$user" />
401        <outgoing uri="smtp+ssl+://smtp.hanmail.net" username="$user" />
402    </provider>
403    <provider id="naver" label="NAVER" domain="naver.com">
404        <incoming uri="imap+ssl+://imap.naver.com" username="$user" />
405        <outgoing uri="smtp+tls+://smtp.naver.com" username="$user" />
406    </provider>
407    <provider id="paran" label="Paran" domain="paran.com">
408        <incoming uri="imap+ssl+://imap.paran.com" username="$email" />
409        <outgoing uri="smtp+ssl+://smtp.paran.com" username="$email" />
410    </provider>
411
412    <!-- Yahoo! country-specific email domains -->
413    <provider id="yahoo-y7" label="Yahoo!7" domain="y7mail.com">
414        <incoming uri="imap+ssl+://android.imap.mail.yahoo.com" username="$email" />
415        <outgoing uri="smtp+ssl+://android.smtp.mail.yahoo.com" username="$email" />
416    </provider>
417    <provider id="kimo" label="Yahoo! Taiwan" domain="kimo.com">
418        <incoming uri="imap+ssl+://android.imap.mail.yahoo.com" username="$email" />
419        <outgoing uri="smtp+ssl+://android.smtp.mail.yahoo.com" username="$email" />
420    </provider>
421    <!-- Note: Yahoo! Japan's ne.jp and co.jp domains do not yet support open IMAP -->
422    <provider id="yahoo-jp-ybb" label="Yahoo! Japan" domain="ybb.ne.jp">
423        <incoming uri="pop3+ssl+://android.ybbpop.mail.yahoo.co.jp" username="$email" />
424        <outgoing uri="smtp+ssl+://android.ybbsmtp.mail.yahoo.co.jp" username="$email" />
425    </provider>
426    <!-- Note: Yahoo! Japan's co.jp domain requires $user rather than the usual $email -->
427    <provider id="yahoo-jp" label="Yahoo! Japan" domain="yahoo.co.jp">
428        <incoming uri="pop3+ssl+://android.pop.mail.yahoo.co.jp" username="$user" />
429        <outgoing uri="smtp+ssl+://android.smtp.mail.yahoo.co.jp" username="$user" />
430    </provider>
431    <provider id="yahoo-com-XX" label="Country specific Yahoo!" domain="yahoo.com.??">
432        <incoming uri="imap+ssl+://android.imap.mail.yahoo.com" username="$email" />
433        <outgoing uri="smtp+ssl+://android.smtp.mail.yahoo.com" username="$email" />
434    </provider>
435    <provider id="yahoo-co-XX" label="Country specific Yahoo!" domain="yahoo.co.??">
436        <incoming uri="imap+ssl+://android.imap.mail.yahoo.com" username="$email" />
437        <outgoing uri="smtp+ssl+://android.smtp.mail.yahoo.com" username="$email" />
438    </provider>
439    <provider id="yahoo-XX" label="Country specific Yahoo!" domain="yahoo.??">
440        <incoming uri="imap+ssl+://android.imap.mail.yahoo.com" username="$email" />
441        <outgoing uri="smtp+ssl+://android.smtp.mail.yahoo.com" username="$email" />
442    </provider>
443</providers>
444