The Android Open Source Project | 96c5af4 | 2009-03-03 19:32:22 -0800 | [diff] [blame] | 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. |
The Android Open Source Project | 96c5af4 | 2009-03-03 19:32:22 -0800 | [diff] [blame] | 54 | imap+tls+ IMAP with required TLS transport security. |
Andrew Stadler | 8b91975 | 2009-09-17 23:47:00 -0700 | [diff] [blame] | 55 | If TLS is not available the connection fails. |
The Android Open Source Project | 96c5af4 | 2009-03-03 19:32:22 -0800 | [diff] [blame] | 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. |
The Android Open Source Project | 96c5af4 | 2009-03-03 19:32:22 -0800 | [diff] [blame] | 60 | pop3+tls+ POP3 with required TLS transport security. |
Andrew Stadler | 8b91975 | 2009-09-17 23:47:00 -0700 | [diff] [blame] | 61 | If TLS is not available the connection fails. |
The Android Open Source Project | 96c5af4 | 2009-03-03 19:32:22 -0800 | [diff] [blame] | 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. |
The Android Open Source Project | 96c5af4 | 2009-03-03 19:32:22 -0800 | [diff] [blame] | 67 | smtp+tls+ SMTP with required TLS transport security. |
Andrew Stadler | 8b91975 | 2009-09-17 23:47:00 -0700 | [diff] [blame] | 68 | If TLS is not available the connection fails. |
The Android Open Source Project | 96c5af4 | 2009-03-03 19:32:22 -0800 | [diff] [blame] | 69 | smtp+ssl+ SMTP with required SSL transport security. |
| 70 | If SSL is not available the connection fails. |
| 71 | |
Andrew Stadler | e4a7cc4 | 2009-09-29 15:28:43 -0700 | [diff] [blame] | 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 | |
The Android Open Source Project | 96c5af4 | 2009-03-03 19:32:22 -0800 | [diff] [blame] | 78 | The URIs should be full templates for connection, including a port if |
Andrew Stadler | 8b91975 | 2009-09-17 23:47:00 -0700 | [diff] [blame] | 79 | the service uses a non-default port. The default ports are as follows: |
| 80 | imap 143 pop3 110 smtp 587 |
| 81 | imap+tls+ 143 pop3+tls+ 110 smtp+tls+ 587 |
| 82 | imap+ssl+ 993 pop3+ssl+ 995 smtp+ssl+ 465 |
The Android Open Source Project | 96c5af4 | 2009-03-03 19:32:22 -0800 | [diff] [blame] | 83 | |
| 84 | The username attribute is used to supply a template for the username |
| 85 | that will be presented to the server. This username is built from a |
| 86 | set of variables that are substituted with parts of the user |
| 87 | specified email address. |
| 88 | |
| 89 | Valid substitution values for the username attribute are: |
| 90 | $email - the email address the user entered |
| 91 | $user - the value before the @ sign in the email address the user entered |
| 92 | $domain - the value after the @ signin the email address the user entered |
| 93 | |
| 94 | The username attribute MUST be specified for the incoming element, so the POP3 or IMAP |
| 95 | server can identify the mailbox to be opened. |
| 96 | |
| 97 | The username attribute MAY be the empty string for the outgoing element, but only if the |
| 98 | SMTP server supports anonymous transmission (most don't). |
| 99 | --> |
| 100 | |
| 101 | <providers> |
| 102 | |
| 103 | <!-- Gmail variants --> |
| 104 | <provider id="gmail" label="Gmail" domain="gmail.com"> |
| 105 | <incoming uri="imap+ssl+://imap.gmail.com" username="$email" /> |
| 106 | <outgoing uri="smtp+ssl+://smtp.gmail.com" username="$email" /> |
| 107 | </provider> |
| 108 | <provider id="googlemail" label="Google Mail" domain="googlemail.com"> |
| 109 | <incoming uri="imap+ssl+://imap.googlemail.com" username="$email" /> |
| 110 | <outgoing uri="smtp+ssl+://smtp.googlemail.com" username="$email" /> |
| 111 | </provider> |
| 112 | <provider id="google" label="Google" domain="google.com"> |
| 113 | <incoming uri="imap+ssl+://imap.gmail.com" username="$email" /> |
| 114 | <outgoing uri="smtp+ssl+://smtp.gmail.com" username="$email" /> |
| 115 | </provider> |
| 116 | <provider id="android" label="Android" domain="android.com"> |
| 117 | <incoming uri="imap+ssl+://imap.gmail.com" username="$email" /> |
| 118 | <outgoing uri="smtp+ssl+://smtp.gmail.com" username="$email" /> |
| 119 | </provider> |
| 120 | |
Kristopher Giesing | 25d4fa0 | 2010-11-09 09:23:41 -0800 | [diff] [blame^] | 121 | <!-- Yahoo! Mail variants --> |
| 122 | <provider id="yahoo" label="Yahoo!" domain="yahoo.com"> |
| 123 | <incoming uri="imap+ssl+://android.imap.mail.yahoo.com" username="$email" /> |
| 124 | <outgoing uri="smtp+ssl+://android.smtp.mail.yahoo.com" username="$email" /> |
| 125 | </provider> |
| 126 | <provider id="rocketmail" label="Yahoo! RocketMail" domain="rocketmail.com"> |
| 127 | <incoming uri="imap+ssl+://android.imap.mail.yahoo.com" username="$email" /> |
| 128 | <outgoing uri="smtp+ssl+://android.smtp.mail.yahoo.com" username="$email" /> |
| 129 | </provider> |
| 130 | <provider id="ymail" label="Yahoo!" domain="ymail.com"> |
| 131 | <incoming uri="imap+ssl+://android.imap.mail.yahoo.com" username="$email" /> |
| 132 | <outgoing uri="smtp+ssl+://android.smtp.mail.yahoo.com" username="$email" /> |
| 133 | </provider> |
| 134 | <provider id="bellsouth" label="AT&T Bell South" domain="bellsouth.net"> |
| 135 | <incoming uri="imap+ssl+://android.imap.mail.yahoo.com" username="$email" /> |
| 136 | <outgoing uri="smtp+ssl+://android.smtp.mail.yahoo.com" username="$email" /> |
| 137 | </provider> |
| 138 | <provider id="att" label="AT&T" domain="att.net"> |
| 139 | <incoming uri="imap+ssl+://android.imap.mail.yahoo.com" username="$email" /> |
| 140 | <outgoing uri="smtp+ssl+://android.smtp.mail.yahoo.com" username="$email" /> |
| 141 | </provider> |
| 142 | <provider id="pacbell" label="AT&T Pacific Bell" domain="pacbell.net"> |
| 143 | <incoming uri="imap+ssl+://android.imap.mail.yahoo.com" username="$email" /> |
| 144 | <outgoing uri="smtp+ssl+://android.smtp.mail.yahoo.com" username="$email" /> |
| 145 | </provider> |
| 146 | <provider id="sbcglobal" label="AT&T SBC Global" domain="sbcglobal.net"> |
| 147 | <incoming uri="imap+ssl+://android.imap.mail.yahoo.com" username="$email" /> |
| 148 | <outgoing uri="smtp+ssl+://android.smtp.mail.yahoo.com" username="$email" /> |
| 149 | </provider> |
| 150 | <provider id="swbell" label="AT&T Southwest Bell" domain="swbell.net"> |
| 151 | <incoming uri="imap+ssl+://android.imap.mail.yahoo.com" username="$email" /> |
| 152 | <outgoing uri="smtp+ssl+://android.smtp.mail.yahoo.com" username="$email" /> |
| 153 | </provider> |
| 154 | <provider id="btinternet" label="BT Internet" domain="btinternet.com"> |
| 155 | <incoming uri="imap+ssl+://android.imap.mail.yahoo.com" username="$email" /> |
| 156 | <outgoing uri="smtp+ssl+://android.smtp.mail.yahoo.com" username="$email" /> |
| 157 | </provider> |
| 158 | <provider id="btopenworld" label="BT Open World" domain="btopenworld.com"> |
| 159 | <incoming uri="imap+ssl+://android.imap.mail.yahoo.com" username="$email" /> |
| 160 | <outgoing uri="smtp+ssl+://android.smtp.mail.yahoo.com" username="$email" /> |
| 161 | </provider> |
| 162 | <provider id="talk21" label="BT Talk 21" domain="talk21.com"> |
| 163 | <incoming uri="imap+ssl+://android.imap.mail.yahoo.com" username="$email" /> |
| 164 | <outgoing uri="smtp+ssl+://android.smtp.mail.yahoo.com" username="$email" /> |
| 165 | </provider> |
| 166 | <provider id="rogers" label="Rogers" domain="rogers.com"> |
| 167 | <incoming uri="imap+ssl+://android.imap.mail.yahoo.com" username="$email" /> |
| 168 | <outgoing uri="smtp+ssl+://android.smtp.mail.yahoo.com" username="$email" /> |
| 169 | </provider> |
| 170 | <provider id="rogers-nl" label="Rogers" domain="nl.rogers.com"> |
| 171 | <incoming uri="imap+ssl+://android.imap.mail.yahoo.com" username="$email" /> |
| 172 | <outgoing uri="smtp+ssl+://android.smtp.mail.yahoo.com" username="$email" /> |
| 173 | </provider> |
| 174 | |
The Android Open Source Project | 96c5af4 | 2009-03-03 19:32:22 -0800 | [diff] [blame] | 175 | <!-- USA --> |
Andrew Stadler | e4a7cc4 | 2009-09-29 15:28:43 -0700 | [diff] [blame] | 176 | <!-- Note, AOL appears to support SSL on both sides, as well --> |
The Android Open Source Project | 96c5af4 | 2009-03-03 19:32:22 -0800 | [diff] [blame] | 177 | <provider id="aim" label="AIM" domain="aim.com"> |
| 178 | <incoming uri="imap://imap.aim.com" label="IMAP" username="$email" /> |
Andrew Stadler | 8b91975 | 2009-09-17 23:47:00 -0700 | [diff] [blame] | 179 | <outgoing uri="smtp://smtp.aim.com" username="$email" /> |
The Android Open Source Project | 96c5af4 | 2009-03-03 19:32:22 -0800 | [diff] [blame] | 180 | </provider> |
Andrew Stadler | e4a7cc4 | 2009-09-29 15:28:43 -0700 | [diff] [blame] | 181 | <!-- Note, AOL appears to support SSL on both sides, as well --> |
The Android Open Source Project | 96c5af4 | 2009-03-03 19:32:22 -0800 | [diff] [blame] | 182 | <provider id="aol" label="AOL" domain="aol.com"> |
| 183 | <incoming uri="imap://imap.aol.com" label="IMAP" username="$email" /> |
Andrew Stadler | 8b91975 | 2009-09-17 23:47:00 -0700 | [diff] [blame] | 184 | <outgoing uri="smtp://smtp.aol.com" username="$email" /> |
The Android Open Source Project | 96c5af4 | 2009-03-03 19:32:22 -0800 | [diff] [blame] | 185 | </provider> |
| 186 | <provider id="comcast" label="Comcast" domain="comcast.net"> |
| 187 | <incoming uri="pop3+ssl+://mail.comcast.net" username="$user" /> |
| 188 | <outgoing uri="smtp+ssl+://smtp.comcast.net" username="$user" /> |
| 189 | </provider> |
| 190 | <provider id="compuserve" label="CompuServe" domain="cs.com"> |
| 191 | <incoming uri="imap://imap.cs.com" username="$user" /> |
| 192 | <outgoing uri="smtp://smtp.cs.com" username="$user" /> |
| 193 | </provider> |
Andrew Stadler | 9aced6c | 2009-07-31 16:28:03 -0700 | [diff] [blame] | 194 | <provider id="cox" label="Cox" domain="cox.net"> |
| 195 | <incoming uri="pop3+ssl+://pop.east.cox.net" username="$user" /> |
| 196 | <outgoing uri="smtp+ssl+://smtp.east.cox.net" username="$user" /> |
| 197 | </provider> |
The Android Open Source Project | 96c5af4 | 2009-03-03 19:32:22 -0800 | [diff] [blame] | 198 | <provider id="dotmac" label=".Mac" domain="mac.com"> |
Andrew Stadler | 8b91975 | 2009-09-17 23:47:00 -0700 | [diff] [blame] | 199 | <incoming uri="imap+ssl+://mail.mac.com" username="$email" /> |
Andrew Stadler | e4a7cc4 | 2009-09-29 15:28:43 -0700 | [diff] [blame] | 200 | <outgoing uri="smtp+tls+trustallcerts://smtp.mac.com" username="$email" /> |
The Android Open Source Project | 96c5af4 | 2009-03-03 19:32:22 -0800 | [diff] [blame] | 201 | </provider> |
| 202 | <provider id="earthlink" label="Earthlink" domain="earthlink.net"> |
| 203 | <incoming uri="pop3://pop.earthlink.net" username="$email" /> |
| 204 | <outgoing uri="smtp://smtpauth.earthlink.net:587" username="$email" /> |
| 205 | </provider> |
| 206 | <provider id="juno" label="Juno" domain="juno.com"> |
| 207 | <incoming uri="pop3://pop.juno.com" username="$user" /> |
| 208 | <outgoing uri="smtp://smtp.juno.com" username="$user" /> |
| 209 | </provider> |
| 210 | <provider id="live" label="Windows Live Hotmail Plus" domain="live.com" |
| 211 | note="@string/provider_note_live"> |
| 212 | <incoming uri="pop3+ssl+://pop3.live.com" username="$email" /> |
| 213 | <outgoing uri="smtp+tls+://smtp.live.com" username="$email" /> |
| 214 | </provider> |
| 215 | <provider id="hotmail" label="Windows Live Hotmail Plus" domain="hotmail.com" |
| 216 | note="@string/provider_note_live"> |
| 217 | <incoming uri="pop3+ssl+://pop3.live.com" username="$email" /> |
| 218 | <outgoing uri="smtp+tls+://smtp.live.com" username="$email" /> |
| 219 | </provider> |
| 220 | <provider id="msn" label="Windows Live Hotmail Plus" domain="msn.com" |
| 221 | note="@string/provider_note_live"> |
| 222 | <incoming uri="pop3+ssl+://pop3.live.com" username="$email" /> |
| 223 | <outgoing uri="smtp+tls+://smtp.live.com" username="$email" /> |
| 224 | </provider> |
Andrew Stadler | 8b91975 | 2009-09-17 23:47:00 -0700 | [diff] [blame] | 225 | <!-- Note: Mac Mail.app sets IMAP to mail.mac.com, but it's the same server --> |
The Android Open Source Project | 96c5af4 | 2009-03-03 19:32:22 -0800 | [diff] [blame] | 226 | <provider id="mobileme" label="MobileMe" domain="me.com"> |
Andrew Stadler | 8b91975 | 2009-09-17 23:47:00 -0700 | [diff] [blame] | 227 | <incoming uri="imap+ssl+://mail.me.com" username="$email" /> |
Andrew Stadler | e4a7cc4 | 2009-09-29 15:28:43 -0700 | [diff] [blame] | 228 | <outgoing uri="smtp+tls+trustallcerts://smtp.me.com" username="$email" /> |
The Android Open Source Project | 96c5af4 | 2009-03-03 19:32:22 -0800 | [diff] [blame] | 229 | </provider> |
| 230 | <provider id="netzero" label="NetZero" domain="netzero.com"> |
| 231 | <incoming uri="pop3://pop.netzero.com" username="$user" /> |
| 232 | <outgoing uri="smtp://smtp.netzero.com" username="$user" /> |
| 233 | </provider> |
The Android Open Source Project | 96c5af4 | 2009-03-03 19:32:22 -0800 | [diff] [blame] | 234 | <provider id="verizon" label="Verizon" domain="verizon.net"> |
| 235 | <incoming uri="pop3://incoming.verizon.net" username="$user" /> |
| 236 | <outgoing uri="smtp://outgoing.verizon.net" username="$user" /> |
| 237 | </provider> |
The Android Open Source Project | 96c5af4 | 2009-03-03 19:32:22 -0800 | [diff] [blame] | 238 | |
| 239 | <!-- UK --> |
| 240 | <provider id="aol-uk" label="AOL" domain="aol.co.uk"> |
| 241 | <incoming uri="imap+ssl+://imap.uk.aol.com" label="IMAP" username="$user" /> |
| 242 | <outgoing uri="smtp+ssl+://smtp.uk.aol.com" username="$user" /> |
| 243 | </provider> |
The Android Open Source Project | 96c5af4 | 2009-03-03 19:32:22 -0800 | [diff] [blame] | 244 | |
| 245 | <!-- Germany --> |
| 246 | <provider id="freenet" label="Freenet" domain="freenet.de"> |
| 247 | <incoming uri="pop3://mx.freenet.de" username="$user" /> |
| 248 | <outgoing uri="smtp+ssl://mx.freenet.de" username="$email" /> |
| 249 | </provider> |
| 250 | <provider id="gmx" label="GMX" domain="gmx.de"> |
Andrew Stadler | 8b91975 | 2009-09-17 23:47:00 -0700 | [diff] [blame] | 251 | <incoming uri="pop3://pop.gmx.net" username="$email" /> |
| 252 | <outgoing uri="smtp://mail.gmx.net" username="$email" /> |
The Android Open Source Project | 96c5af4 | 2009-03-03 19:32:22 -0800 | [diff] [blame] | 253 | </provider> |
| 254 | <provider id="T-Online" label="T-Online" domain="t-online.de" |
| 255 | note="@string/provider_note_t_online"> |
| 256 | <incoming uri="pop3://popmail.t-online.de" username="$email" /> |
| 257 | <outgoing uri="smtp://smtpmail.t-online.de" username="$email" /> |
| 258 | </provider> |
| 259 | <provider id="web.de" label="Web.de" domain="web.de"> |
Andrew Stadler | 8b91975 | 2009-09-17 23:47:00 -0700 | [diff] [blame] | 260 | <incoming uri="pop3://pop3.web.de" username="$user" /> |
| 261 | <outgoing uri="smtp://smtp.web.de" username="$user" /> |
The Android Open Source Project | 96c5af4 | 2009-03-03 19:32:22 -0800 | [diff] [blame] | 262 | </provider> |
| 263 | |
| 264 | <!-- Netherlands --> |
| 265 | <!-- TODO: For all of these, please confirm POP3, and switch to IMAP if supported --> |
| 266 | <!-- TODO: username="" in incoming element is broken - will not work --> |
| 267 | <!-- Disabled until username="" is resolved |
| 268 | <provider id="hetnet" label="Het Net" domain="hetnet.nl"> |
| 269 | <incoming uri="pop3://pop.hetnet.nl" username="" /> |
| 270 | <outgoing uri="smtp://mailhost.hetnet.nl" username="" /> |
| 271 | </provider> |
| 272 | --> |
| 273 | <!-- Disabled until test accounts provided |
| 274 | <provider id="planet inet" label="Planet Internet" domain="planet.nl"> |
| 275 | <incoming uri="pop3://pop.planet.nl" username="$user" /> |
| 276 | <outgoing uri="smtp://mail.planet.nl" username="" /> |
| 277 | </provider> |
| 278 | --> |
| 279 | <!-- TODO: username="" in incoming element is broken - will not work --> |
| 280 | <!-- Disabled until username="" is resolved |
| 281 | <provider id="tiscali" label="Tiscali" domain="tiscali.nl"> |
| 282 | <incoming uri="pop3://pop3.tiscali.nl" username="" /> |
| 283 | <outgoing uri="smtp://smtp.tiscali.nl" username="" /> |
| 284 | </provider> |
| 285 | --> |
| 286 | <!-- Disabled until test accounts provided |
| 287 | <provider id="wanadoo" label="Wanadoo" domain="wanadoo.nl"> |
| 288 | <incoming uri="pop3://pop.wanadoo.nl" username="$user" /> |
| 289 | <outgoing uri="smtp://smtp.wanadoo.nl" username="$user" /> |
| 290 | </provider> |
| 291 | --> |
| 292 | |
| 293 | <!-- Poland --> |
| 294 | <provider id="onet" label="Onet.pl" domain="poczta.onet.pl"> |
| 295 | <incoming uri="pop3://pop3.poczta.onet.pl" username="$email" /> |
| 296 | <outgoing uri="smtp://smtp.poczta.onet.pl" username="$email" /> |
| 297 | </provider> |
| 298 | <provider id="wirtualna" label="Wirtualna Polska" domain="wp.pl"> |
| 299 | <incoming uri="pop3://pop3.wp.pl" username="$user" /> |
| 300 | <outgoing uri="smtp://smtp.wp.pl" username="$user" /> |
| 301 | </provider> |
| 302 | <provider id="interia" label="Interia" domain="interia.pl"> |
| 303 | <incoming uri="pop3+ssl://poczta.interia.pl" username="$user" /> |
| 304 | <outgoing uri="smtp+ssl://poczta.interia.pl" username="$user" /> |
| 305 | </provider> |
| 306 | <provider id="o2" label="O2" domain="o2.pl"> |
| 307 | <incoming uri="pop3+ssl://poczta.o2.pl" username="$user" /> |
| 308 | <outgoing uri="smtp+ssl://poczta.o2.pl" username="$user" /> |
| 309 | </provider> |
| 310 | |
Kristopher Giesing | 25d4fa0 | 2010-11-09 09:23:41 -0800 | [diff] [blame^] | 311 | <!-- Yahoo! country-specific email domains --> |
| 312 | <provider id="yahoo-ar" label="Yahoo! Argentina" domain="yahoo.com.ar"> |
| 313 | <incoming uri="imap+ssl+://android.imap.mail.yahoo.com" username="$email" /> |
| 314 | <outgoing uri="smtp+ssl+://android.smtp.mail.yahoo.com" username="$email" /> |
| 315 | </provider> |
| 316 | <provider id="yahoo-y7" label="Yahoo!7" domain="y7mail.com"> |
| 317 | <incoming uri="imap+ssl+://android.imap.mail.yahoo.com" username="$email" /> |
| 318 | <outgoing uri="smtp+ssl+://android.smtp.mail.yahoo.com" username="$email" /> |
| 319 | </provider> |
| 320 | <provider id="yahoo-au" label="Yahoo! Australia" domain="yahoo.com.au"> |
| 321 | <incoming uri="imap+ssl+://android.imap.mail.yahoo.com" username="$email" /> |
| 322 | <outgoing uri="smtp+ssl+://android.smtp.mail.yahoo.com" username="$email" /> |
| 323 | </provider> |
| 324 | <provider id="yahoo-bg" label="Yahoo! Bulgaria" domain="yahoo.bg"> |
| 325 | <incoming uri="imap+ssl+://android.imap.mail.yahoo.com" username="$email" /> |
| 326 | <outgoing uri="smtp+ssl+://android.smtp.mail.yahoo.com" username="$email" /> |
| 327 | </provider> |
| 328 | <provider id="yahoo-br" label="Yahoo! Brazil" domain="yahoo.com.br"> |
| 329 | <incoming uri="imap+ssl+://android.imap.mail.yahoo.com" username="$email" /> |
| 330 | <outgoing uri="smtp+ssl+://android.smtp.mail.yahoo.com" username="$email" /> |
| 331 | </provider> |
| 332 | <provider id="yahoo-ca" label="Yahoo! Canada" domain="yahoo.ca"> |
| 333 | <incoming uri="imap+ssl+://android.imap.mail.yahoo.com" username="$email" /> |
| 334 | <outgoing uri="smtp+ssl+://android.smtp.mail.yahoo.com" username="$email" /> |
| 335 | </provider> |
| 336 | <provider id="yahoo-cl" label="Yahoo! Cote d'Ivoire" domain="yahoo.cl"> |
| 337 | <incoming uri="imap+ssl+://android.imap.mail.yahoo.com" username="$email" /> |
| 338 | <outgoing uri="smtp+ssl+://android.smtp.mail.yahoo.com" username="$email" /> |
| 339 | </provider> |
| 340 | <provider id="yahoo-com-cn" label="Yahoo! China" domain="yahoo.com.cn"> |
| 341 | <incoming uri="imap+ssl+://android.imap.mail.yahoo.com" username="$email" /> |
| 342 | <outgoing uri="smtp+ssl+://android.smtp.mail.yahoo.com" username="$email" /> |
| 343 | </provider> |
| 344 | <provider id="yahoo-cn" label="Yahoo! China" domain="yahoo.cn"> |
| 345 | <incoming uri="imap+ssl+://android.imap.mail.yahoo.com" username="$email" /> |
| 346 | <outgoing uri="smtp+ssl+://android.smtp.mail.yahoo.com" username="$email" /> |
| 347 | </provider> |
| 348 | <provider id="yahoo-co" label="Yahoo! Colombia" domain="yahoo.com.co"> |
| 349 | <incoming uri="imap+ssl+://android.imap.mail.yahoo.com" username="$email" /> |
| 350 | <outgoing uri="smtp+ssl+://android.smtp.mail.yahoo.com" username="$email" /> |
| 351 | </provider> |
| 352 | <provider id="yahoo-cz" label="Yahoo! Czech Republic" domain="yahoo.cz"> |
| 353 | <incoming uri="imap+ssl+://android.imap.mail.yahoo.com" username="$email" /> |
| 354 | <outgoing uri="smtp+ssl+://android.smtp.mail.yahoo.com" username="$email" /> |
| 355 | </provider> |
| 356 | <provider id="yahoo-de" label="Yahoo! Germany" domain="yahoo.de"> |
| 357 | <incoming uri="imap+ssl+://android.imap.mail.yahoo.com" username="$email" /> |
| 358 | <outgoing uri="smtp+ssl+://android.smtp.mail.yahoo.com" username="$email" /> |
| 359 | </provider> |
| 360 | <provider id="yahoo-dk" label="Yahoo! Denmark" domain="yahoo.dk"> |
| 361 | <incoming uri="imap+ssl+://android.imap.mail.yahoo.com" username="$email" /> |
| 362 | <outgoing uri="smtp+ssl+://android.smtp.mail.yahoo.com" username="$email" /> |
| 363 | </provider> |
| 364 | <provider id="yahoo-ec" label="Yahoo! Ecuador" domain="yahoo.com.ec"> |
| 365 | <incoming uri="imap+ssl+://android.imap.mail.yahoo.com" username="$email" /> |
| 366 | <outgoing uri="smtp+ssl+://android.smtp.mail.yahoo.com" username="$email" /> |
| 367 | </provider> |
| 368 | <provider id="yahoo-ee" label="Yahoo! Estonia" domain="yahoo.ee"> |
| 369 | <incoming uri="imap+ssl+://android.imap.mail.yahoo.com" username="$email" /> |
| 370 | <outgoing uri="smtp+ssl+://android.smtp.mail.yahoo.com" username="$email" /> |
| 371 | </provider> |
| 372 | <provider id="yahoo-es" label="Yahoo! Spain" domain="yahoo.es"> |
| 373 | <incoming uri="imap+ssl+://android.imap.mail.yahoo.com" username="$email" /> |
| 374 | <outgoing uri="smtp+ssl+://android.smtp.mail.yahoo.com" username="$email" /> |
| 375 | </provider> |
| 376 | <provider id="yahoo-fr" label="Yahoo! France" domain="yahoo.fr"> |
| 377 | <incoming uri="imap+ssl+://android.imap.mail.yahoo.com" username="$email" /> |
| 378 | <outgoing uri="smtp+ssl+://android.smtp.mail.yahoo.com" username="$email" /> |
| 379 | </provider> |
| 380 | <provider id="yahoo-gr" label="Yahoo! Greece" domain="yahoo.gr"> |
| 381 | <incoming uri="imap+ssl+://android.imap.mail.yahoo.com" username="$email" /> |
| 382 | <outgoing uri="smtp+ssl+://android.smtp.mail.yahoo.com" username="$email" /> |
| 383 | </provider> |
| 384 | <provider id="yahoo-hk" label="Yahoo! Hong Kong" domain="yahoo.com.hk"> |
| 385 | <incoming uri="imap+ssl+://android.imap.mail.yahoo.com" username="$email" /> |
| 386 | <outgoing uri="smtp+ssl+://android.smtp.mail.yahoo.com" username="$email" /> |
| 387 | </provider> |
| 388 | <provider id="yahoo-hu" label="Yahoo! Hungary" domain="yahoo.hu"> |
| 389 | <incoming uri="imap+ssl+://android.imap.mail.yahoo.com" username="$email" /> |
| 390 | <outgoing uri="smtp+ssl+://android.smtp.mail.yahoo.com" username="$email" /> |
| 391 | </provider> |
| 392 | <provider id="yahoo-id" label="Yahoo! Indonesia" domain="yahoo.co.id"> |
| 393 | <incoming uri="imap+ssl+://android.imap.mail.yahoo.com" username="$email" /> |
| 394 | <outgoing uri="smtp+ssl+://android.smtp.mail.yahoo.com" username="$email" /> |
| 395 | </provider> |
| 396 | <provider id="yahoo-ie" label="Yahoo! Ireland" domain="yahoo.ie"> |
| 397 | <incoming uri="imap+ssl+://android.imap.mail.yahoo.com" username="$email" /> |
| 398 | <outgoing uri="smtp+ssl+://android.smtp.mail.yahoo.com" username="$email" /> |
| 399 | </provider> |
| 400 | <provider id="yahoo-in" label="Yahoo! India" domain="yahoo.in"> |
| 401 | <incoming uri="imap+ssl+://android.imap.mail.yahoo.com" username="$email" /> |
| 402 | <outgoing uri="smtp+ssl+://android.smtp.mail.yahoo.com" username="$email" /> |
| 403 | </provider> |
| 404 | <provider id="yahoo-it" label="Yahoo! Italy" domain="yahoo.it"> |
| 405 | <incoming uri="imap+ssl+://android.imap.mail.yahoo.com" username="$email" /> |
| 406 | <outgoing uri="smtp+ssl+://android.smtp.mail.yahoo.com" username="$email" /> |
| 407 | </provider> |
| 408 | <!-- Note: Yahoo! Japan's ne.jp and co.jp domains do not yet support open IMAP --> |
| 409 | <provider id="yahoo-jp-ybb" label="Yahoo! Japan" domain="ybb.ne.jp"> |
| 410 | <incoming uri="pop3+ssl+://android.ybbpop.mail.yahoo.co.jp" username="$email" /> |
| 411 | <outgoing uri="smtp+ssl+://android.ybbsmtp.mail.yahoo.co.jp" username="$email" /> |
| 412 | </provider> |
| 413 | <!-- Note: Yahoo! Japan's co.jp domain requires $user rather than the usual $email --> |
| 414 | <provider id="yahoo-jp" label="Yahoo! Japan" domain="yahoo.co.jp"> |
| 415 | <incoming uri="pop3+ssl+://android.pop.mail.yahoo.co.jp" username="$user" /> |
| 416 | <outgoing uri="smtp+ssl+://android.smtp.mail.yahoo.co.jp" username="$user" /> |
| 417 | </provider> |
| 418 | <provider id="yahoo-kr" label="Yahoo! Republic of Korea" domain="yahoo.co.kr"> |
| 419 | <incoming uri="imap+ssl+://android.imap.mail.yahoo.com" username="$email" /> |
| 420 | <outgoing uri="smtp+ssl+://android.smtp.mail.yahoo.com" username="$email" /> |
| 421 | </provider> |
| 422 | <provider id="yahoo-lt" label="Yahoo! Lithuania" domain="yahoo.lt"> |
| 423 | <incoming uri="imap+ssl+://android.imap.mail.yahoo.com" username="$email" /> |
| 424 | <outgoing uri="smtp+ssl+://android.smtp.mail.yahoo.com" username="$email" /> |
| 425 | </provider> |
| 426 | <provider id="yahoo-lv" label="Yahoo! Latvia" domain="yahoo.lv"> |
| 427 | <incoming uri="imap+ssl+://android.imap.mail.yahoo.com" username="$email" /> |
| 428 | <outgoing uri="smtp+ssl+://android.smtp.mail.yahoo.com" username="$email" /> |
| 429 | </provider> |
| 430 | <provider id="yahoo-mx" label="Yahoo! Mexico" domain="yahoo.com.mx"> |
| 431 | <incoming uri="imap+ssl+://android.imap.mail.yahoo.com" username="$email" /> |
| 432 | <outgoing uri="smtp+ssl+://android.smtp.mail.yahoo.com" username="$email" /> |
| 433 | </provider> |
| 434 | <provider id="yahoo-my" label="Yahoo! Malaysia" domain="yahoo.com.my"> |
| 435 | <incoming uri="imap+ssl+://android.imap.mail.yahoo.com" username="$email" /> |
| 436 | <outgoing uri="smtp+ssl+://android.smtp.mail.yahoo.com" username="$email" /> |
| 437 | </provider> |
| 438 | <provider id="yahoo-ng" label="Yahoo! Nigeria" domain="yahoo.com.ng"> |
| 439 | <incoming uri="imap+ssl+://android.imap.mail.yahoo.com" username="$email" /> |
| 440 | <outgoing uri="smtp+ssl+://android.smtp.mail.yahoo.com" username="$email" /> |
| 441 | </provider> |
| 442 | <provider id="yahoo-no" label="Yahoo! Norway" domain="yahoo.no"> |
| 443 | <incoming uri="imap+ssl+://android.imap.mail.yahoo.com" username="$email" /> |
| 444 | <outgoing uri="smtp+ssl+://android.smtp.mail.yahoo.com" username="$email" /> |
| 445 | </provider> |
| 446 | <provider id="yahoo-nz" label="Yahoo! New Zealand" domain="yahoo.co.nz"> |
| 447 | <incoming uri="imap+ssl+://android.imap.mail.yahoo.com" username="$email" /> |
| 448 | <outgoing uri="smtp+ssl+://android.smtp.mail.yahoo.com" username="$email" /> |
| 449 | </provider> |
| 450 | <provider id="yahoo-pe" label="Yahoo! Peru" domain="yahoo.com.pe"> |
| 451 | <incoming uri="imap+ssl+://android.imap.mail.yahoo.com" username="$email" /> |
| 452 | <outgoing uri="smtp+ssl+://android.smtp.mail.yahoo.com" username="$email" /> |
| 453 | </provider> |
| 454 | <provider id="yahoo-ph" label="Yahoo! Philippines" domain="yahoo.com.ph"> |
| 455 | <incoming uri="imap+ssl+://android.imap.mail.yahoo.com" username="$email" /> |
| 456 | <outgoing uri="smtp+ssl+://android.smtp.mail.yahoo.com" username="$email" /> |
| 457 | </provider> |
| 458 | <provider id="yahoo-pk" label="Yahoo! Pakistan" domain="yahoo.com.pk"> |
| 459 | <incoming uri="imap+ssl+://android.imap.mail.yahoo.com" username="$email" /> |
| 460 | <outgoing uri="smtp+ssl+://android.smtp.mail.yahoo.com" username="$email" /> |
| 461 | </provider> |
| 462 | <provider id="yahoo-pl" label="Yahoo! Poland" domain="yahoo.pl"> |
| 463 | <incoming uri="imap+ssl+://android.imap.mail.yahoo.com" username="$email" /> |
| 464 | <outgoing uri="smtp+ssl+://android.smtp.mail.yahoo.com" username="$email" /> |
| 465 | </provider> |
| 466 | <provider id="yahoo-ru" label="Yahoo! Russia" domain="yahoo.ru"> |
| 467 | <incoming uri="imap+ssl+://android.imap.mail.yahoo.com" username="$email" /> |
| 468 | <outgoing uri="smtp+ssl+://android.smtp.mail.yahoo.com" username="$email" /> |
| 469 | </provider> |
| 470 | <provider id="yahoo-ro" label="Yahoo! Romania" domain="yahoo.ro"> |
| 471 | <incoming uri="imap+ssl+://android.imap.mail.yahoo.com" username="$email" /> |
| 472 | <outgoing uri="smtp+ssl+://android.smtp.mail.yahoo.com" username="$email" /> |
| 473 | </provider> |
| 474 | <provider id="yahoo-se" label="Yahoo! Sweden" domain="yahoo.se"> |
| 475 | <incoming uri="imap+ssl+://android.imap.mail.yahoo.com" username="$email" /> |
| 476 | <outgoing uri="smtp+ssl+://android.smtp.mail.yahoo.com" username="$email" /> |
| 477 | </provider> |
| 478 | <provider id="yahoo-sg" label="Yahoo! Singapore" domain="yahoo.com.sg"> |
| 479 | <incoming uri="imap+ssl+://android.imap.mail.yahoo.com" username="$email" /> |
| 480 | <outgoing uri="smtp+ssl+://android.smtp.mail.yahoo.com" username="$email" /> |
| 481 | </provider> |
| 482 | <provider id="yahoo-th" label="Yahoo! Thailand" domain="yahoo.co.th"> |
| 483 | <incoming uri="imap+ssl+://android.imap.mail.yahoo.com" username="$email" /> |
| 484 | <outgoing uri="smtp+ssl+://android.smtp.mail.yahoo.com" username="$email" /> |
| 485 | </provider> |
| 486 | <provider id="yahoo-tr" label="Yahoo! Turkey" domain="yahoo.com.tr"> |
| 487 | <incoming uri="imap+ssl+://android.imap.mail.yahoo.com" username="$email" /> |
| 488 | <outgoing uri="smtp+ssl+://android.smtp.mail.yahoo.com" username="$email" /> |
| 489 | </provider> |
| 490 | <provider id="kimo" label="Yahoo! Taiwan" domain="kimo.com"> |
| 491 | <incoming uri="imap+ssl+://android.imap.mail.yahoo.com" username="$email" /> |
| 492 | <outgoing uri="smtp+ssl+://android.smtp.mail.yahoo.com" username="$email" /> |
| 493 | </provider> |
| 494 | <provider id="yahoo-tw" label="Yahoo! Taiwan" domain="yahoo.com.tw"> |
| 495 | <incoming uri="imap+ssl+://android.imap.mail.yahoo.com" username="$email" /> |
| 496 | <outgoing uri="smtp+ssl+://android.smtp.mail.yahoo.com" username="$email" /> |
| 497 | </provider> |
| 498 | <provider id="yahoo-ua" label="Yahoo! Ukraine" domain="yahoo.ua"> |
| 499 | <incoming uri="imap+ssl+://android.imap.mail.yahoo.com" username="$email" /> |
| 500 | <outgoing uri="smtp+ssl+://android.smtp.mail.yahoo.com" username="$email" /> |
| 501 | </provider> |
| 502 | <provider id="yahoo-uk" label="Yahoo! UK" domain="yahoo.co.uk"> |
| 503 | <incoming uri="imap+ssl+://android.imap.mail.yahoo.com" username="$email" /> |
| 504 | <outgoing uri="smtp+ssl+://android.smtp.mail.yahoo.com" username="$email" /> |
| 505 | </provider> |
| 506 | <provider id="yahoo-ve" label="Yahoo! Venezuela" domain="yahoo.com.ve"> |
| 507 | <incoming uri="imap+ssl+://android.imap.mail.yahoo.com" username="$email" /> |
| 508 | <outgoing uri="smtp+ssl+://android.smtp.mail.yahoo.com" username="$email" /> |
| 509 | </provider> |
| 510 | <provider id="yahoo-vn" label="Yahoo! Vietnam" domain="yahoo.com.vn"> |
| 511 | <incoming uri="imap+ssl+://android.imap.mail.yahoo.com" username="$email" /> |
| 512 | <outgoing uri="smtp+ssl+://android.smtp.mail.yahoo.com" username="$email" /> |
| 513 | </provider> |
| 514 | <provider id="yahoo-za" label="Yahoo! South Africa" domain="yahoo.co.za"> |
| 515 | <incoming uri="imap+ssl+://android.imap.mail.yahoo.com" username="$email" /> |
| 516 | <outgoing uri="smtp+ssl+://android.smtp.mail.yahoo.com" username="$email" /> |
| 517 | </provider> |
| 518 | <provider id="xtra" label="Yahoo! Xtra" domain="xtra.co.nz"> |
| 519 | <incoming uri="imap+ssl+://android.imap.mail.yahoo.com" username="$email" /> |
| 520 | <outgoing uri="smtp+ssl+://android.smtp.mail.yahoo.com" username="$email" /> |
| 521 | </provider> |
The Android Open Source Project | 96c5af4 | 2009-03-03 19:32:22 -0800 | [diff] [blame] | 522 | </providers> |