email/pop3andsmtpmtm/group/GtEmailMtm.iby
changeset 0 72b543305e3a
equal deleted inserted replaced
-1:000000000000 0:72b543305e3a
       
     1 /*
       
     2 * Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
       
     3 * All rights reserved.
       
     4 * This component and the accompanying materials are made available
       
     5 * under the terms of "Eclipse Public License v1.0"
       
     6 * which accompanies this distribution, and is available
       
     7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
       
     8 *
       
     9 * Initial Contributors:
       
    10 * Nokia Corporation - initial contribution.
       
    11 *
       
    12 * Contributors:
       
    13 *
       
    14 * Description:
       
    15 *
       
    16 */
       
    17 #ifndef __GTEMAILMTM_IBY__
       
    18 #define __GTEMAILMTM_IBY__
       
    19 
       
    20 #include <charconv.iby>
       
    21 #include <commdb.iby>
       
    22 #include <esock.iby>
       
    23 #include <tcpip6.iby>
       
    24 #include <logeng.iby>
       
    25 #include <messageserver.iby>
       
    26 #include <cntmodel.iby>
       
    27 #include <charconv_all_plugins.iby>
       
    28 
       
    29 // This check is for chosing which IMAP version to use.
       
    30 // As SYMBIAN_CENTREP_NOC is only defined in Symbian OS 9.3 and above
       
    31 // version 2 of the IMAP component will be built.
       
    32 #ifdef SYMBIAN_CENTREP_NOC
       
    33 #define USE_IMAP_V2
       
    34 #endif
       
    35 
       
    36 REM Email Engine MTMs
       
    37 
       
    38 file=ABI_DIR\BUILD_DIR\imcm.dll				System\Libs\imcm.dll
       
    39 file=ABI_DIR\BUILD_DIR\imut.dll				System\Libs\imut.dll
       
    40 file=ABI_DIR\BUILD_DIR\mobilitypolicyprovider.dll	System\Libs\mobilitypolicyprovider.dll
       
    41 #ifdef __MOBILITY_TEST_FRAMEWORK
       
    42 file=ABI_DIR\BUILD_DIR\mobilitytestframework.dll	System\Libs\mobilitytestframework.dll
       
    43 #endif __MOBILITY_TEST_FRAMEWORK
       
    44 file=ABI_DIR\BUILD_DIR\pops.dll				System\Libs\pops.dll
       
    45 file=ABI_DIR\BUILD_DIR\smts.dll				System\Libs\smts.dll
       
    46 file=ABI_DIR\BUILD_DIR\autosend.exe			System\Programs\autosend.exe
       
    47 
       
    48 #ifndef NO_IMAP_IN_ROM
       
    49 file=ABI_DIR\BUILD_DIR\imps.dll		System\Libs\imps.dll
       
    50 #ifdef USE_IMAP_V2		// Extra DLLs for IMAPv2
       
    51 file=ABI_DIR\BUILD_DIR\imaputils.dll			System\Libs\imaputils.dll
       
    52 file=ABI_DIR\BUILD_DIR\imapmailstore.dll		System\Libs\imapmailstore.dll
       
    53 file=ABI_DIR\BUILD_DIR\imapofflinecontrol.dll		System\Libs\imapofflinecontrol.dll
       
    54 file=ABI_DIR\BUILD_DIR\impapprotocolcontroller.dll	System\Libs\impapprotocolcontroller.dll
       
    55 file=ABI_DIR\BUILD_DIR\imapsession.dll			System\Libs\imapsession.dll
       
    56 file=ABI_DIR\BUILD_DIR\imapsettings.dll			System\Libs\imapsettings.dll
       
    57 file=ABI_DIR\BUILD_DIR\imapsyncmanager.dll		System\Libs\imapsyncmanager.dll
       
    58 file=ABI_DIR\BUILD_DIR\transporthandler.dll		System\Libs\transporthandler.dll
       
    59 #endif	// USE_IMAP_V2
       
    60 #endif	// NO_IMAP_IN_ROM
       
    61 
       
    62 ECOM_PLUGIN(mobilitypolicydefault.dll, 10283067.rsc)
       
    63 
       
    64 #ifdef __MOBILITY_TEST_FRAMEWORK
       
    65 ECOM_PLUGIN(mobilitypolicynetteststub.dll, 102857AC.rsc)
       
    66 #endif //__MOBILITY_TEST_FRAMEWORK
       
    67 
       
    68 data=EPOCROOT##epoc32\data\Z\private\10202BE9\10001028.txt	private\10202BE9\10001028.txt
       
    69 data=EPOCROOT##epoc32\data\Z\private\10202BE9\10001029.txt	private\10202BE9\10001029.txt
       
    70 data=EPOCROOT##epoc32\data\Z\private\10202BE9\1000102A.txt	private\10202BE9\1000102A.txt
       
    71 
       
    72 #include "gtemailmtm.hby"
       
    73 
       
    74 #endif