384c467d0e
* Use services.xml info instead * Reduced # references from 40+ to 4 (others to be removed ASAP) Change-Id: I756001148e09ece2f49258bced000e60685ba953
64 lines
2.5 KiB
XML
64 lines
2.5 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<!-- Copyright (C) 2012 The Android Open Source Project
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
-->
|
|
|
|
<emailservices xmlns:email="http://schemas.android.com/apk/res/com.android.email">
|
|
<emailservice
|
|
email:protocol="pop3"
|
|
email:name="POP3"
|
|
email:accountType="com.android.email"
|
|
email:serviceClass="com.android.email.service.ImapService"
|
|
email:port="110"
|
|
email:portSsl="995"
|
|
email:offerTls="true"
|
|
email:usesSmtp="true"
|
|
email:offerLocalDeletes="true"
|
|
email:syncIntervalStrings="@array/account_settings_check_frequency_entries"
|
|
email:syncIntervals="@array/account_settings_check_frequency_values"
|
|
/>
|
|
<emailservice
|
|
email:protocol="imap"
|
|
email:name="IMAP"
|
|
email:accountType="com.android.email"
|
|
email:serviceClass="com.android.email.service.Pop3Service"
|
|
email:offerAttachmentPreload="true"
|
|
email:port="143"
|
|
email:portSsl="995"
|
|
email:offerTls="true"
|
|
email:usesSmtp="true"
|
|
email:offerPrefix="true"
|
|
email:syncIntervalStrings="@array/account_settings_check_frequency_entries"
|
|
email:syncIntervals="@array/account_settings_check_frequency_values"
|
|
/>
|
|
<emailservice
|
|
email:protocol="eas"
|
|
email:name="Exchange"
|
|
email:accountType="com.android.exchange"
|
|
email:intent="com.android.email.EXCHANGE_INTENT"
|
|
email:port="80"
|
|
email:portSsl="443"
|
|
email:defaultSsl="true"
|
|
email:offerCerts="true"
|
|
email:syncIntervalStrings="@array/account_settings_check_frequency_entries_push"
|
|
email:syncIntervals="@array/account_settings_check_frequency_values_push"
|
|
email:usesAutodiscover="true"
|
|
email:offerAttachmentPreload="true"
|
|
email:offerPush="true"
|
|
email:offerLookback="true"
|
|
email:syncContacts="true"
|
|
email:syncCalendar="true"
|
|
/>
|
|
</emailservices>
|