appium / java-client

Java language binding for writing Appium Tests, conforms to W3C WebDriver Protocol
Apache License 2.0
1.19k stars 752 forks source link

(ios) scrollTo not performed,org.openqa.selenium.NoSuchElementException: An element could not be located on the page using the given search parameters. #139

Closed liqing380 closed 9 years ago

liqing380 commented 9 years ago
java-client:2.1.0
appium:1.3.3
ios device: 7.1 ,real device

code is

IOSDriver appDriver;
        WebElement webElement=appDriver.findElementByIosUIAutomation(".tableViews()[1].cells().withPredicate(\" any staticTexts.name == '" + orgName + "'\")");
        tap(appDriver,webElement);
        se2.waitTime(se2.sec);
        appDriver.scrollTo("x55mgp2u_2, x55mgp2u_2@reg186.cn, reg186.cn");

the element i want to scrollTo and find is

name: x55mgp2u_2, x55mgp2u_2@reg186.cn, reg186.cn
type: UIAStaticText
value: 
label: x55mgp2u_2, x55mgp2u_2@reg186.cn, reg186.cn
enabled: true
visible: false
valid: true
location: {0, 966}
size: {768, 58}
xpath: //UIAApplication[1]/UIAWindow[1]/UIATableView[2]/UIATableCell[29]/UIAStaticText[1]

i got the error:

getTestDevice:0 7cb45aefaaa0252295c98ebb59a66dee8d6103b9
【用时:393826:38:36】

org.openqa.selenium.NoSuchElementException: An element could not be located on the page using the given search parameters. (WARNING: The server did not provide any stacktrace information)
Command duration or timeout: 1.07 seconds
For documentation on this error, please visit: http://seleniumhq.org/exceptions/no_such_element.html
Build info: version: 'unknown', revision: 'unknown', time: 'unknown'
System info: host: 'jli', ip: '192.168.200.105', os.name: 'Windows 7', os.arch: 'amd64', os.version: '6.1', java.version: '1.7.0_51'
Session ID: c5529f64-c86a-43e6-b03d-82294e0a5709
Driver info: io.appium.java_client.ios.IOSDriver
Capabilities [{automationName=appium, interKeyDelay=0, platform=MAC, app=/Users/coremail/Downloads/TestCoremailPushApp_dev6.19.ipa, javascriptEnabled=true, browserName=, networkConnectionEnabled=false, sendKeyStrategy=grouped, desired={newCommandTimeout=600, interKeyDelay=0, automationName=appium, app=/Users/coremail/Downloads/TestCoremailPushApp_dev6.19.ipa, platformVersion=7.1, deviceName=coremail's Ipad, platformName=iOS, browserName=, sendKeyStrategy=grouped}, locationContextEnabled=false, newCommandTimeout=600, platformVersion=7.1, databaseEnabled=false, deviceName=coremail's Ipad, platformName=iOS, webStorageEnabled=false, warnings={}, takesScreenshot=true}]
    at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
    at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:57)
    at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)
    at java.lang.reflect.Constructor.newInstance(Constructor.java:526)
    at org.openqa.selenium.remote.ErrorHandler.createThrowable(ErrorHandler.java:204)
    at org.openqa.selenium.remote.ErrorHandler.throwIfResponseFailed(ErrorHandler.java:156)
    at org.openqa.selenium.remote.RemoteWebDriver.execute(RemoteWebDriver.java:599)
    at io.appium.java_client.AppiumDriver.execute(AppiumDriver.java:180)
    at org.openqa.selenium.remote.RemoteWebElement.execute(RemoteWebElement.java:268)
    at org.openqa.selenium.remote.RemoteWebElement.findElement(RemoteWebElement.java:171)
    at io.appium.java_client.ios.IOSElement.findElementByIosUIAutomation(IOSElement.java:14)
    at io.appium.java_client.ios.IOSElement.scrollTo(IOSElement.java:29)
    at io.appium.java_client.ios.IOSDriver.scrollTo(IOSDriver.java:35)
    at com.mailtech.coremailapp.example.iosAppTest.iosAppPractice.Oab.doTest(Oab.java:199)
    at com.mailtech.coremailapp.CmTestBaseEx.testMain(CmTestBaseEx.java:51)
    at com.mailtech.coremailapp.example.iosAppTest.iosAppPractice.Oab.testOab(Oab.java:232)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
    at org.junit.runners.model.FrameworkMethod$1.runReflectiveCall(FrameworkMethod.java:47)
    at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:12)
    at org.junit.runners.model.FrameworkMethod.invokeExplosively(FrameworkMethod.java:44)
    at org.junit.internal.runners.statements.InvokeMethod.evaluate(InvokeMethod.java:17)
    at org.junit.internal.runners.statements.RunBefores.evaluate(RunBefores.java:26)
    at org.junit.internal.runners.statements.RunAfters.evaluate(RunAfters.java:27)
    at org.junit.runners.ParentRunner.runLeaf(ParentRunner.java:271)
    at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:70)
    at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:50)
    at org.junit.runners.ParentRunner$3.run(ParentRunner.java:238)
    at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:63)
    at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:236)
    at org.junit.runners.ParentRunner.access$000(ParentRunner.java:53)
    at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:229)
    at org.junit.runners.ParentRunner.run(ParentRunner.java:309)
    at org.junit.runner.JUnitCore.run(JUnitCore.java:160)
    at com.intellij.junit4.JUnit4IdeaTestRunner.startRunnerWithArgs(JUnit4IdeaTestRunner.java:74)
    at com.intellij.rt.execution.junit.JUnitStarter.prepareStreamsAndStart(JUnitStarter.java:211)
    at com.intellij.rt.execution.junit.JUnitStarter.main(JUnitStarter.java:67)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)
    at com.intellij.rt.execution.application.AppMain.main(AppMain.java:134)

appium.log:

info: [debug] Pushing command to appium work queue: "au.getElementByUIAutomation('.tableViews()[1].cells().withPredicate(\\\" any staticTexts.name == \\'reg186.cn\\'\\\")')"
info: [debug] Sending command to instruments: au.getElementByUIAutomation('.tableViews()[1].cells().withPredicate(\" any staticTexts.name == \'reg186.cn\'\")')

info: [debug] [INST] 2014-12-05 10:41:59 +0000 Debug: Got new command 4 from instruments: au.getElementByUIAutomation('.tableViews()[1].cells().withPredicate(\" any staticTexts.name == \'reg186.cn\'\")')

info: [debug] [INST] 2014-12-05 10:41:59 +0000 Debug: evaluating au.getElementByUIAutomation('.tableViews()[1].cells().withPredicate(\" any staticTexts.name == \'reg186.cn\'\")')

info: [debug] [INST] 2014-12-05 10:41:59 +0000 Debug: byUIAutomation: evaluating code: $.mainWindow().tableViews()[1].cells().withPredicate(" any staticTexts.name == 'reg186.cn'")
       2014-12-05 10:41:59 +0000 Debug: evaluation finished
2014-12-05 10:41:59 +0000 Debug: Lookup returned [object UIATableCell] with the name "reg186.cn" (id: 1).
2014-12-05 10:41:59 +0000 Debug: responding with:
2014-12-05 10:41:59 +0000 Debug: Running system command #5: /Applications/Appium.app/Contents/Resources/node/bin/node /Applications/Appium.app/Contents/Resources/node_modules/appium/node_modules/appium-uiauto/bin/command-proxy-client.js /tmp/instruments_sock 2,{"status":0,"value":{"ELEMENT":"1"}}...

info: [debug] Socket data received (38 bytes)

info: [debug] Socket data being routed.
info: [debug] Got result from instruments: {"status":0,"value":{"ELEMENT":"1"}}
info: [debug] Responding to client with success: {"status":0,"value":{"ELEMENT":"1"},"sessionId":"c5529f64-c86a-43e6-b03d-82294e0a5709"}
info: <-- POST /wd/hub/session/c5529f64-c86a-43e6-b03d-82294e0a5709/element 200 1119.279 ms - 87 {"status":0,"value":{"ELEMENT":"1"},"sessionId":"c5529f64-c86a-43e6-b03d-82294e0a5709"}

info: --> POST /wd/hub/session/c5529f64-c86a-43e6-b03d-82294e0a5709/touch/perform {"actions":[{"action":"press","options":{"element":"1"}},{"action":"wait","options":{"ms":500}},{"action":"release","options":{}}]}

info: [debug] Pushing command to appium work queue: "au.getElement('1').rect()"
info: [debug] Sending command to instruments: au.getElement('1').rect()

info: [debug] [INST] 2014-12-05 10:42:00 +0000 Debug: Got new command 5 from instruments: au.getElement('1').rect()

info: [debug] [INST] 2014-12-05 10:42:00 +0000 Debug: evaluating au.getElement('1').rect()
       2014-12-05 10:42:00 +0000 Debug: evaluation finished

info: [debug] [INST] 2014-12-05 10:42:00 +0000 Debug: responding with:

info: [debug] [INST] 2014-12-05 10:42:00 +0000 Debug: Running system command #6: /Applications/Appium.app/Contents/Resources/node/bin/node /Applications/Appium.app/Contents/Resources/node_modules/appium/node_modules/appium-uiauto/bin/command-proxy-client.js /tmp/instruments_sock 2,{"status":0,"value":{"origin":{"x":0,"y":64},"size":{"width":768,"height":58}}}...

info: [debug] Socket data received (81 bytes)

info: [debug] Socket data being routed.
info: [debug] Got result from instruments: {"status":0,"value":{"origin":{"x":0,"y":64},"size":{"width":768,"height":58}}}
info: [debug] Pushing command to appium work queue: "target.touch([{\"touch\":[{\"x\":384,\"y\":93}],\"time\":0.2},{\"touch\":[{\"x\":384,\"y\":93}],\"time\":0.7}])"
info: [debug] Sending command to instruments: target.touch([{"touch":[{"x":384,"y":93}],"time":0.2},{"touch":[{"x":384,"y":93}],"time":0.7}])

info: [IOS_SYSLOG_ROW ] Dec  5 18:42:01 coremails-iPad backboardd[29] <Error>: HID: The 'Rate Controlled' connection 'ScriptAgent' access to protected services is denied.

info: [IOS_SYSLOG_ROW ] Dec  5 18:42:01 coremails-iPad kernel[0] <Debug>: 481750.671063 wlan.A[64314] AppleBCMWLANNetManager::checkRealTimeTraffic():  now 481750.671041708 num entries 4

info: [IOS_SYSLOG_ROW ] Dec  5 18:42:01 coremails-iPad kernel[0] <Debug>: 481750.671127 wlan.A[64315] AppleBCMWLANCore::dumpWmeCounters():  per TIDs tx counters: 358053 111996 0 0 0 0 47703 0, per TIDs rx counters: 5023171 1792396 0 0 0 147993 261313 0
info: [IOS_SYSLOG_ROW ] Dec  5 18:42:01 coremails-iPad kernel[0] <Debug>: 481750.671177 wlan.A[64316] AppleBCMWLANCore::dumpWmeCounters():                AWDL: Tx 2 0 0 0 0 0 0 0,                   Rx: 0 0 0 0 0 0 0 0

info: [debug] [INST] 2014-12-05 10:42:01 +0000 Debug: Got new command 6 from instruments: target.touch([{"touch":[{"x":384,"y":93}],"time":0.2},{"touch":[{"x":384,"y":93}],"time":0.7}])

info: [debug] [INST] 2014-12-05 10:42:01 +0000 Debug: evaluating target.touch([{"touch":[{"x":384,"y":93}],"time":0.2},{"touch":[{"x":384,"y":93}],"time":0.7}])

info: [debug] [INST] 2014-12-05 10:42:01 +0000 Debug: target.touch(__NSCFArray)

info: [IOS_SYSLOG_ROW ] Dec  5 18:42:02 coremails-iPad Coremail[3657] <Warning>: [CPOrgManagerViewController.m 884]: 点击下级目录

info: [IOS_SYSLOG_ROW ] Dec  5 18:42:02 coremails-iPad Coremail[3657] <Warning>: [CPHttpClient.m 377]: CPHttpClient _url = http://192.168.202.186/coremail//s?func=oab:listEx

info: [IOS_SYSLOG_ROW ] Dec  5 18:42:02 coremails-iPad Coremail[3657] <Warning>: [CPHttpClient.m 663]: Response: (null)
info: [IOS_SYSLOG_ROW ] Dec  5 18:42:02 coremails-iPad Coremail[3657] <Warning>: [CPHttpClient.m 664]: Request: <NSURLRequest: 0x16721e50> { URL: http://192.168.202.186/coremail//s?func=oab:listEx&sid=BAyFIlggYPtGhbhFZmggotSsWaIsgrDc }

info: [IOS_SYSLOG_ROW ] Dec  5 18:42:02 coremails-iPad Coremail[3657] <Warning>: [CPHttpClient.m 667]: redirectResponse http://192.168.202.186/coremail//s?func=oab:listEx&sid=BAyFIlggYPtGhbhFZmggotSsWaIsgrDc

info: [IOS_SYSLOG_ROW ] Dec  5 18:42:02 coremails-iPad Coremail[3657] <Warning>: [CPHttpClient.m 377]: CPHttpClient _url = http://192.168.202.186/coremail//s?func=user:login

info: [IOS_SYSLOG_ROW ] Dec  5 18:42:02 coremails-iPad Coremail[3657] <Warning>: [CPHttpClient.m 663]: Response: (null)

info: [IOS_SYSLOG_ROW ] Dec  5 18:42:02 coremails-iPad Coremail[3657] <Warning>: [CPHttpClient.m 664]: Request: <NSURLRequest: 0x1672c760> { URL: http://192.168.202.186/coremail//s?func=user:login&uid=oab_1%40reg186.cn }
info: [IOS_SYSLOG_ROW ] Dec  5 18:42:02 coremails-iPad Coremail[3657] <Warning>: [CPHttpClient.m 667]: redirectResponse http://192.168.202.186/coremail//s?func=user:login&uid=oab_1%40reg186.cn

info: [debug] Socket data received (25 bytes)

info: [debug] Socket data being routed.
info: [debug] Got result from instruments: {"status":0,"value":""}
info: [debug] Responding to client with success: {"status":0,"value":"","sessionId":"c5529f64-c86a-43e6-b03d-82294e0a5709"}
info: <-- POST /wd/hub/session/c5529f64-c86a-43e6-b03d-82294e0a5709/touch/perform 200 2784.844 ms - 74 {"status":0,"value":"","sessionId":"c5529f64-c86a-43e6-b03d-82294e0a5709"}

info: [IOS_SYSLOG_ROW ] Dec  5 18:42:02 coremails-iPad Coremail[3657] <Warning>: [CPHttpClient.m 377]: CPHttpClient _url = http://192.168.202.186/coremail//s?func=oab:listEx

info: [IOS_SYSLOG_ROW ] Dec  5 18:42:02 coremails-iPad Coremail[3657] <Warning>: [CPHttpClient.m 663]: Response: (null)

info: [IOS_SYSLOG_ROW ] Dec  5 18:42:02 coremails-iPad Coremail[3657] <Warning>: [CPHttpClient.m 664]: Request: <NSURLRequest: 0x16754060> { URL: http://192.168.202.186/coremail//s?func=oab:listEx&sid=BAQFIlggAPkohbhFZmggVvEkOIQSLqoc }

info: [IOS_SYSLOG_ROW ] Dec  5 18:42:02 coremails-iPad Coremail[3657] <Warning>: [CPHttpClient.m 667]: redirectResponse http://192.168.202.186/coremail//s?func=oab:listEx&sid=BAQFIlggAPkohbhFZmggVvEkOIQSLqoc

info: --> POST /wd/hub/session/c5529f64-c86a-43e6-b03d-82294e0a5709/element {"using":"class name","value":"UIATableView"}

info: [debug] Waiting up to 0ms for condition
info: [debug] Pushing command to appium work queue: "au.getElementByType('UIATableView')"
info: [debug] Sending command to instruments: au.getElementByType('UIATableView')

info: [debug] [INST] 2014-12-05 10:42:02 +0000 Debug: evaluation finished

info: [debug] [INST] 2014-12-05 10:42:02 +0000 Debug: responding with:
info: [debug] [INST] 2014-12-05 10:42:02 +0000 Debug: Running system command #7: /Applications/Appium.app/Contents/Resources/node/bin/node /Applications/Appium.app/Contents/Resources/node_modules/appium/node_modules/appium-uiauto/bin/command-proxy-client.js /tmp/instruments_sock 2,{"status":0,"value":""}...

info: --> GET /wd/hub/status {}

info: [debug] Responding to client with success: {"status":0,"value":{"build":{"version":"1.3.3","revision":"34e21b01b87d4e3959e1c97c0a8d0b1a610bdc78"},"isShuttingDown":false},"sessionId":"c5529f64-c86a-43e6-b03d-82294e0a5709"}

info: <-- GET /wd/hub/status 200 4.468 ms - 178 {"status":0,"value":{"build":{"version":"1.3.3","revision":"34e21b01b87d4e3959e1c97c0a8d0b1a610bdc78"},"isShuttingDown":false},"sessionId":"c5529f64-c86a-43e6-b03d-82294e0a5709"}

info: [debug] [INST] 2014-12-05 10:42:04 +0000 Debug: Got new command 7 from instruments: au.getElementByType('UIATableView')

info: [debug] [INST] 2014-12-05 10:42:04 +0000 Debug: evaluating au.getElementByType('UIATableView')

info: [debug] [INST] 2014-12-05 10:42:05 +0000 Debug: evaluation finished

info: [debug] [INST] 2014-12-05 10:42:05 +0000 Debug: Lookup returned [object UIATableView] with the name "空列表" (id: 2).
       2014-12-05 10:42:05 +0000 Debug: responding with:

info: [debug] [INST] 2014-12-05 10:42:05 +0000 Debug: Running system command #8: /Applications/Appium.app/Contents/Resources/node/bin/node /Applications/Appium.app/Contents/Resources/node_modules/appium/node_modules/appium-uiauto/bin/command-proxy-client.js /tmp/instruments_sock 2,{"status":0,"value":{"ELEMENT":"2"}}...

info: [debug] Socket data received (38 bytes)

info: [debug] Socket data being routed.

info: [debug] Got result from instruments: {"status":0,"value":{"ELEMENT":"2"}}
info: [debug] Responding to client with success: {"status":0,"value":{"ELEMENT":"2"},"sessionId":"c5529f64-c86a-43e6-b03d-82294e0a5709"}
info: <-- POST /wd/hub/session/c5529f64-c86a-43e6-b03d-82294e0a5709/element 200 1483.262 ms - 87 {"status":0,"value":{"ELEMENT":"2"},"sessionId":"c5529f64-c86a-43e6-b03d-82294e0a5709"}

info: --> POST /wd/hub/session/c5529f64-c86a-43e6-b03d-82294e0a5709/element/2/element {"id":"2","using":"-ios uiautomation","value":".scrollToElementWithPredicate(\"name CONTAINS 'x55mgp2u_2, x55mgp2u_2@reg186.cn, reg186.cn'\")"}
info: [debug] Waiting up to 0ms for condition
info: [debug] Pushing command to appium work queue: "au.getElementByUIAutomation('.scrollToElementWithPredicate(\\\"name CONTAINS \\'x55mgp2u_2, x55mgp2u_2@reg186.cn, reg186.cn\\'\\\")', '2')"
info: [debug] Sending command to instruments: au.getElementByUIAutomation('.scrollToElementWithPredicate(\"name CONTAINS \'x55mgp2u_2, x55mgp2u_2@reg186.cn, reg186.cn\'\")', '2')

info: [debug] [INST] 2014-12-05 10:42:06 +0000 Debug: Got new command 8 from instruments: au.getElementByUIAutomation('.scrollToElementWithPredicate(\"name CONTAINS \'x55mgp2u_2, x55mgp2u_2@reg186.cn, reg186.cn\'\")', '2')

info: [debug] [INST] 2014-12-05 10:42:06 +0000 Debug: evaluating au.getElementByUIAutomation('.scrollToElementWithPredicate(\"name CONTAINS \'x55mgp2u_2, x55mgp2u_2@reg186.cn, reg186.cn\'\")', '2')

info: [debug] [INST] 2014-12-05 10:42:06 +0000 Debug: byUIAutomation: evaluating code: $.getElement('2').scrollToElementWithPredicate("name CONTAINS 'x55mgp2u_2, x55mgp2u_2@reg186.cn, reg186.cn'")

info: [debug] [INST] 2014-12-05 10:42:06 +0000 Debug: evaluation finished
info: [debug] [INST] 2014-12-05 10:42:06 +0000 Debug: responding with:
info: [debug] [INST] 2014-12-05 10:42:06 +0000 Debug: Running system command #9: /Applications/Appium.app/Contents/Resources/node/bin/node /Applications/Appium.app/Contents/Resources/node_modules/appium/node_modules/appium-uiauto/bin/command-proxy-client.js /tmp/instruments_sock 2,{"status":0,"value":""}...

info: [debug] Socket data received (25 bytes)

info: [debug] Socket data being routed.
info: [debug] Got result from instruments: {"status":0,"value":""}
info: [debug] Condition unmet after 1063ms. Timing out.

info: [debug] Responding to client with error: {"status":7,"value":{"message":"An element could not be located on the page using the given search parameters.","origValue":""},"sessionId":"c5529f64-c86a-43e6-b03d-82294e0a5709"}
info: <-- POST /wd/hub/session/c5529f64-c86a-43e6-b03d-82294e0a5709/element/2/element 500 1067.686 ms - 179 
TikhomirovSergey commented 9 years ago

It is interesting! I think it is server-side problem. Is it Chinese?

liqing380 commented 9 years ago

@TikhomirovSergey yes the language of ipad device is Chinese.

TikhomirovSergey commented 9 years ago

Have you used the Appium inspector?

Does it show you

name: x55mgp2u_2, x55mgp2u_2@reg186.cn, reg186.cn type: UIAStaticText value: label: x55mgp2u_2, x55mgp2u_2@reg186.cn, reg186.cn

?

Is actual text Chinese?

liqing380 commented 9 years ago

@TikhomirovSergey yes ,i use Appium inspector ,and it show you the UIAStaticText info is

name: x55mgp2u_2, x55mgp2u_2@reg186.cn, reg186.cn
type: UIAStaticText
value: 
label: x55mgp2u_2, x55mgp2u_2@reg186.cn, reg186.cn
enabled: true
visible: false
valid: true
location: {0, 966}
size: {768, 58}
xpath: //UIAApplication[1]/UIAWindow[1]/UIATableView[2]/UIATableCell[29]/UIAStaticText[1]
TikhomirovSergey commented 9 years ago

Ok I don't like this

i"au.getElementByUIAutomation('.scrollToElementWithPredicate(\"name CONTAINS \'x55mgp2u_2, x55mgp2u_2@reg186.cn, reg186.cn\'\")', '2')"

If the real text is on Chinese have you tried to use Chinese symbols at

appDriver.scrollTo("actual text");

?

I suspect server-side problem or the problem of the inspector. Maybe @Jonahss knows more :(

liqing380 commented 9 years ago

@TikhomirovSergey hmm,the real text have no Chinese character and "x55mgp2u_2, x55mgp2u_2@reg186.cn, reg186.cn" is the real text i see from the ipad screen as well as Appium inspector.

TikhomirovSergey commented 9 years ago

Ok. Lets wait for @Jonahss 's answer. It is interesting. If it is possible can you attach your app to this ticket? It think there can be something unusual. I could try on it later. Here is no Mac :(

TikhomirovSergey commented 9 years ago

What if you try to use shorter text without commas and spaces?

appDriver.scrollTo("x55mgp2u_2");

Does it work?

liqing380 commented 9 years ago

@TikhomirovSergey

appDriver.scrollTo("x55mgp2u_2"); appDriver.scrollTo("x55mgp2u_2@reg186.cn");

got the same error.

/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// and then i i try to find a element with Chinese character like:

appDriver.scrollTo("Test邮件123_47");

the same error is :

org.openqa.selenium.NoSuchElementException: An element could not be located on the page using the given search parameters.

the element info is :

name: 16:39, x55mgp2u_2  , Test邮件123_47,  Test内容123
type: UIAStaticText
value: 
label: 16:39, x55mgp2u_2  , Test邮件123_47,  Test内容123
enabled: true
visible: false
valid: true
location: {0, 820}
size: {768, 68}
xpath: //UIAApplication[1]/UIAWindow[1]/UIATableView[2]/UIATableCell[48]/UIAStaticText[1]

appium.log:

info: Welcome to Appium v1.3.3 (REV 34e21b01b87d4e3959e1c97c0a8d0b1a610bdc78)

info: Appium REST http interface listener started on 0.0.0.0:4723
info: [debug] Non-default server args: {"app":"cn.coremail.CoremailPush","udid":"7cb45aefaaa0252295c98ebb59a66dee8d6103b9","launchTimeout":"90000","deviceName":"iPad 2","showSimulatorLog":true,"defaultCommandTimeout":7200}
warn: Deprecated server args: {"--show-sim-log":"use instead: --show-ios-log"}
info: Console LogLevel: debug

info: --> GET /wd/hub/status {}

info: [debug] Responding to client with success: {"status":0,"value":{"build":{"version":"1.3.3","revision":"34e21b01b87d4e3959e1c97c0a8d0b1a610bdc78"}}}

info: <-- GET /wd/hub/status 200 10.187 ms - 104 {"status":0,"value":{"build":{"version":"1.3.3","revision":"34e21b01b87d4e3959e1c97c0a8d0b1a610bdc78"}}}

info: --> GET /wd/hub/status {}

info: [debug] Responding to client with success: {"status":0,"value":{"build":{"version":"1.3.3","revision":"34e21b01b87d4e3959e1c97c0a8d0b1a610bdc78"}}}

info: <-- GET /wd/hub/status 200 2.596 ms - 104 {"status":0,"value":{"build":{"version":"1.3.3","revision":"34e21b01b87d4e3959e1c97c0a8d0b1a610bdc78"}}}

info: --> GET /wd/hub/status {}

info: [debug] Responding to client with success: {"status":0,"value":{"build":{"version":"1.3.3","revision":"34e21b01b87d4e3959e1c97c0a8d0b1a610bdc78"}}}

info: <-- GET /wd/hub/status 200 1.763 ms - 104 {"status":0,"value":{"build":{"version":"1.3.3","revision":"34e21b01b87d4e3959e1c97c0a8d0b1a610bdc78"}}}

info: --> GET /wd/hub/status {}

info: [debug] Responding to client with success: {"status":0,"value":{"build":{"version":"1.3.3","revision":"34e21b01b87d4e3959e1c97c0a8d0b1a610bdc78"}}}

info: <-- GET /wd/hub/status 200 2.327 ms - 104 {"status":0,"value":{"build":{"version":"1.3.3","revision":"34e21b01b87d4e3959e1c97c0a8d0b1a610bdc78"}}}

info: --> POST /wd/hub/session {"desiredCapabilities":{"newCommandTimeout":"600","interKeyDelay":"0","automationName":"appium","app":"/Users/coremail/Downloads/TestCoremailPushApp_dev6.19.ipa","platformVersion":"7.1","deviceName":"coremail's Ipad","platformName":"iOS","browserName":"","sendKeyStrategy":"grouped"}}

info: Client User-Agent string: Apache-HttpClient/4.3.3 (java 1.5)

info: [debug] The following desired capabilities were provided, but not recognized by appium. They will be passed on to any other services running on this server. : sendKeyStrategy
info: [debug] Using local .ipa from desired caps: /Users/coremail/Downloads/TestCoremailPushApp_dev6.19.ipa
info: [debug] Copying local zip to tmp dir

info: [debug] /Users/coremail/Downloads/TestCoremailPushApp_dev6.19.ipa copied to /var/folders/yl/hhv7hynn1yz2gv1ccl2z2sr40000gn/T/114115-14534-tcn6p8/appium-app.zip

info: [debug] Unzipping /var/folders/yl/hhv7hynn1yz2gv1ccl2z2sr40000gn/T/114115-14534-tcn6p8/appium-app.zip

info: [debug] Testing zip archive: /var/folders/yl/hhv7hynn1yz2gv1ccl2z2sr40000gn/T/114115-14534-tcn6p8/appium-app.zip

info: [debug] Zip archive tested clean

info: [debug] Unzip successful

info: [debug] Using locally extracted app: /var/folders/yl/hhv7hynn1yz2gv1ccl2z2sr40000gn/T/114115-14534-tcn6p8/Payload/Coremail.app

info: [debug] Creating new appium session 490bf967-85d1-43f9-aba4-b5d8f940a0e4
info: [debug] Removing any remaining instruments sockets
info: [debug] Cleaned up instruments socket /tmp/instruments_sock
info: [debug] Setting Xcode folder

info: [debug] Setting Xcode version

info: [debug] Setting iOS SDK Version

info: [debug] Getting sdk version from xcrun with a timeout

info: [debug] iOS SDK Version set to 8.0

info: [debug] Not checking whether simulator is available since we're on a real device
info: [debug] Detecting automation tracetemplate

info: [debug] Not auto-detecting udid, running on sim

info: [debug] Parsed app Info.plist (as binary)
info: [debug] Parsed app Localizable.strings
info: [debug] Getting bundle ID from app
info: [debug] Parsed app Info.plist (as binary)
info: [debug] Creating instruments
info: On some xcode 6 platforms, instruments-without-delay does not work. If you experience this, you will need to re-run appium with the --native-instruments-lib flag
info: [debug] Preparing uiauto bootstrap
info: [debug] Dynamic bootstrap dir: /Users/coremail/Library/Application Support/appium/bootstrap
info: [debug] Dynamic env: {"nodePath":"/Applications/Appium.app/Contents/Resources/node/bin/node","commandProxyClientPath":"/Applications/Appium.app/Contents/Resources/node_modules/appium/node_modules/appium-uiauto/bin/command-proxy-client.js","instrumentsSock":"/tmp/instruments_sock","interKeyDelay":"0","justLoopInfinitely":false,"autoAcceptAlerts":false,"sendKeyStrategy":"grouped"}

info: [debug] Dynamic bootstrap code: // This file is automatically generated. Do not manually modify!
...

info: [debug] Dynamic bootstrap path: /Users/coremail/Library/Application Support/appium/bootstrap/bootstrap-7aa2c740f2349d35.js
info: [debug] Reusing dynamic bootstrap: /Users/coremail/Library/Application Support/appium/bootstrap/bootstrap-7aa2c740f2349d35.js
info: [debug] Getting device string from opts: {"forceIphone":false,"forceIpad":false,"xcodeVersion":"6.0.1","iOSSDKVersion":"8.0","deviceName":"coremail's Ipad","platformVersion":"7.1"}
info: [debug] fixDevice is on
info: [debug] Final device string is: 'coremail's Ipad (7.1 Simulator)'
info: [debug] Not setting device type since we're on a real device
info: [debug] Checking whether we need to set app preferences
info: [debug] Not setting iOS and app preferences since we're on a real device
info: [debug] Running ios sim reset flow
info: [debug] Killing the simulator process
info: [debug] Killall iOS Simulator
info: [debug] Killing any other simulator daemons

info: [debug] On a real device; cannot clean device state

info: [debug] Not setting locale because we're using a real device
info: [debug] No iOS / app preferences to set
info: [debug] Starting iOS device log capture via deviceconsole

info: [debug] Not pre-launching simulator

info: [debug] Creating iDevice object with udid 7cb45aefaaa0252295c98ebb59a66dee8d6103b9

info: [debug] Checking app install status using: /Applications/Appium.app/Contents/Resources/node_modules/appium/build/fruitstrap/fruitstrap isInstalled --id 7cb45aefaaa0252295c98ebb59a66dee8d6103b9 --bundle cn.coremail.CoremailPush

info: [debug] App is installed.

info: [debug] fullReset not requested. No need to install.
info: [debug] Starting command proxy.

info: [debug] Instruments socket server started at /tmp/instruments_sock
info: [debug] Starting instruments

info: [debug] Instruments is at: /Applications/Xcode.app/Contents/Developer/usr/bin/instruments
info: Launching instruments
info: [debug] Attempting to run app on real device with UDID 7cb45aefaaa0252295c98ebb59a66dee8d6103b9
info: [debug] Spawning instruments with command: /Applications/Xcode.app/Contents/Developer/usr/bin/instruments -t /Applications/Xcode.app/Contents/Applications/Instruments.app/Contents/PlugIns/AutomationInstrument.xrplugin/Contents/Resources/Automation.tracetemplate -D /tmp/appium-instruments/instrumentscli0.trace -w 7cb45aefaaa0252295c98ebb59a66dee8d6103b9 cn.coremail.CoremailPush -e UIASCRIPT "/Users/coremail/Library/Application Support/appium/bootstrap/bootstrap-7aa2c740f2349d35.js" -e UIARESULTSPATH /tmp/appium-instruments
info: [debug] And extra without-delay env: {}
info: [debug] And launch timeouts (in ms): {"global":90000}

info: [IOS_SYSLOG_ROW ] Dec  5 19:47:58 coremails-iPad mobile_installation_proxy[126] <Error>: 0x2c5000 handle_connection: Could not receive request from host.

info: [debug] [INST STDERR] 2014-12-05 19:47:59.816 instruments[14563:1d07] WebKit Threading Violation - initial use of WebKit from a secondary thread.

info: [IOS_SYSLOG_ROW ] Dec  5 19:48:01 coremails-iPad DTMobileIS[3684] <Warning>: Could not create service named com.apple.instruments.server.services.launchdaemon

info: [IOS_SYSLOG_ROW ] Dec  5 19:48:01 coremails-iPad DTMobileIS[3684] <Warning>: Could not create service named com.apple.instruments.server.services.device.xpccontrol

info: [IOS_SYSLOG_ROW ] Dec  5 19:48:01 coremails-iPad DTMobileIS[3684] <Warning>: Could not create service named com.apple.instruments.server.services.processcontrol.posixspawn

info: [IOS_SYSLOG_ROW ] Dec  5 19:48:01 coremails-iPad DTMobileIS[3684] <Warning>: Could not create service named com.apple.instruments.server.services.device.applictionListing

info: [IOS_SYSLOG_ROW ] Dec  5 19:48:02 coremails-iPad kernel[0] <Debug>: launchd[3685] Container: /private/var/mobile/Applications/4440A2C7-7DAD-4639-B941-2649B181F62E (sandbox)

info: [IOS_SYSLOG_ROW ] Dec  5 19:48:02 coremails-iPad backboardd[29] <Error>: HID: The 'Passive' connection 'Coremail' access to protected services is denied.

info: [IOS_SYSLOG_ROW ] Dec  5 19:48:02 coremails-iPad lockdownd[52] <Notice>: 002c3000 set_response_error: handle_start_session SessionActive

info: [IOS_SYSLOG_ROW ] Dec  5 19:48:02 coremails-iPad DTMobileIS[3684] <Error>: CoreLocation: could not chmod /var/mobile/Library/Preferences/com.apple.CoreMotion.plist errno 2 (No such file or directory)

info: [IOS_SYSLOG_ROW ] Dec  5 19:48:02 coremails-iPad DTMobileIS[3684] <Error>: CoreLocation: could not chown /var/mobile/Library/Preferences/com.apple.CoreMotion.plist errno 2 (No such file or directory)

info: [IOS_SYSLOG_ROW ] Dec  5 19:48:02 coremails-iPad Coremail[3685] <Warning>: [CPCoreData.m 151]: data: 1979

info: [IOS_SYSLOG_ROW ] Dec  5 19:48:03 coremails-iPad DTMobileIS[3684] <Warning>: CLTilesManagerClient: initialize, sSharedTilesManagerClient

info: [IOS_SYSLOG_ROW ] Dec  5 19:48:03 coremails-iPad DTMobileIS[3684] <Warning>: CLTilesManagerClient: init

info: [IOS_SYSLOG_ROW ] Dec  5 19:48:03 coremails-iPad DTMobileIS[3684] <Warning>: CLTilesManagerClient: reconnecting, 0x16e18d90

info: [IOS_SYSLOG_ROW ] Dec  5 19:48:03 coremails-iPad Coremail[3685] <Warning>: [CPMailViewController.m 240]: CPMailViewController frame {{0, 0}, {768, 960}}

info: [IOS_SYSLOG_ROW ] Dec  5 19:48:03 coremails-iPad Coremail[3685] <Warning>: Could not load the "avtar.png" image referenced from a nib in the bundle with identifier "cn.coremail.CoremailPush"

info: [IOS_SYSLOG_ROW ] Dec  5 19:48:03 coremails-iPad Coremail[3685] <Warning>: [CPHttpClient.m 377]: CPHttpClient _url = http://192.168.202.186/coremail//s?func=user:getHeadImageData

info: [IOS_SYSLOG_ROW ] Dec  5 19:48:03 coremails-iPad Coremail[3685] <Warning>: [CPHttpClient.m 663]: Response: (null)

info: [IOS_SYSLOG_ROW ] Dec  5 19:48:03 coremails-iPad Coremail[3685] <Warning>: [CPHttpClient.m 664]: Request: <NSURLRequest: 0x17eda710> { URL: http://192.168.202.186/coremail//s?func=user:getHeadImageData&sid=BAGFIlggWujohbYFZmggNjLOJxIsgrDc }

info: [IOS_SYSLOG_ROW ] Dec  5 19:48:03 coremails-iPad Coremail[3685] <Warning>: [CPHttpClient.m 667]: redirectResponse http://192.168.202.186/coremail//s?func=user:getHeadImageData&sid=BAGFIlggWujohbYFZmggNjLOJxIsgrDc

info: [IOS_SYSLOG_ROW ] Dec  5 19:48:03 coremails-iPad Coremail[3685] <Warning>: [CPAppDelegate.m 121]: currentVersion = 1.5.3

info: [IOS_SYSLOG_ROW ] Dec  5 19:48:03 coremails-iPad Coremail[3685] <Warning>: [CPAppDelegate.m 127]: lastRunVersion = 1.5.3

info: [IOS_SYSLOG_ROW ] Dec  5 19:48:03 coremails-iPad ScriptAgent[3686] <Warning>: CLTilesManagerClient: initialize, sSharedTilesManagerClient

info: [IOS_SYSLOG_ROW ] Dec  5 19:48:03 coremails-iPad ScriptAgent[3686] <Warning>: CLTilesManagerClient: init

info: [IOS_SYSLOG_ROW ] Dec  5 19:48:03 coremails-iPad Coremail[3685] <Error>: Could not successfully update network info during initialization.

info: [IOS_SYSLOG_ROW ] Dec  5 19:48:03 coremails-iPad ScriptAgent[3686] <Warning>: CLTilesManagerClient: reconnecting, 0x155ca050

info: [IOS_SYSLOG_ROW ] Dec  5 19:48:03 coremails-iPad Coremail[3685] <Warning>: [CPNetworkmanager.m 50]: The internet is working via WIFI.

info: [IOS_SYSLOG_ROW ] Dec  5 19:48:03 coremails-iPad Coremail[3685] <Warning>: [CPNetworkmanager.m 73]: A gateway to the host server is working via WIFI.

info: [IOS_SYSLOG_ROW ] Dec  5 19:48:03 coremails-iPad Coremail[3685] <Warning>: imapsession timeout:15.000000

info: [IOS_SYSLOG_ROW ] Dec  5 19:48:03 coremails-iPad Coremail[3685] <Warning>: [CPIMapMailSource.m 103]: checking account

info: [IOS_SYSLOG_ROW ] Dec  5 19:48:03 coremails-iPad Coremail[3685] <Warning>: [MainVcl.m 372]: Last composing message exist: 0

info: [IOS_SYSLOG_ROW ] Dec  5 19:48:03 coremails-iPad wifid[15] <Error>: WiFi:[439472883.961060]: Enable WoW requested by "UserEventAgent"

info: [IOS_SYSLOG_ROW ] Dec  5 19:48:03 coremails-iPad wifid[15] <Notice>: WiFi:[439472883.961589]: Client UserEventAgent set type to background application

info: [IOS_SYSLOG_ROW ] Dec  5 19:48:03 coremails-iPad wifid[15] <Notice>: WiFi:[439472883.963239]: BG Application: Not Present, BG Daemon: Present. Daemons: apsd dataaccessd networkd UserEventAgent MobileMail lockdownd
info: [IOS_SYSLOG_ROW ] Dec  5 19:48:03 coremails-iPad wifid[15] <Notice>: WiFi:[439472883.964624]: Already connected to Coremail-R&D.
info: [IOS_SYSLOG_ROW ] Dec  5 19:48:03 coremails-iPad Coremail[3685] <Warning>: [CPIMapMailSource.m 89]: event logged:0x17e203d0 0 withData: * OK Coremail System IMap Server Ready(mailtech-test[c2dea5190f052feb69d1ebea946d95b2])
info: [IOS_SYSLOG_ROW ] Dec  5 19:48:03 coremails-iPad Coremail[3685] <Warning>: [CPIMapMailSource.m 89]: event logged:0x17e203d0 1 withData: 1 CAPABILITY
info: [IOS_SYSLOG_ROW ] Dec  5 19:48:03 coremails-iPad Coremail[3685] <Warning>: [CPIMapMailSource.m 89]: event logged:0x17e203d0 0 withData: * CAPABILITY IMAP4rev1 XLIST SPECIAL-USE ID LITERAL+ STARTTLS ENABLE UTF8=APPEND UTF8=USER UTF8=ALL
info: [IOS_SYSLOG_ROW ] 1 OK CAPABILITY completed

info: [IOS_SYSLOG_ROW ] Dec  5 19:48:04 coremails-iPad Coremail[3685] <Warning>: [CPIMapMailSource.m 89]: event logged:0x17e203d0 0 withData: 2 OK LOGIN completed
info: [IOS_SYSLOG_ROW ] Dec  5 19:48:04 coremails-iPad Coremail[3685] <Warning>: [CPIMapMailSource.m 89]: event logged:0x17e203d0 1 withData: 3 CAPABILITY
info: [IOS_SYSLOG_ROW ] Dec  5 19:48:04 coremails-iPad Coremail[3685] <Warning>: [CPIMapMailSource.m 89]: event logged:0x17e203d0 0 withData: * CAPABILITY IMAP4rev1 XLIST SPECIAL-USE ID LITERAL+ STARTTLS ENABLE UTF8=APPEND UTF8=USER UTF8=ALL
info: [IOS_SYSLOG_ROW ] 3 OK CAPABILITY completed
info: [IOS_SYSLOG_ROW ] Dec  5 19:48:04 coremails-iPad Coremail[3685] <Warning>: [CPIMapMailSource.m 89]: event logged:0x17e203d0 1 withData: 4 LIST "" ""
info: [IOS_SYSLOG_ROW ] Dec  5 19:48:04 coremails-iPad Coremail[3685] <Warning>: [CPIMapMailSource.m 89]: event logged:0x17e203d0 0 withData: * LIST (\Noselect) "/" ""
info: [IOS_SYSLOG_ROW ] 4 OK LIST Completed

info: [IOS_SYSLOG_ROW ] Dec  5 19:48:04 coremails-iPad Coremail[3685] <Warning>: [CPIMapMailSource.m 89]: event logged:0x17e203d0 1 withData: 5 ID NIL
info: [IOS_SYSLOG_ROW ] Dec  5 19:48:04 coremails-iPad Coremail[3685] <Warning>: [CPIMapMailSource.m 89]: event logged:0x17e203d0 0 withData: * ID ("name" "Coremail Imap" "vendor" "Mailtech" "TransID" "wKg3YkBJBAB1m4FU")
info: [IOS_SYSLOG_ROW ] 5 OK ID completed
info: [IOS_SYSLOG_ROW ] Dec  5 19:48:04 coremails-iPad Coremail[3685] <Warning>: [CPIMapMailSource.m 89]: event logged:0x17e203d0 1 withData: 6 STATUS INBOX (UNSEEN MESSAGES RECENT UIDNEXT UIDVALIDITY)
info: [IOS_SYSLOG_ROW ] Dec  5 19:48:04 coremails-iPad Coremail[3685] <Warning>: [CPIMapMailSource.m 89]: event logged:0x17e203d0 0 withData: * STATUS "INBOX" (MESSAGES 76 RECENT 76 UIDVALIDITY 1 UNSEEN 76)
info: [IOS_SYSLOG_ROW ] 6 OK STATUS completed
info: [IOS_SYSLOG_ROW ] Dec  5 19:48:04 coremails-iPad Coremail[3685] <Warning>: imapsession timeout:15.000000
info: [IOS_SYSLOG_ROW ] Dec  5 19:48:04 coremails-iPad Coremail[3685] <Warning>: [CPIMapMailSource.m 89]: event logged:0x17e203d0 1 withData: 7 XLIST "" "*"

info: [IOS_SYSLOG_ROW ] Dec  5 19:48:04 coremails-iPad Coremail[3685] <Warning>: [CPIMapMailSource.m 89]: event logged:0x17e203d0 0 withData: * XLIST (\Inbox) "/" "INBOX"
info: [IOS_SYSLOG_ROW ] * XLIST (\Drafts) "/" "Drafts"
info: [IOS_SYSLOG_ROW ] * XLIST (\Sent) "/" "Sent Items"
info: [IOS_SYSLOG_ROW ] * XLIST (\Trash) "/" "Trash"
info: [IOS_SYSLOG_ROW ] * XLIST (\Spam) "/" "Junk E-mail"
info: [IOS_SYSLOG_ROW ] * XLIST () "/" "Virus Items"
info: [IOS_SYSLOG_ROW ] * XLIST () "/" "&dShiN4HqXvo-abc"
info: [IOS_SYSLOG_ROW ] * XLIST () "/" "abc@123.com"
info: [IOS_SYSLOG_ROW ] 7 OK XLIST Completed
info: [IOS_SYSLOG_ROW ] Dec  5 19:48:04 coremails-iPad Coremail[3685] <Warning>: aryFolder = (
info: [IOS_SYSLOG_ROW ] "<mailcore::IMAPFolder:0x17db8ef0 INBOX>",
info: [IOS_SYSLOG_ROW ] "<mailcore::IMAPFolder:0x17dcec10 Drafts>",
info: [IOS_SYSLOG_ROW ] "<mailcore::IMAPFolder:0x17db53f0 Sent Items>",
info: [IOS_SYSLOG_ROW ] "<mailcore::IMAPFolder:0x17d6b7c0 Trash>",
info: [IOS_SYSLOG_ROW ] "<mailcore::IMAPFolder:0x17dee600 Junk E-mail>",
info: [IOS_SYSLOG_ROW ] "<mailcore::IMAPFolder:0x17db4cf0 Virus Items>",
info: [IOS_SYSLOG_ROW ] "<mailcore::IMAPFolder:0x17ded970 &dShiN4HqXvo-abc>",
info: [IOS_SYSLOG_ROW ] "<mailcore::IMAPFolder:0x17dee070 abc@123.com>"
info: [IOS_SYSLOG_ROW ] )
info: [IOS_SYSLOG_ROW ] Dec  5 19:48:04 coremails-iPad Coremail[3685] <Warning>: [CPIMapMailSource.m 111]: finished checking account.
info: [IOS_SYSLOG_ROW ] Dec  5 19:48:04 coremails-iPad Coremail[3685] <Warning>: mailsource oldFolderSubscript = 0  ,  id = 6809767
info: [IOS_SYSLOG_ROW ] Dec  5 19:48:04 coremails-iPad Coremail[3685] <Warning>: mailsource oldFolderSubscript = 0  ,  id = 6
info: [IOS_SYSLOG_ROW ] Dec  5 19:48:04 coremails-iPad Coremail[3685] <Warning>: mailsource oldFolderSubscript = 0  ,  id = 5
info: [IOS_SYSLOG_ROW ] Dec  5 19:48:04 coremails-iPad Coremail[3685] <Warning>: mailsource oldFolderSubscript = 0  ,  id = 3
info: [IOS_SYSLOG_ROW ] Dec  5 19:48:04 coremails-iPad Coremail[3685] <Warning>: mailsource oldFolderSubscript = 0  ,  id = 2
info: [IOS_SYSLOG_ROW ] Dec  5 19:48:04 coremails-iPad Coremail[3685] <Warning>: mailsource oldFolderSubscript = 0  ,  id = 4

info: [IOS_SYSLOG_ROW ] Dec  5 19:48:04 coremails-iPad Coremail[3685] <Warning>: mailsource oldFolderSubscript = 1  ,  id = 1
info: [IOS_SYSLOG_ROW ] Dec  5 19:48:04 coremails-iPad Coremail[3685] <Warning>: mailsource oldFolderSubscript = 0  ,  id = 6809768
info: [IOS_SYSLOG_ROW ] Dec  5 19:48:04 coremails-iPad Coremail[3685] <Warning>: mailsource oldFolderSubscript = {
info: [IOS_SYSLOG_ROW ] 1 = 1;
info: [IOS_SYSLOG_ROW ] 2 = 0;
info: [IOS_SYSLOG_ROW ] 3 = 0;
info: [IOS_SYSLOG_ROW ] 4 = 0;
info: [IOS_SYSLOG_ROW ] 5 = 0;
info: [IOS_SYSLOG_ROW ] 6 = 0;
info: [IOS_SYSLOG_ROW ] 6809767 = 0;
info: [IOS_SYSLOG_ROW ] 6809768 = 0;
info: [IOS_SYSLOG_ROW ] }

info: [IOS_SYSLOG_ROW ] Dec  5 19:48:04 coremails-iPad Coremail[3685] <Warning>: [CPIMapMailSource.m 89]: event logged:0x17dd31a0 0 withData: * OK Coremail System IMap Server Ready(mailtech-test[c2dea5190f052feb69d1ebea946d95b2])
info: [IOS_SYSLOG_ROW ] Dec  5 19:48:04 coremails-iPad Coremail[3685] <Warning>: [CPIMapMailSource.m 89]: event logged:0x17dd31a0 1 withData: 1 CAPABILITY
info: [IOS_SYSLOG_ROW ] Dec  5 19:48:04 coremails-iPad Coremail[3685] <Warning>: [CPIMapMailSource.m 89]: event logged:0x17dd31a0 0 withData: * CAPABILITY IMAP4rev1 XLIST SPECIAL-USE ID LITERAL+ STARTTLS ENABLE UTF8=APPEND UTF8=USER UTF8=ALL
info: [IOS_SYSLOG_ROW ] 1 OK CAPABILITY completed
info: [IOS_SYSLOG_ROW ] Dec  5 19:48:04 coremails-iPad Coremail[3685] <Warning>: [CPIMapMailSource.m 89]: event logged:0x17e203d0 1 withData: 8 SELECT INBOX
info: [IOS_SYSLOG_ROW ] Dec  5 19:48:04 coremails-iPad Coremail[3685] <Warning>: [CPIMapMailSource.m 89]: event logged:0x17dd31a0 0 withData: 2 OK LOGIN completed
info: [IOS_SYSLOG_ROW ] Dec  5 19:48:04 coremails-iPad Coremail[3685] <Warning>: [CPIMapMailSource.m 89]: event logged:0x17dd31a0 1 withData: 3 CAPABILITY
info: [IOS_SYSLOG_ROW ] Dec  5 19:48:04 coremails-iPad Coremail[3685] <Warning>: [CPIMapMailSource.m 89]: event logged:0x17e203d0 0 withData: * 76 EXISTS
info: [IOS_SYSLOG_ROW ] * 76 RECENT
info: [IOS_SYSLOG_ROW ] * OK [UIDVALIDITY 1] UIDs valid
info: [IOS_SYSLOG_ROW ] * FLAGS (\Answered \Seen \Deleted \Draft \Flagged)
info: [IOS_SYSLOG_ROW ] * OK [PERMANENTFLAGS (\Answered \Seen \Deleted \Draft \Flagged)] Limited
info: [IOS_SYSLOG_ROW ] 8 OK [READ-WRITE] SELECT completed

info: [IOS_SYSLOG_ROW ] Dec  5 19:48:04 coremails-iPad Coremail[3685] <Warning>: [CPIMapMailSource.m 89]: event logged:0x17dd31a0 0 withData: * CAPABILITY IMAP4rev1 XLIST SPECIAL-USE ID LITERAL+ STARTTLS ENABLE UTF8=APPEND UTF8=USER UTF8=ALL
info: [IOS_SYSLOG_ROW ] 3 OK CAPABILITY completed
info: [IOS_SYSLOG_ROW ] Dec  5 19:48:04 coremails-iPad Coremail[3685] <Warning>: [CPIMapMailSource.m 89]: event logged:0x17e203d0 1 withData: 9 FETCH 27:76 (UID FLAGS ENVELOPE BODY.PEEK[HEADER.FIELDS (References Subject)] BODYSTRUCTURE INTERNALDATE)

info: [IOS_SYSLOG_ROW ] Dec  5 19:48:04 coremails-iPad Coremail[3685] <Warning>: [CPIMapMailSource.m 89]: event logged:0x17dd31a0 1 withData: 4 LIST "" ""
info: [IOS_SYSLOG_ROW ] Dec  5 19:48:04 coremails-iPad Coremail[3685] <Warning>: [CPIMapMailSource.m 89]: event logged:0x17dd31a0 0 withData: * LIST (\Noselect) "/" ""
info: [IOS_SYSLOG_ROW ] 4 OK LIST Completed
info: [IOS_SYSLOG_ROW ] Dec  5 19:48:04 coremails-iPad Coremail[3685] <Warning>: [CPIMapMailSource.m 89]: event logged:0x17dd31a0 1 withData: 5 ID NIL
info: [IOS_SYSLOG_ROW ] Dec  5 19:48:04 coremails-iPad Coremail[3685] <Warning>: [CPIMapMailSource.m 89]: event logged:0x17dd31a0 0 withData: * ID ("name" "Coremail Imap" "vendor" "Mailtech" "TransID" "wKg3YkApBAB1m4FU")
info: [IOS_SYSLOG_ROW ] 5 OK ID completed
info: [IOS_SYSLOG_ROW ] Dec  5 19:48:04 coremails-iPad Coremail[3685] <Warning>: [CPIMapMailSource.m 89]: event logged:0x17dd31a0 1 withData: 6 STATUS "&dShiN4HqXvo-abc" (UNSEEN MESSAGES RECENT UIDNEXT UIDVALIDITY)
info: [IOS_SYSLOG_ROW ] Dec  5 19:48:04 coremails-iPad Coremail[3685] <Warning>: [CPIMapMailSource.m 89]: event logged:0x17dd31a0 0 withData: * STATUS "&dShiN4HqXvo-abc" (MESSAGES 0 RECENT 0 UIDVALIDITY 6809767 UNSEEN 0)
info: [IOS_SYSLOG_ROW ] 6 OK STATUS completed
info: [IOS_SYSLOG_ROW ] Dec  5 19:48:04 coremails-iPad Coremail[3685] <Warning>: [CPIMapMailSource.m 89]: event logged:0x17dd31a0 1 withData: 7 STATUS "Virus Items" (UNSEEN MESSAGES RECENT UIDNEXT UIDVALIDITY)
info: [IOS_SYSLOG_ROW ] Dec  5 19:48:04 coremails-iPad Coremail[3685] <Warning>: [CPIMapMailSource.m 89]: event logged:0x17dd31a0 0 withData: * STATUS "Virus Items" (MESSAGES 0 RECENT 0 UIDVALIDITY 6 UNSEEN 0)
info: [IOS_SYSLOG_ROW ] 7 OK STATUS completed
info: [IOS_SYSLOG_ROW ] Dec  5 19:48:04 coremails-iPad Coremail[3685] <Warning>: [CPIMapMailSource.m 89]: event logged:0x17dd31a0 1 withData: 8 STATUS "Junk E-mail" (UNSEEN MESSAGES RECENT UIDNEXT UIDVALIDITY)

info: [IOS_SYSLOG_ROW ] Dec  5 19:48:04 coremails-iPad Coremail[3685] <Warning>: [CPIMapMailSource.m 89]: event logged:0x17e203d0 0 withData: * 27 FETCH (UID 1417768761 INTERNALDATE " 5-Dec-2014 16:39:10 +0800" FLAGS () ENVELOPE ("Fri, 5 Dec 2014 16:39:10 +0800 (CST)" "=?UTF-8?B?VGVzdOmCruS7tjEyM181MA==?=" ((NIL NIL "x55mgp2u_2" "reg186.cn")) ((NIL NIL "x55mgp2u_2" "reg186.cn")) ((NIL NIL "x55mgp2u_2" "reg186.cn")) ((NIL NIL "x55mgp2u_1" "reg186.cn")) NIL NIL NIL "<998439725.53.1417768537593.JavaMail.mailtech@jli>") BODYSTRUCTURE (("text" "html" ("charset" "GBK") NIL NIL "quoted-printable" 21 1 NIL NIL NIL) "mixed" ("boundary" "----=_Part_52_1951283466.1417768537592") NIL NIL) BODY[HEADER.FIELDS (REFERENCES SUBJECT)] {47}
info: [IOS_SYSLOG_ROW ] Subject: =?GBK?Q?Test=D3=CA=BC=FE123=5F50?=
info: [IOS_SYSLOG_ROW ] )
info: [IOS_SYSLOG_ROW ] * 28 FETCH (UID 1417768762 INTERNALDATE " 5-Dec-2014 16:39:10 +0800" FLAGS () ENVELOPE ("Fri, 5 Dec 2014 16:39:10 +0800 (CST)" "=?UTF-8?B?VGVzdOmCruS7tjEyM180OQ==?=" ((NIL NIL "x55mgp2u_2" "reg186.cn")) ((NIL NIL "x55mgp2u_2" "reg186.cn")) ((NIL NIL "x55mgp2u_2" "reg186.cn")) ((NIL NIL "x55mgp2u_1" "reg186.cn")) NIL NIL NIL "<1682858997.55.1417768537731.JavaMail.mailtech@jli>") BODYSTRUCTURE (("text" "html" ("charset" "GBK") NIL NIL "quoted-printable" 21 1 NIL NIL NIL) "mixed" ("boundary" "----=_Part_54_23227072.1417768537729") NIL NIL) BODY[HEADER.FIELDS (REFERENCES SUBJECT)] {47}
info: [IOS_SYSLOG_ROW ] Subject: =?GBK?Q?Test=D3=CA=BC=FE123=5F49?=
info: [IOS_SYSLOG_ROW ] )
info: [IOS_SYSLOG_ROW ] * 29 FETCH (UID 1417768763 INTERNALDATE " 5-Dec-2014 16:39:10 +0800" FLAGS () ENVELOPE ("Fri, 5 Dec 2014 16:39:10 +0800 (CST)" "=?UTF-8?B?VGVzdOmCruS7tjEyM180OA==?=" ((NIL NIL "x55mgp2u_2" "reg186.cn")) ((NIL NIL "x55mgp2u_2" "reg186.cn")) ((NIL NIL "x55mgp2u_2" "reg186.cn")) ((NIL NIL "x55mgp2u_1" "reg186.cn")) NIL NIL NIL "<1477525092.57.1417768537868.JavaMail.mailtech@jli>") BODYSTRUCTURE (("text" "html" ("charset" "GBK") NIL NIL "quoted-printable" 21 1 NIL NIL NIL) "mixed" ("boundary" "----=_Part_56_1687715924.1417768537867") NIL NIL) BODY[HEADER.FIELDS (REFERENCES SUBJECT)] {47}
info: [IOS_SYSLOG_ROW ] Subject: =?GBK?Q?Test=D3=CA=BC=FE123=5F48?=
info: [IOS_SYSLOG_ROW ] )
info: [IOS_SYSLOG_ROW ] * 30 FETCH (UID 1417768764 INTERNALDATE " 5-Dec-2014 16:39:10 +0800" FLAGS () ENVELOPE ("Fri, 5 Dec 2014 16:39:10 +0800 (CST)" "=?UTF-8?B?VGVzdOmCruS7tjEyM180Nw==?=" ((NIL NIL "x55mgp2u_2" "reg186.cn")) ((NIL NIL "x55mgp2u_2" "reg186.cn")) ((NIL NIL "x55mgp2u_2" "reg186.cn")) ((NIL NIL "x55mgp2u_1" "reg186.cn")) NIL NIL NIL "<1983537947.59.1417768538020.JavaMail.mailtech@jli>") BODYSTRUCTURE (("text" "html" ("charset" "GBK") NIL NIL "quoted-printable" 21 1 NIL NIL NIL) "mixed" ("boundary" "----=_Part_58_1013614793.1417768538019") NIL NIL) BODY[HEADER.FIELDS (REFERENCES SUBJECT)] {47}
info: [IOS_SYSLOG_ROW ] Subject: =?GBK?Q?Test=D3=CA=BC=FE123=5F47?=
info: [IOS_SYSLOG_ROW ] )
info: [IOS_SYSLOG_ROW ] * 31 FETCH (UID 1417768765 INTERNALDATE " 5-Dec-2014 16:39:10 +0800" FLAGS () ENVELOPE ("Fri, 5 Dec 2014 16:39:10 +0800 (CST)" "=?UTF-8?B?VGVzdOmCruS7tjEyM180Ng==?=" ((NIL NIL "x55mgp2u_2" "reg186.cn")) ((NIL NIL "x55mgp2u_2" "reg186.cn")) ((NIL NIL "x55mgp2u_2" "reg186.cn")) ((NIL NIL "x55mgp2u_1" "reg186.cn")) NIL NIL NIL "<1988593046.61.1417768538168.JavaMail.mailtech@jli>") BODYSTRUCTURE (("text" "html" ("charset" "GBK") NIL NIL "quoted-printable" 21 1 NIL NIL NIL) "mixed" ("boundary" "----=_Part_60_698782006.1417768538168") NIL NIL) BODY[HEADER.FIELDS (REFERENCES SUBJECT)] {47}
info: [IOS_SYSLOG_ROW ] Subject: =?GBK?Q?Test=D3=CA=BC=FE123=5F46?=
info: [IOS_SYSLOG_ROW ] )
info: [IOS_SYSLOG_ROW ] * 32 FETCH (UID 1417768766 INTERNALDATE " 5-Dec-2014 16:39:10 +0800" FLAGS () ENVELOPE ("Fri, 5 Dec 2014 16:39:10 +0800 (CST)" "=?UTF-8?B?VGVzdOmCruS7tjEyM180NQ==?=" ((NIL NIL "x55mgp2u_2" "reg186.cn")) ((NIL NIL "x55mgp2u_2" "reg186.cn")) ((NIL NIL "x5
5mgp2u_2" "reg186.cn")) ((NIL NIL "x55mgp2u_1" "reg186.cn")) NIL NIL NIL "<622466907.63.1417768538295.JavaMail.mailtech@jli>") BODYSTRUCTURE (("text" "html" ("charset" "GBK") NIL NIL "quoted-printable" 21 1 NIL NIL NIL) "mixed" ("boundary" "----=_Part_62_975968499.1417768538295") NIL NIL) BODY[HEADER.FIELDS (REFERENCES SUBJECT)] {47}
info: [IOS_SYSLOG_ROW ] Subject: =?GBK?Q?Test=D3=CA=BC=FE123=5F45?=
info: [IOS_SYSLOG_ROW ] )
info: [IOS_SYSLOG_ROW ] * 33 FETCH (UID 1417768767 INTERNALDATE " 5-Dec-2014 16:39:11 +0800" FLAGS () ENVELOPE ("Fri, 5 Dec 2014 16:39:11 +0800 (CST)" "=?UTF-8?B?VGVzdOmCruS7tjEyM180NA==?=" ((NIL NIL "x55mgp2u_2" "reg186.cn")) ((NIL NIL "x55mgp2u_2" "reg186.cn")) ((NIL NIL "x55mgp2u_2" "reg186.cn")) ((NIL NIL "x55mgp2u_1" "reg186.cn")) NIL NIL NIL "<1015508695.65.1417768538426.JavaMail.mailtech@jli>") BODYSTRUCTURE (("text" "html" ("charset" "GBK") NIL NIL "quoted-printable" 21 1 NIL NIL NIL) "mixed" ("boundary" "----=_Part_64_908144332.1417768538425") NIL NIL) BODY[HEADER.FIELDS (REFERENCES SUBJECT)] {47}
info: [IOS_SYSLOG_ROW ] Subject: =?GBK?Q?Test=D3=CA=BC=FE123=5F44?=
info: [IOS_SYSLOG_ROW ] )
info: [IOS_SYSLOG_ROW ] * 34 FETCH (UID 1417768768 INTERNALDATE " 5-Dec-2014 16:39:11 +0800" FLAGS () ENVELOPE ("Fri, 5 Dec 2014 16:39:11 +0800 (CST)" "=?UTF-8?B?VGVzdOmCruS7tjEyM180Mw==?=" ((NIL NIL "x55mgp2u_2" "reg186.cn")) ((NIL NIL "x55mgp2u_2" "reg186.cn")) ((NIL NIL "x55mgp2u_2" "reg186.cn")) ((NIL NIL "x55mgp2u_1" "reg186.cn")) NIL NIL NIL "<1216121861.67.1417768538565.JavaMail.mailtech@jli>") BODYSTRUCTURE (("text" "html" ("charset" "GBK") NIL NIL "quoted-printable" 21 1 NIL NIL NIL) "mixed" ("boundary" "----=_Part_66_6844336.1417768538565") NIL NIL) BODY[HEADER.FIELDS (REFERENCES SUBJECT)] {47}
info: [IOS_SYSLOG_ROW ] Subject: =?GBK?Q?Test=D3=CA=BC=FE123=5F43?=
info: [IOS_SYSLOG_ROW ] )
info: [IOS_SYSLOG_ROW ] * 35 FETCH (UID 1417768769 INTERNALDATE " 5-Dec-2014 16:39:11 +0800" FLAGS () ENVELOPE ("Fri, 5 Dec 2014 16:39:11 +0800 (CST)" "=?UTF-8?B?VGVzdOmCruS7tjEyM180Mg==?=" ((NIL NIL "x55mgp2u_2" "reg186.cn")) ((NIL NIL "x55mgp2u_2" "reg186.cn")) ((NIL NIL "x55mgp2u_2" "reg186.cn")) ((NIL NIL "x55mgp2u_1" "reg186.cn")) NIL NIL NIL "<344376901.69.1417768538718.JavaMail.mailtech@jli>") BODYSTRUCTURE (("text" "html" ("charset" "GBK") NIL NIL "quoted-printable" 21 1 NIL NIL NIL) "mixed" ("boundary" "----=_Part_68_518651782.1417768538718") NIL NIL) BODY[HEADER.FIELDS (REFERENCES SUBJECT)] {47}
info: [IOS_SYSLOG_ROW ] Subject: =?GBK?Q?Test=D3=CA=BC=FE123=5F42?=
info: [IOS_SYSLOG_ROW ] )
info: [IOS_SYSLOG_ROW ] * 36 FETCH (UID 1417768770 INTERNALDATE " 5-Dec-2014 16:39:11 +0800" FLAGS () ENVELOPE ("Fri, 5 Dec 2014 16:39:11 +0800 (CST)" "=?UTF-8?B?VGVzdOmCruS7tjEyM180MQ==?=" ((NIL NIL "x55mgp2u_2" "reg186.cn")) ((NIL NIL "x55mgp2u_2" "reg186.cn")) ((NIL NIL "x55mgp2u_2" "reg186.cn")) ((NIL NIL "x55mgp2u_1" "reg186.cn")) NIL NIL NIL "<71187630.71.1417768538847.JavaMail.mailtech@jli>") BODYSTRUCTURE (("text" "html" ("charset" "GBK") NIL NIL "quoted-printable" 21 1 NIL NIL NIL) "mixed" ("boundary" "----=_Part_70_374379620.1417768538846") NIL NIL) BODY[HEADER.FIELDS (REFERENCES SUBJECT)] {47}
info: [IOS_SYSLOG_ROW ] Subject: =?GBK?Q?Test=D3=CA=BC=FE123=5F41?=
info: [IOS_SYSLOG_ROW ] )
info: [IOS_SYSLOG_ROW ] * 37 FETCH (UID 1417768771 INTERNALDATE " 5-Dec-2014 16:39:11 +0800" FLAGS () ENVELOPE ("Fri, 5 Dec 2014 16:39:11 +0800 (CST)" "=?UTF-8?B?VGVzdOmCruS7tjEyM180MA==?=" ((NIL NIL "x55mgp2u_2" "reg186.cn")) ((NIL NIL "x55mgp2u_2" "reg186.cn")) ((NIL NIL "x55mgp2u_2" "reg186.cn")) ((NIL NIL "x55mgp2u_1" "reg186.cn")) NIL NIL NIL "<1162701665.73.1417768538983.JavaMail.mailtech@jli>") BODYSTRUCTURE (("text" "html" ("charset" "GBK") NIL NIL "quoted-printable" 21 1 NIL NIL NIL) "mixed" ("boundary" "----=_Part_72_2089543808.1417768538983") NIL NIL) BODY[HEADER.FIELDS (REFERENCES SUBJECT)] {47}
info: [IOS_SYSLOG_ROW ] Subject: =?GBK?Q?Test=D3=CA=BC=FE123=5F4
0?=
info: [IOS_SYSLOG_ROW ] )
info: [IOS_SYSLOG_ROW ] * 38 FETCH (UID 1417768772 INTERNALDATE " 5-Dec-2014 16:39:11 +0800" FLAGS () ENVELOPE ("Fri, 5 Dec 2014 16:39:11 +0800 (CST)" "=?UTF-8?B?VGVzdOmCruS7tjEyM18zOQ==?=" ((NIL NIL "x55mgp2u_2" "reg186.cn")) ((NIL NIL "x55mgp2u_2" "reg186.cn")) ((NIL NIL "x55mgp2u_2" "reg186.cn")) ((NIL NIL "x55mgp2u_1" "reg186.cn")) NIL NIL NIL "<1096754010.75.1417768539119.JavaMail.mailtech@jli>") BODYSTRUCTURE (("text" "html" ("charset" "GBK") NIL NIL "quoted-printable" 21 1 NIL NIL NIL) "mixed" ("boundary" "----=_Part_74_2140138059.1417768539119") NIL NIL) BODY[HEADER.FIELDS (REFERENCES SUBJECT)] {47}
info: [IOS_SYSLOG_ROW ] Subject: =?GBK?Q?Test=D3=CA=BC=FE123=5F39?=
info: [IOS_SYSLOG_ROW ] )
info: [IOS_SYSLOG_ROW ] * 39 FETCH (UID 1417768773 INTERNALDATE " 5-Dec-2014 16:39:11 +0800" FLAGS () ENVELOPE ("Fri, 5 Dec 2014 16:39:11 +0800 (CST)" "=?UTF-8?B?VGVzdOmCruS7tjEyM18zOA==?=" ((NIL NIL "x55mgp2u_2" "reg186.cn")) ((NIL NIL "x55mgp2u_2" "reg186.cn")) ((NIL NIL "x55mgp2u_2" "reg186.cn")) ((NIL NIL "x55mgp2u_1" "reg186.cn")) NIL NIL NIL "<1356501565.77.1417768539255.JavaMail.mailtech@jli>") BODYSTRUCTURE (("text" "html" ("charset" "GBK") NIL NIL "quoted-printable" 21 1 NIL NIL NIL) "mixed" ("boundary" "----=_Pa
info: [IOS_SYSLOG_ROW ] Dec  5 19:48:04 coremails-iPad Coremail[3685] <Warning>: [CPIMapMailSource.m 89]: event logged:0x17dd31a0 0 withData: * STATUS "Junk E-mail" (MESSAGES 0 RECENT 0 UIDVALIDITY 5 UNSEEN 0)
info: [IOS_SYSLOG_ROW ] 8 OK STATUS completed
info: [IOS_SYSLOG_ROW ] Dec  5 19:48:04 coremails-iPad Coremail[3685] <Warning>: [CPIMapMailSource.m 89]: event logged:0x17dd31a0 1 withData: 9 STATUS "Sent Items" (UNSEEN MESSAGES RECENT UIDNEXT UIDVALIDITY)
info: [IOS_SYSLOG_ROW ] Dec  5 19:48:04 coremails-iPad Coremail[3685] <Warning>: [CPIMapMailSource.m 601]: Progress: 1 of 50
info: [IOS_SYSLOG_ROW ] Dec  5 19:48:04 coremails-iPad Coremail[3685] <Warning>: [CPIMapMailSource.m 89]: event logged:0x17dd31a0 0 withData: * STATUS "Sent Items" (MESSAGES 0 RECENT 0 UIDVALIDITY 3 UNSEEN 0)
info: [IOS_SYSLOG_ROW ] 9 OK STATUS completed
info: [IOS_SYSLOG_ROW ] Dec  5 19:48:04 coremails-iPad Coremail[3685] <Warning>: [CPIMapMailSource.m 89]: event logged:0x17dd31a0 1 withData: 10 STATUS Drafts (UNSEEN MESSAGES RECENT UIDNEXT UIDVALIDITY)
info: [IOS_SYSLOG_ROW ] Dec  5 19:48:04 coremails-iPad Coremail[3685] <Warning>: [CPIMapMailSource.m 89]: event logged:0x17dd31a0 0 withData: * STATUS "Drafts" (MESSAGES 0 RECENT 0 UIDVALIDITY 2 UNSEEN 0)
info: [IOS_SYSLOG_ROW ] 10 OK STATUS completed
info: [IOS_SYSLOG_ROW ] Dec  5 19:48:04 coremails-iPad Coremail[3685] <Warning>: [CPIMapMailSource.m 601]: Progress: 2 of 50
info: [IOS_SYSLOG_ROW ] Dec  5 19:48:04 coremails-iPad Coremail[3685] <Warning>: [CPIMapMailSource.m 89]: event logged:0x17dd31a0 1 withData: 11 STATUS Trash (UNSEEN MESSAGES RECENT UIDNEXT UIDVALIDITY)
info: [IOS_SYSLOG_ROW ] Dec  5 19:48:04 coremails-iPad Coremail[3685] <Warning>: [CPIMapMailSource.m 601]: Progress: 3 of 50
info: [IOS_SYSLOG_ROW ] Dec  5 19:48:04 coremails-iPad Coremail[3685] <Warning>: [CPIMapMailSource.m 601]: Progress: 4 of 50
info: [IOS_SYSLOG_ROW ] Dec  5 19:48:04 coremails-iPad Coremail[3685] <Warning>: [CPIMapMailSource.m 89]: event logged:0x17dd31a0 0 withData: * STATUS "Trash" (MESSAGES 0 RECENT 0 UIDVALIDITY 4 UNSEEN 0)
info: [IOS_SYSLOG_ROW ] 11 OK STATUS completed
info: [IOS_SYSLOG_ROW ] Dec  5 19:48:04 coremails-iPad Coremail[3685] <Warning>: [CPIMapMailSource.m 601]: Progress: 5 of 50
info: [IOS_SYSLOG_ROW ] Dec  5 19:48:04 coremails-iPad Coremail[3685] <Warning>: [CPIMapMailSource.m 601]: Progress: 6 of 50
info: [IOS_SYSLOG_ROW ] Dec  5 19:48:04 coremails-iPad Coremail[3685] <Warning>: [CPIMapMailSource.m 601]: Progress: 7 of 50
info: [IOS_SYSLOG_ROW ] Dec  5 19:48:04 coremails-iPad Coremail[3685] <Warning>: [CP
IMapMailSource.m 601]: Progress: 8 of 50
info: [IOS_SYSLOG_ROW ] Dec  5 19:48:04 coremails-iPad Coremail[3685] <Warning>: [CPIMapMailSource.m 601]: Progress: 9 of 50
info: [IOS_SYSLOG_ROW ] Dec  5 19:48:04 coremails-iPad Coremail[3685] <Warning>: [CPIMapMailSource.m 601]: Progress: 10 of 50
info: [IOS_SYSLOG_ROW ] Dec  5 19:48:04 coremails-iPad Coremail[3685] <Warning>: [CPIMapMailSource.m 601]: Progress: 11 of 50
info: [IOS_SYSLOG_ROW ] Dec  5 19:48:04 coremails-iPad Coremail[3685] <Warning>: [CPIMapMailSource.m 601]: Progress: 12 of 50
info: [IOS_SYSLOG_ROW ] Dec  5 19:48:04 coremails-iPad Coremail[3685] <Warning>: [CPIMapMailSource.m 89]: event logged:0x17e203d0 0 withData: rt_76_61028512.1417768539255") NIL NIL) BODY[HEADER.FIELDS (REFERENCES SUBJECT)] {47}
info: [IOS_SYSLOG_ROW ] Subject: =?GBK?Q?Test=D3=CA=BC=FE123=5F38?=
info: [IOS_SYSLOG_ROW ] )
info: [IOS_SYSLOG_ROW ] * 40 FETCH (UID 1417768774 INTERNALDATE " 5-Dec-2014 16:39:12 +0800" FLAGS () ENVELOPE ("Fri, 5 Dec 2014 16:39:12 +0800 (CST)" "=?UTF-8?B?VGVzdOmCruS7tjEyM18zNw==?=" ((NIL NIL "x55mgp2u_2" "reg186.cn")) ((NIL NIL "x55mgp2u_2" "reg186.cn")) ((NIL NIL "x55mgp2u_2" "reg186.cn")) ((NIL NIL "x55mgp2u_1" "reg186.cn")) NIL NIL NIL "<1116207895.79.1417768539408.JavaMail.mailtech@jli>") BODYSTRUCTURE (("text" "html" ("charset" "GBK") NIL NIL "quoted-printable" 21 1 NIL NIL NIL) "mixed" ("boundary" "----=_Part_78_1986811414.1417768539407") NIL NIL) BODY[HEADER.FIELDS (REFERENCES SUBJECT)] {47}
info: [IOS_SYSLOG_ROW ] Subject: =?GBK?Q?Test=D3=CA=BC=FE123=5F37?=
info: [IOS_SYSLOG_ROW ] )
info: [IOS_SYSLOG_ROW ] * 41 FETCH (UID 1417768775 INTERNALDATE " 5-Dec-2014 16:39:12 +0800" FLAGS () ENVELOPE ("Fri, 5 Dec 2014 16:39:12 +0800 (CST)" "=?UTF-8?B?VGVzdOmCruS7tjEyM18zNg==?=" ((NIL NIL "x55mgp2u_2" "reg186.cn")) ((NIL NIL "x55mgp2u_2" "reg186.cn")) ((NIL NIL "x55mgp2u_2" "reg186.cn")) ((NIL NIL "x55mgp2u_1" "reg186.cn")) NIL NIL NIL "<76996796.81.1417768539549.JavaMail.mailtech@jli>") BODYSTRUCTURE (("text" "html" ("charset" "GBK") NIL NIL "quoted-printable" 21 1 NIL NIL NIL) "mixed" ("boundary" "----=_Part_80_992546556.1417768539548") NIL NIL) BODY[HEADER.FIELDS (REFERENCES SUBJECT)] {47}
info: [IOS_SYSLOG_ROW ] Subject: =?GBK?Q?Test=D3=CA=BC=FE123=5F36?=
info: [IOS_SYSLOG_ROW ] )
info: [IOS_SYSLOG_ROW ] * 42 FETCH (UID 1417768776 INTERNALDATE " 5-Dec-2014 16:39:12 +0800" FLAGS () ENVELOPE ("Fri, 5 Dec 2014 16:39:12 +0800 (CST)" "=?UTF-8?B?VGVzdOmCruS7tjEyM18zNQ==?=" ((NIL NIL "x55mgp2u_2" "reg186.cn")) ((NIL NIL "x55mgp2u_2" "reg186.cn")) ((NIL NIL "x55mgp2u_2" "reg186.cn")) ((NIL NIL "x55mgp2u_1" "reg186.cn")) NIL NIL NIL "<1722346227.83.1417768539700.JavaMail.mailtech@jli>") BODYSTRUCTURE (("text" "html" ("charset" "GBK") NIL NIL "quoted-printable" 21 1 NIL NIL NIL) "mixed" ("boundary" "----=_Part_82_632451890.1417768539700") NIL NIL) BODY[HEADER.FIELDS (REFERENCES SUBJECT)] {47}
info: [IOS_SYSLOG_ROW ] Subject: =?GBK?Q?Test=D3=CA=BC=FE123=5F35?=
info: [IOS_SYSLOG_ROW ] )
info: [IOS_SYSLOG_ROW ] * 43 FETCH (UID 1417768777 INTERNALDATE " 5-Dec-2014 16:39:12 +0800" FLAGS () ENVELOPE ("Fri, 5 Dec 2014 16:39:12 +0800 (CST)" "=?UTF-8?B?VGVzdOmCruS7tjEyM18zNA==?=" ((NIL NIL "x55mgp2u_2" "reg186.cn")) ((NIL NIL "x55mgp2u_2" "reg186.cn")) ((NIL NIL "x55mgp2u_2" "reg186.cn")) ((NIL NIL "x55mgp2u_1" "reg186.cn")) NIL NIL NIL "<943124128.85.1417768539831.JavaMail.mailtech@jli>") BODYSTRUCTURE (("text" "html" ("charset" "GBK") NIL NIL "quoted-printable" 21 1 NIL NIL NIL) "mixed" ("boundary" "----=_Part_84_485466383.1417768539830") NIL NIL) BODY[HEADER.FIELDS (REFERENCES SUBJECT)] {47}
info: [IOS_SYSLOG_ROW ] Subject: =?GBK?Q?Test=D3=CA=BC=FE123=5F34?=
info: [IOS_SYSLOG_ROW ] )
info: [IOS_SYSLOG_ROW ] * 44 FETCH (UID 1417768778 INTERNALDATE " 5-Dec-2014 16:39:12 +0800" FLAGS () ENVELOPE ("Fri, 5 Dec 2014 16:39:12 +0800 (CST)" "=?UTF-8?B?VGVzdOmCruS7tjEyM18zMw==?=" ((NIL NIL 
"x55mgp2u_2" "reg186.cn")) ((NIL NIL "x55mgp2u_2" "reg186.cn")) ((NIL NIL "x55mgp2u_2" "reg186.cn")) ((NIL NIL "x55mgp2u_1" "reg186.cn")) NIL NIL NIL "<1445835739.87.1417768539964.JavaMail.mailtech@jli>") BODYSTRUCTURE (("text" "html" ("charset" "GBK") NIL NIL "quoted-printable" 21 1 NIL NIL NIL) "mixed" ("boundary" "----=_Part_86_453808548.1417768539962") NIL NIL) BODY[HEADER.FIELDS (REFERENCES SUBJECT)] {47}
info: [IOS_SYSLOG_ROW ] Subject: =?GBK?Q?Test=D3=CA=BC=FE123=5F33?=
info: [IOS_SYSLOG_ROW ] )
info: [IOS_SYSLOG_ROW ] * 45 FETCH (UID 1417768779 INTERNALDATE " 5-Dec-2014 16:39:12 +0800" FLAGS () ENVELOPE ("Fri, 5 Dec 2014 16:39:12 +0800 (CST)" "=?UTF-8?B?VGVzdOmCruS7tjEyM18zMg==?=" ((NIL NIL "x55mgp2u_2" "reg186.cn")) ((NIL NIL "x55mgp2u_2" "reg186.cn")) ((NIL NIL "x55mgp2u_2" "reg186.cn")) ((NIL NIL "x55mgp2u_1" "reg186.cn")) NIL NIL NIL "<2094898656.89.1417768540131.JavaMail.mailtech@jli>") BODYSTRUCTURE (("text" "html" ("charset" "GBK") NIL NIL "quoted-printable" 21 1 NIL NIL NIL) "mixed" ("boundary" "----=_Part_88_899392206.1417768540130") NIL NIL) BODY[HEADER.FIELDS (REFERENCES SUBJECT)] {47}
info: [IOS_SYSLOG_ROW ] Subject: =?GBK?Q?Test=D3=CA=BC=FE123=5F32?=
info: [IOS_SYSLOG_ROW ] )
info: [IOS_SYSLOG_ROW ] * 46 FETCH (UID 1417768780 INTERNALDATE " 5-Dec-2014 16:39:12 +0800" FLAGS () ENVELOPE ("Fri, 5 Dec 2014 16:39:12 +0800 (CST)" "=?UTF-8?B?VGVzdOmCruS7tjEyM18zMQ==?=" ((NIL NIL "x55mgp2u_2" "reg186.cn")) ((NIL NIL "x55mgp2u_2" "reg186.cn")) ((NIL NIL "x55mgp2u_2" "reg186.cn")) ((NIL NIL "x55mgp2u_1" "reg186.cn")) NIL NIL NIL "<338379097.91.1417768540264.JavaMail.mailtech@jli>") BODYSTRUCTURE (("text" "html" ("charset" "GBK") NIL NIL "quoted-printable" 21 1 NIL NIL NIL) "mixed" ("boundary" "----=_Part_90_1321961337.1417768540263") NIL NIL) BODY[HEADER.FIELDS (REFERENCES SUBJECT)] {47}
info: [IOS_SYSLOG_ROW ] Subject: =?GBK?Q?Test=D3=CA=BC=FE123=5F31?=
info: [IOS_SYSLOG_ROW ] )
info: [IOS_SYSLOG_ROW ] * 47 FETCH (UID 1417768781 INTERNALDATE " 5-Dec-2014 16:39:13 +0800" FLAGS () ENVELOPE ("Fri, 5 Dec 2014 16:39:13 +0800 (CST)" "=?UTF-8?B?VGVzdOmCruS7tjEyM18zMA==?=" ((NIL NIL "x55mgp2u_2" "reg186.cn")) ((NIL NIL "x55mgp2u_2" "reg186.cn")) ((NIL NIL "x55mgp2u_2" "reg186.cn")) ((NIL NIL "x55mgp2u_1" "reg186.cn")) NIL NIL NIL "<1609654867.93.1417768540421.JavaMail.mailtech@jli>") BODYSTRUCTURE (("text" "html" ("charset" "GBK") NIL NIL "quoted-printable" 21 1 NIL NIL NIL) "mixed" ("boundary" "----=_Part_92_1517657698.1417768540420") NIL NIL) BODY[HEADER.FIELDS (REFERENCES SUBJECT)] {47}
info: [IOS_SYSLOG_ROW ] Subject: =?GBK?Q?Test=D3=CA=BC=FE123=5F30?=
info: [IOS_SYSLOG_ROW ] )
info: [IOS_SYSLOG_ROW ] * 48 FETCH (UID 1417768782 INTERNALDATE " 5-Dec-2014 16:39:13 +0800" FLAGS () ENVELOPE ("Fri, 5 Dec 2014 16:39:13 +0800 (CST)" "=?UTF-8?B?VGVzdOmCruS7tjEyM18yOQ==?=" ((NIL NIL "x55mgp2u_2" "reg186.cn")) ((NIL NIL "x55mgp2u_2" "reg186.cn")) ((NIL NIL "x55mgp2u_2" "reg186.cn")) ((NIL NIL "x55mgp2u_1" "reg186.cn")) NIL NIL NIL "<2034462631.95.1417768540569.JavaMail.mailtech@jli>") BODYSTRUCTURE (("text" "html" ("charset" "GBK") NIL NIL "quoted-printable" 21 1 NIL NIL NIL) "mixed" ("boundary" "----=_Part_94_1457374038.1417768540569") NIL NIL) BODY[HEADER.FIELDS (REFERENCES SUBJECT)] {47}
info: [IOS_SYSLOG_ROW ] Subject: =?GBK?Q?Test=D3=CA=BC=FE123=5F29?=
info: [IOS_SYSLOG_ROW ] )
info: [IOS_SYSLOG_ROW ] * 49 FETCH (UID 1417768783 INTERNALDATE " 5-Dec-2014 16:39:13 +0800" FLAGS () ENVELOPE ("Fri, 5 Dec 2014 16:39:13 +0800 (CST)" "=?UTF-8?B?VGVzdOmCruS7tjEyM18yOA==?=" ((NIL NIL "x55mgp2u_2" "reg186.cn")) ((NIL NIL "x55mgp2u_2" "reg186.cn")) ((NIL NIL "x55mgp2u_2" "reg186.cn")) ((NIL NIL "x55mgp2u_1" "reg186.cn")) NIL NIL NIL "<641380178.97.1417768540724.JavaMail.mailtech@jli>") BODYSTRUCTURE (("text" "html" ("charset" "GBK") NIL NIL "quoted-printable" 21 1 NIL NIL NIL) "mixed" ("boundary" "----=_Part_96_1151402185.1417768540724") NIL NIL) BODY[HEADER.FIELDS (REFERENCES SUBJE
CT)] {47}
info: [IOS_SYSLOG_ROW ] Subject: =?GBK?Q?Test=D3=CA=BC=FE123=5F28?=
info: [IOS_SYSLOG_ROW ] )
info: [IOS_SYSLOG_ROW ] * 50 FETCH (UID 1417768784 INTERNALDATE " 5-Dec-2014 16:39:13 +0800" FLAGS () ENVELOPE ("Fri, 5 Dec 2014 16:39:13 +0800 (CST)" "=?UTF-8?B?VGVzdOmCruS7tjEyM18yNw==?=" ((NIL NIL "x55mgp2u_2" "reg186.cn")) ((NIL NIL "x55mgp2u_2" "reg186.cn")) ((NIL NIL "x55mgp2u_2" "reg186.cn")) ((NIL NIL "x55mgp2u_1" "reg186.cn")) NIL NIL NIL "<1936699009.99.1417768540868.JavaMail.mailtech@jli>") BODYSTRUCTURE (("text" "html" ("charset" "GBK") NIL NIL "quoted-printable" 21 1 NIL NIL NIL) "mixed" ("boundary" "----=_Part_98_1211149325.1417768540868") NIL NIL) BODY[HEADER.FIELDS (REFERENCES SUBJECT)] {47}
info: [IOS_SYSLOG_ROW ] Subject: =?GBK?Q?Test=D3=CA=BC=FE123=5F27?=
info: [IOS_SYSLOG_ROW ] )
info: [IOS_SYSLOG_ROW ] * 51 FETCH (UID 1417768785 INTERNALDATE " 5-Dec-2014 16:39:13 +0800" FLAGS () ENVELOPE ("Fri, 5 Dec 2014 16:39:13 +0800 (CST)" "=?UTF-8?B?VGVzdOmCruS7tjEyM18yNg==?=" ((NIL NIL "x55mgp2u_2" "reg186.cn")) ((NIL NIL "x55mgp2u_2" "reg186.cn")) ((NIL NIL "x55mgp2u_2" "reg186.cn")) ((NIL NIL "x55mgp2u_1" "reg186.cn")) NIL NIL NIL "<371641215.101.1417768540998.JavaMail.mailtech@jli>") BODYSTRUCTURE (("text" "html" ("charset" "GBK") NIL NIL "quoted-printable" 21 1 NIL NIL NIL) "mixed" ("boundary" "----=_Part_100_1554382710.1417768540998") NIL NIL) BODY[HEADER.FIELDS (REFERENCES SUBJECT)] {47}
info: [IOS_SYSLOG_ROW ] Subject: =?GBK?Q?Test=D3=CA=BC=FE123=5F26?=
info: [IOS_SYSLOG_ROW ] )
info: [IOS_SYSLOG_ROW ] * 52 FETCH (UID 1417768786 INTERNALDATE " 5-Dec-2014 16:39:18 +0800" FLAGS () ENVELOPE ("Fri, 5 Dec 2014 16:39:18 +0800 (CST)" "=?UTF-8?B?VGVzdOmCruS7tjEyM18yNQ==?=" ((NIL NIL "x55mgp2u_2" "reg186.cn")) ((NIL NIL "x55mgp2u_2" "reg186.cn")) ((NIL NIL "x55mgp2u_2" "reg186.cn")) ((NIL NIL "x55mgp2u_1" "reg186.cn")) NIL NIL NIL "<91016554.103.1417768546125.JavaM
info: [IOS_SYSLOG_ROW ] Dec  5 19:48:04 coremails-iPad Coremail[3685] <Warning>: [CPIMapMailSource.m 601]: Progress: 13 of 50
info: [IOS_SYSLOG_ROW ] Dec  5 19:48:04 coremails-iPad Coremail[3685] <Warning>: [CPIMapMailSource.m 601]: Progress: 14 of 50
info: [IOS_SYSLOG_ROW ] Dec  5 19:48:04 coremails-iPad Coremail[3685] <Warning>: [CPIMapMailSource.m 601]: Progress: 15 of 50
info: [IOS_SYSLOG_ROW ] Dec  5 19:48:04 coremails-iPad Coremail[3685] <Warning>: [CPIMapMailSource.m 601]: Progress: 16 of 50
info: [IOS_SYSLOG_ROW ] Dec  5 19:48:04 coremails-iPad Coremail[3685] <Warning>: [CPIMapMailSource.m 601]: Progress: 17 of 50
info: [IOS_SYSLOG_ROW ] Dec  5 19:48:04 coremails-iPad Coremail[3685] <Warning>: [CPIMapMailSource.m 601]: Progress: 18 of 50
info: [IOS_SYSLOG_ROW ] Dec  5 19:48:04 coremails-iPad Coremail[3685] <Warning>: [CPIMapMailSource.m 601]: Progress: 19 of 50
info: [IOS_SYSLOG_ROW ] Dec  5 19:48:04 coremails-iPad Coremail[3685] <Warning>: [CPIMapMailSource.m 601]: Progress: 20 of 50
info: [IOS_SYSLOG_ROW ] Dec  5 19:48:04 coremails-iPad Coremail[3685] <Warning>: [CPIMapMailSource.m 601]: Progress: 21 of 50
info: [IOS_SYSLOG_ROW ] Dec  5 19:48:04 coremails-iPad Coremail[3685] <Warning>: [CPIMapMailSource.m 601]: Progress: 22 of 50
info: [IOS_SYSLOG_ROW ] Dec  5 19:48:04 coremails-iPad Coremail[3685] <Warning>: [CPIMapMailSource.m 601]: Progress: 23 of 50
info: [IOS_SYSLOG_ROW ] Dec  5 19:48:04 coremails-iPad Coremail[3685] <Warning>: [CPIMapMailSource.m 601]: Progress: 24 of 50
info: [IOS_SYSLOG_ROW ] Dec  5 19:48:04 coremails-iPad Coremail[3685] <Warning>: [CPIMapMailSource.m 601]: Progress: 25 of 50
info: [IOS_SYSLOG_ROW ] Dec  5 19:48:04 coremails-iPad Coremail[3685] <Warning>: [CPIMapMailSource.m 89]: event logged:0x17e203d0 0 withData: ail.mailtech@jli>") BODYSTRUCTURE (("text" "html" ("charset" "GBK") NIL NIL "quoted-printable" 21 1 NIL NIL NIL) "mixed" ("boundary" "----=_Part_102_910644789.1417768546124") NIL
 NIL) BODY[HEADER.FIELDS (REFERENCES SUBJECT)] {47}
info: [IOS_SYSLOG_ROW ] Subject: =?GBK?Q?Test=D3=CA=BC=FE123=5F25?=
info: [IOS_SYSLOG_ROW ] )
info: [IOS_SYSLOG_ROW ] * 53 FETCH (UID 1417768787 INTERNALDATE " 5-Dec-2014 16:39:18 +0800" FLAGS () ENVELOPE ("Fri, 5 Dec 2014 16:39:18 +0800 (CST)" "=?UTF-8?B?VGVzdOmCruS7tjEyM18yNA==?=" ((NIL NIL "x55mgp2u_2" "reg186.cn")) ((NIL NIL "x55mgp2u_2" "reg186.cn")) ((NIL NIL "x55mgp2u_2" "reg186.cn")) ((NIL NIL "x55mgp2u_1" "reg186.cn")) NIL NIL NIL "<1301861918.105.1417768546262.JavaMail.mailtech@jli>") BODYSTRUCTURE (("text" "html" ("charset" "GBK") NIL NIL "quoted-printable" 21 1 NIL NIL NIL) "mixed" ("boundary" "----=_Part_104_71630434.1417768546261") NIL NIL) BODY[HEADER.FIELDS (REFERENCES SUBJECT)] {47}
info: [IOS_SYSLOG_ROW ] Subject: =?GBK?Q?Test=D3=CA=BC=FE123=5F24?=
info: [IOS_SYSLOG_ROW ] )
info: [IOS_SYSLOG_ROW ] * 54 FETCH (UID 1417768788 INTERNALDATE " 5-Dec-2014 16:39:19 +0800" FLAGS () ENVELOPE ("Fri, 5 Dec 2014 16:39:19 +0800 (CST)" "=?UTF-8?B?VGVzdOmCruS7tjEyM18yMw==?=" ((NIL NIL "x55mgp2u_2" "reg186.cn")) ((NIL NIL "x55mgp2u_2" "reg186.cn")) ((NIL NIL "x55mgp2u_2" "reg186.cn")) ((NIL NIL "x55mgp2u_1" "reg186.cn")) NIL NIL NIL "<594438674.107.1417768546397.JavaMail.mailtech@jli>") BODYSTRUCTURE (("text" "html" ("charset" "GBK") NIL NIL "quoted-printable" 21 1 NIL NIL NIL) "mixed" ("boundary" "----=_Part_106_1170309821.1417768546395") NIL NIL) BODY[HEADER.FIELDS (REFERENCES SUBJECT)] {47}
info: [IOS_SYSLOG_ROW ] Subject: =?GBK?Q?Test=D3=CA=BC=FE123=5F23?=
info: [IOS_SYSLOG_ROW ] )
info: [IOS_SYSLOG_ROW ] * 55 FETCH (UID 1417768789 INTERNALDATE " 5-Dec-2014 16:39:19 +0800" FLAGS () ENVELOPE ("Fri, 5 Dec 2014 16:39:19 +0800 (CST)" "=?UTF-8?B?VGVzdOmCruS7tjEyM18yMg==?=" ((NIL NIL "x55mgp2u_2" "reg186.cn")) ((NIL NIL "x55mgp2u_2" "reg186.cn")) ((NIL NIL "x55mgp2u_2" "reg186.cn")) ((NIL NIL "x55mgp2u_1" "reg186.cn")) NIL NIL NIL "<818167552.109.1417768546539.JavaMail.mailtech@jli>") BODYSTRUCTURE (("text" "html" ("charset" "GBK") NIL NIL "quoted-printable" 21 1 NIL NIL NIL) "mixed" ("boundary" "----=_Part_108_339158670.1417768546539") NIL NIL) BODY[HEADER.FIELDS (REFERENCES SUBJECT)] {47}
info: [IOS_SYSLOG_ROW ] Subject: =?GBK?Q?Test=D3=CA=BC=FE123=5F22?=
info: [IOS_SYSLOG_ROW ] )
info: [IOS_SYSLOG_ROW ] * 56 FETCH (UID 1417768790 INTERNALDATE " 5-Dec-2014 16:39:19 +0800" FLAGS () ENVELOPE ("Fri, 5 Dec 2014 16:39:19 +0800 (CST)" "=?UTF-8?B?VGVzdOmCruS7tjEyM18yMQ==?=" ((NIL NIL "x55mgp2u_2" "reg186.cn")) ((NIL NIL "x55mgp2u_2" "reg186.cn")) ((NIL NIL "x55mgp2u_2" "reg186.cn")) ((NIL NIL "x55mgp2u_1" "reg186.cn")) NIL NIL NIL "<1000653397.111.1417768546687.JavaMail.mailtech@jli>") BODYSTRUCTURE (("text" "html" ("charset" "GBK") NIL NIL "quoted-printable" 21 1 NIL NIL NIL) "mixed" ("boundary" "----=_Part_110_900477058.1417768546686") NIL NIL) BODY[HEADER.FIELDS (REFERENCES SUBJECT)] {47}
info: [IOS_SYSLOG_ROW ] Subject: =?GBK?Q?Test=D3=CA=BC=FE123=5F21?=
info: [IOS_SYSLOG_ROW ] )
info: [IOS_SYSLOG_ROW ] * 57 FETCH (UID 1417768791 INTERNALDATE " 5-Dec-2014 16:39:19 +0800" FLAGS () ENVELOPE ("Fri, 5 Dec 2014 16:39:19 +0800 (CST)" "=?UTF-8?B?VGVzdOmCruS7tjEyM18yMA==?=" ((NIL NIL "x55mgp2u_2" "reg186.cn")) ((NIL NIL "x55mgp2u_2" "reg186.cn")) ((NIL NIL "x55mgp2u_2" "reg186.cn")) ((NIL NIL "x55mgp2u_1" "reg186.cn")) NIL NIL NIL "<1296134293.113.1417768546820.JavaMail.mailtech@jli>") BODYSTRUCTURE (("text" "html" ("charset" "GBK") NIL NIL "quoted-printable" 21 1 NIL NIL NIL) "mixed" ("boundary" "----=_Part_112_1990271995.1417768546819") NIL NIL) BODY[HEADER.FIELDS (REFERENCES SUBJECT)] {47}
info: [IOS_SYSLOG_ROW ] Subject: =?GBK?Q?Test=D3=CA=BC=FE123=5F20?=
info: [IOS_SYSLOG_ROW ] )
info: [IOS_SYSLOG_ROW ] * 58 FETCH (UID 1417768792 INTERNALDATE " 5-Dec-2014 16:39:19 +0800" FLAGS () ENVELOPE ("Fri, 5 Dec 2014 16:39:19 +0800 (CST)" "=?UTF-8?B?VGVzdOmCruS7tjEyM18xOQ==?=" ((NIL NIL "x55mgp2u_2" "reg186.
cn")) ((NIL NIL "x55mgp2u_2" "reg186.cn")) ((NIL NIL "x55mgp2u_2" "reg186.cn")) ((NIL NIL "x55mgp2u_1" "reg186.cn")) NIL NIL NIL "<359090726.115.1417768546949.JavaMail.mailtech@jli>") BODYSTRUCTURE (("text" "html" ("charset" "GBK") NIL NIL "quoted-printable" 21 1 NIL NIL NIL) "mixed" ("boundary" "----=_Part_114_1281586248.1417768546948") NIL NIL) BODY[HEADER.FIELDS (REFERENCES SUBJECT)] {47}
info: [IOS_SYSLOG_ROW ] Subject: =?GBK?Q?Test=D3=CA=BC=FE123=5F19?=
info: [IOS_SYSLOG_ROW ] )
info: [IOS_SYSLOG_ROW ] * 59 FETCH (UID 1417768793 INTERNALDATE " 5-Dec-2014 16:39:19 +0800" FLAGS () ENVELOPE ("Fri, 5 Dec 2014 16:39:19 +0800 (CST)" "=?UTF-8?B?VGVzdOmCruS7tjEyM18xOA==?=" ((NIL NIL "x55mgp2u_2" "reg186.cn")) ((NIL NIL "x55mgp2u_2" "reg186.cn")) ((NIL NIL "x55mgp2u_2" "reg186.cn")) ((NIL NIL "x55mgp2u_1" "reg186.cn")) NIL NIL NIL "<392824661.117.1417768547099.JavaMail.mailtech@jli>") BODYSTRUCTURE (("text" "html" ("charset" "GBK") NIL NIL "quoted-printable" 21 1 NIL NIL NIL) "mixed" ("boundary" "----=_Part_116_153223402.1417768547098") NIL NIL) BODY[HEADER.FIELDS (REFERENCES SUBJECT)] {47}
info: [IOS_SYSLOG_ROW ] Subject: =?GBK?Q?Test=D3=CA=BC=FE123=5F18?=
info: [IOS_SYSLOG_ROW ] )
info: [IOS_SYSLOG_ROW ] * 60 FETCH (UID 1417768794 INTERNALDATE " 5-Dec-2014 16:39:19 +0800" FLAGS () ENVELOPE ("Fri, 5 Dec 2014 16:39:19 +0800 (CST)" "=?UTF-8?B?VGVzdOmCruS7tjEyM18xNw==?=" ((NIL NIL "x55mgp2u_2" "reg186.cn")) ((NIL NIL "x55mgp2u_2" "reg186.cn")) ((NIL NIL "x55mgp2u_2" "reg186.cn")) ((NIL NIL "x55mgp2u_1" "reg186.cn")) NIL NIL NIL "<305303296.119.1417768547233.JavaMail.mailtech@jli>") BODYSTRUCTURE (("text" "html" ("charset" "GBK") NIL NIL "quoted-printable" 21 1 NIL NIL NIL) "mixed" ("boundary" "----=_Part_118_919857207.1417768547232") NIL NIL) BODY[HEADER.FIELDS (REFERENCES SUBJECT)] {47}
info: [IOS_SYSLOG_ROW ] Subject: =?GBK?Q?Test=D3=CA=BC=FE123=5F17?=
info: [IOS_SYSLOG_ROW ] )
info: [IOS_SYSLOG_ROW ] * 61 FETCH (UID 1417768795 INTERNALDATE " 5-Dec-2014 16:39:20 +0800" FLAGS () ENVELOPE ("Fri, 5 Dec 2014 16:39:19 +0800 (CST)" "=?UTF-8?B?VGVzdOmCruS7tjEyM18xNg==?=" ((NIL NIL "x55mgp2u_2" "reg186.cn")) ((NIL NIL "x55mgp2u_2" "reg186.cn")) ((NIL NIL "x55mgp2u_2" "reg186.cn")) ((NIL NIL "x55mgp2u_1" "reg186.cn")) NIL NIL NIL "<591511745.121.1417768547380.JavaMail.mailtech@jli>") BODYSTRUCTURE (("text" "html" ("charset" "GBK") NIL NIL "quoted-printable" 21 1 NIL NIL NIL) "mixed" ("boundary" "----=_Part_120_1251445609.1417768547380") NIL NIL) BODY[HEADER.FIELDS (REFERENCES SUBJECT)] {47}
info: [IOS_SYSLOG_ROW ] Subject: =?GBK?Q?Test=D3=CA=BC=FE123=5F16?=
info: [IOS_SYSLOG_ROW ] )
info: [IOS_SYSLOG_ROW ] * 62 FETCH (UID 1417768796 INTERNALDATE " 5-Dec-2014 16:39:20 +0800" FLAGS () ENVELOPE ("Fri, 5 Dec 2014 16:39:20 +0800 (CST)" "=?UTF-8?B?VGVzdOmCruS7tjEyM18xNQ==?=" ((NIL NIL "x55mgp2u_2" "reg186.cn")) ((NIL NIL "x55mgp2u_2" "reg186.cn")) ((NIL NIL "x55mgp2u_2" "reg186.cn")) ((NIL NIL "x55mgp2u_1" "reg186.cn")) NIL NIL NIL "<834745930.123.1417768547527.JavaMail.mailtech@jli>") BODYSTRUCTURE (("text" "html" ("charset" "GBK") NIL NIL "quoted-printable" 21 1 NIL NIL NIL) "mixed" ("boundary" "----=_Part_122_602372384.1417768547526") NIL NIL) BODY[HEADER.FIELDS (REFERENCES SUBJECT)] {47}
info: [IOS_SYSLOG_ROW ] Subject: =?GBK?Q?Test=D3=CA=BC=FE123=5F15?=
info: [IOS_SYSLOG_ROW ] )
info: [IOS_SYSLOG_ROW ] * 63 FETCH (UID 1417768797 INTERNALDATE " 5-Dec-2014 16:39:20 +0800" FLAGS () ENVELOPE ("Fri, 5 Dec 2014 16:39:20 +0800 (CST)" "=?UTF-8?B?VGVzdOmCruS7tjEyM18xNA==?=" ((NIL NIL "x55mgp2u_2" "reg186.cn")) ((NIL NIL "x55mgp2u_2" "reg186.cn")) ((NIL NIL "x55mgp2u_2" "reg186.cn")) ((NIL NIL "x55mgp2u_1" "reg186.cn")) NIL NIL NIL "<1338923977.125.1417768547662.JavaMail.mailtech@jli>") BODYSTRUCTURE (("text" "html" ("charset" "GBK") NIL NIL "quoted-printable" 21 1 NIL NIL NIL) "mixed" ("boundary" "----=_Part_124_144207799.1417768547661") NIL NIL) BODY[HEADER.FIELDS (REFERENCES SUBJECT)] {47}
[36
minfo: [IOS_SYSLOG_ROW ] Subject: =?GBK?Q?Test=D3=CA=BC=FE123=5F14?=
info: [IOS_SYSLOG_ROW ] )
info: [IOS_SYSLOG_ROW ] * 64 FETCH (UID 1417768798 INTERNALDATE " 5-Dec-2014 16:39:20 +0800" FLAGS () ENVELOPE ("Fri, 5 Dec 2014 16:39:20 +0800 (CST)" "=?UTF-8?B?VGVzdOmCruS7tjEyM18xMw==?=" ((NIL NIL "x55mgp2u_2" "reg186.cn")) ((NIL NIL "x55mgp2u_2" "reg186.cn")) ((NIL NIL "x55mgp2u_2" "reg186.cn")) ((NIL NIL "x55mgp2u_1" "reg186.cn")) NIL NIL NIL "<1200638256.127.1417768547797.JavaMail.mailtech@jli>") BODYSTRUCTURE (("text" "html" ("charset" "GBK") NIL NIL "quoted-printable" 21 1 NIL NIL NIL) "mixed" ("boundary" "----=_Part_126_711256894.1417768547795") NIL NIL) BODY[HEADER.FIELDS (REFERENCES SUBJECT)] {47}
info: [IOS_SYSLOG_ROW ] Subject: =?GBK?Q?Test=D3=CA=BC=FE123=5F13?=
info: [IOS_SYSLOG_ROW ] )
info: [IOS_SYSLOG_ROW ] * 65 FETCH (UID 1417768799 INTERNALDATE " 5-Dec-2014 16:39:20 +0800" FLAGS () ENVELOPE ("Fri, 5 Dec 2014 16:39:20 +0800 (CST)" "=?UTF-8?B?VGVzdOmCruS7tjEyM18xMg==?=" ((NIL NIL "x55mgp2u_2" "reg186.cn
info: [IOS_SYSLOG_ROW ] Dec  5 19:48:04 coremails-iPad Coremail[3685] <Warning>: [CPIMapMailSource.m 601]: Progress: 26 of 50
info: [IOS_SYSLOG_ROW ] Dec  5 19:48:04 coremails-iPad Coremail[3685] <Warning>: [CPIMapMailSource.m 601]: Progress: 27 of 50
info: [IOS_SYSLOG_ROW ] Dec  5 19:48:04 coremails-iPad Coremail[3685] <Warning>: [CPIMapMailSource.m 601]: Progress: 28 of 50
info: [IOS_SYSLOG_ROW ] Dec  5 19:48:04 coremails-iPad Coremail[3685] <Warning>: [CPIMapMailSource.m 601]: Progress: 29 of 50
info: [IOS_SYSLOG_ROW ] Dec  5 19:48:04 coremails-iPad Coremail[3685] <Warning>: [CPIMapMailSource.m 601]: Progress: 30 of 50
info: [IOS_SYSLOG_ROW ] Dec  5 19:48:04 coremails-iPad Coremail[3685] <Warning>: [CPIMapMailSource.m 601]: Progress: 31 of 50
info: [IOS_SYSLOG_ROW ] Dec  5 19:48:04 coremails-iPad Coremail[3685] <Warning>: [CPIMapMailSource.m 601]: Progress: 32 of 50
info: [IOS_SYSLOG_ROW ] Dec  5 19:48:04 coremails-iPad Coremail[3685] <Warning>: [CPIMapMailSource.m 601]: Progress: 33 of 50
info: [IOS_SYSLOG_ROW ] Dec  5 19:48:04 coremails-iPad Coremail[3685] <Warning>: [CPIMapMailSource.m 601]: Progress: 34 of 50
info: [IOS_SYSLOG_ROW ] Dec  5 19:48:04 coremails-iPad Coremail[3685] <Warning>: [CPIMapMailSource.m 601]: Progress: 35 of 50
info: [IOS_SYSLOG_ROW ] Dec  5 19:48:04 coremails-iPad Coremail[3685] <Warning>: [CPIMapMailSource.m 601]: Progress: 36 of 50
info: [IOS_SYSLOG_ROW ] Dec  5 19:48:04 coremails-iPad Coremail[3685] <Warning>: [CPIMapMailSource.m 601]: Progress: 37 of 50
info: [IOS_SYSLOG_ROW ] Dec  5 19:48:04 coremails-iPad Coremail[3685] <Warning>: [CPIMapMailSource.m 601]: Progress: 38 of 50
info: [IOS_SYSLOG_ROW ] Dec  5 19:48:04 coremails-iPad Coremail[3685] <Warning>: [CPIMapMailSource.m 89]: event logged:0x17e203d0 0 withData: ")) ((NIL NIL "x55mgp2u_2" "reg186.cn")) ((NIL NIL "x55mgp2u_2" "reg186.cn")) ((NIL NIL "x55mgp2u_1" "reg186.cn")) NIL NIL NIL "<1305965207.129.1417768547935.JavaMail.mailtech@jli>") BODYSTRUCTURE (("text" "html" ("charset" "GBK") NIL NIL "quoted-printable" 21 1 NIL NIL NIL) "mixed" ("boundary" "----=_Part_128_1676078358.1417768547934") NIL NIL) BODY[HEADER.FIELDS (REFERENCES SUBJECT)] {47}
info: [IOS_SYSLOG_ROW ] Subject: =?GBK?Q?Test=D3=CA=BC=FE123=5F12?=
info: [IOS_SYSLOG_ROW ] )
info: [IOS_SYSLOG_ROW ] * 66 FETCH (UID 1417768800 INTERNALDATE " 5-Dec-2014 16:39:20 +0800" FLAGS () ENVELOPE ("Fri, 5 Dec 2014 16:39:20 +0800 (CST)" "=?UTF-8?B?VGVzdOmCruS7tjEyM18xMQ==?=" ((NIL NIL "x55mgp2u_2" "reg186.cn")) ((NIL NIL "x55mgp2u_2" "reg186.cn")) ((NIL NIL "x55mgp2u_2" "reg186.cn")) ((NIL NIL "x55mgp2u_1" "reg186.cn")) NIL NIL NIL "<209414191.131.1417768548084.JavaMail.mailtech@jli>") BODYSTRUCTURE (("text" "html" ("charset" "GBK") NIL NIL "quoted-printable" 21 1 NIL NIL NIL) "mixed" ("boundary" "----=_Part_130_1051841185.1417768548083") NIL NIL) BODY
[HEADER.FIELDS (REFERENCES SUBJECT)] {47}
info: [IOS_SYSLOG_ROW ] Subject: =?GBK?Q?Test=D3=CA=BC=FE123=5F11?=
info: [IOS_SYSLOG_ROW ] )
info: [IOS_SYSLOG_ROW ] * 67 FETCH (UID 1417768801 INTERNALDATE " 5-Dec-2014 16:39:20 +0800" FLAGS () ENVELOPE ("Fri, 5 Dec 2014 16:39:20 +0800 (CST)" "=?UTF-8?B?VGVzdOmCruS7tjEyM18xMA==?=" ((NIL NIL "x55mgp2u_2" "reg186.cn")) ((NIL NIL "x55mgp2u_2" "reg186.cn")) ((NIL NIL "x55mgp2u_2" "reg186.cn")) ((NIL NIL "x55mgp2u_1" "reg186.cn")) NIL NIL NIL "<1861686432.133.1417768548212.JavaMail.mailtech@jli>") BODYSTRUCTURE (("text" "html" ("charset" "GBK") NIL NIL "quoted-printable" 21 1 NIL NIL NIL) "mixed" ("boundary" "----=_Part_132_30009690.1417768548211") NIL NIL) BODY[HEADER.FIELDS (REFERENCES SUBJECT)] {47}
info: [IOS_SYSLOG_ROW ] Subject: =?GBK?Q?Test=D3=CA=BC=FE123=5F10?=
info: [IOS_SYSLOG_ROW ] )
info: [IOS_SYSLOG_ROW ] * 68 FETCH (UID 1417768802 INTERNALDATE " 5-Dec-2014 16:39:20 +0800" FLAGS () ENVELOPE ("Fri, 5 Dec 2014 16:39:20 +0800 (CST)" "=?UTF-8?B?VGVzdOmCruS7tjEyM185?=" ((NIL NIL "x55mgp2u_2" "reg186.cn")) ((NIL NIL "x55mgp2u_2" "reg186.cn")) ((NIL NIL "x55mgp2u_2" "reg186.cn")) ((NIL NIL "x55mgp2u_1" "reg186.cn")) NIL NIL NIL "<748968642.135.1417768548347.JavaMail.mailtech@jli>") BODYSTRUCTURE (("text" "html" ("charset" "GBK") NIL NIL "quoted-printable" 21 1 NIL NIL NIL) "mixed" ("boundary" "----=_Part_134_653604321.1417768548347") NIL NIL) BODY[HEADER.FIELDS (REFERENCES SUBJECT)] {46}
info: [IOS_SYSLOG_ROW ] Subject: =?GBK?Q?Test=D3=CA=BC=FE123=5F9?=
info: [IOS_SYSLOG_ROW ] )
info: [IOS_SYSLOG_ROW ] * 69 FETCH (UID 1417768803 INTERNALDATE " 5-Dec-2014 16:39:21 +0800" FLAGS () ENVELOPE ("Fri, 5 Dec 2014 16:39:21 +0800 (CST)" "=?UTF-8?B?VGVzdOmCruS7tjEyM184?=" ((NIL NIL "x55mgp2u_2" "reg186.cn")) ((NIL NIL "x55mgp2u_2" "reg186.cn")) ((NIL NIL "x55mgp2u_2" "reg186.cn")) ((NIL NIL "x55mgp2u_1" "reg186.cn")) NIL NIL NIL "<939684716.137.1417768548499.JavaMail.mailtech@jli>") BODYSTRUCTURE (("text" "html" ("charset" "GBK") NIL NIL "quoted-printable" 21 1 NIL NIL NIL) "mixed" ("boundary" "----=_Part_136_658598822.1417768548499") NIL NIL) BODY[HEADER.FIELDS (REFERENCES SUBJECT)] {46}
info: [IOS_SYSLOG_ROW ] Subject: =?GBK?Q?Test=D3=CA=BC=FE123=5F8?=
info: [IOS_SYSLOG_ROW ] )
info: [IOS_SYSLOG_ROW ] * 70 FETCH (UID 1417768804 INTERNALDATE " 5-Dec-2014 16:39:21 +0800" FLAGS () ENVELOPE ("Fri, 5 Dec 2014 16:39:21 +0800 (CST)" "=?UTF-8?B?VGVzdOmCruS7tjEyM183?=" ((NIL NIL "x55mgp2u_2" "reg186.cn")) ((NIL NIL "x55mgp2u_2" "reg186.cn")) ((NIL NIL "x55mgp2u_2" "reg186.cn")) ((NIL NIL "x55mgp2u_1" "reg186.cn")) NIL NIL NIL "<1761586552.139.1417768548630.JavaMail.mailtech@jli>") BODYSTRUCTURE (("text" "html" ("charset" "GBK") NIL NIL "quoted-printable" 21 1 NIL NIL NIL) "mixed" ("boundary" "----=_Part_138_390324070.1417768548629") NIL NIL) BODY[HEADER.FIELDS (REFERENCES SUBJECT)] {46}
info: [IOS_SYSLOG_ROW ] Subject: =?GBK?Q?Test=D3=CA=BC=FE123=5F7?=
info: [IOS_SYSLOG_ROW ] )
info: [IOS_SYSLOG_ROW ] * 71 FETCH (UID 1417768805 INTERNALDATE " 5-Dec-2014 16:39:21 +0800" FLAGS () ENVELOPE ("Fri, 5 Dec 2014 16:39:21 +0800 (CST)" "=?UTF-8?B?VGVzdOmCruS7tjEyM182?=" ((NIL NIL "x55mgp2u_2" "reg186.cn")) ((NIL NIL "x55mgp2u_2" "reg186.cn")) ((NIL NIL "x55mgp2u_2" "reg186.cn")) ((NIL NIL "x55mgp2u_1" "reg186.cn")) NIL NIL NIL "<574322827.141.1417768548801.JavaMail.mailtech@jli>") BODYSTRUCTURE (("text" "html" ("charset" "GBK") NIL NIL "quoted-printable" 21 1 NIL NIL NIL) "mixed" ("boundary" "----=_Part_140_155534118.1417768548800") NIL NIL) BODY[HEADER.FIELDS (REFERENCES SUBJECT)] {46}
info: [IOS_SYSLOG_ROW ] Subject: =?GBK?Q?Test=D3=CA=BC=FE123=5F6?=
info: [IOS_SYSLOG_ROW ] )
info: [IOS_SYSLOG_ROW ] * 72 FETCH (UID 1417768806 INTERNALDATE " 5-Dec-2014 16:39:21 +0800" FLAGS () ENVELOPE ("Fri, 5 Dec 2014 16:39:21 +0800 (CST)" "=?UTF-8?B?VGVzdOmCruS7tjEyM181?=" ((NIL NIL "x55mgp2u_2" "reg186.cn")) ((NIL NIL "x55mgp2u_2" "reg186.
cn")) ((NIL NIL "x55mgp2u_2" "reg186.cn")) ((NIL NIL "x55mgp2u_1" "reg186.cn")) NIL NIL NIL "<1999924864.143.1417768548946.JavaMail.mailtech@jli>") BODYSTRUCTURE (("text" "html" ("charset" "GBK") NIL NIL "quoted-printable" 21 1 NIL NIL NIL) "mixed" ("boundary" "----=_Part_142_1670880948.1417768548945") NIL NIL) BODY[HEADER.FIELDS (REFERENCES SUBJECT)] {46}
info: [IOS_SYSLOG_ROW ] Subject: =?GBK?Q?Test=D3=CA=BC=FE123=5F5?=
info: [IOS_SYSLOG_ROW ] )
info: [IOS_SYSLOG_ROW ] * 73 FETCH (UID 1417768807 INTERNALDATE " 5-Dec-2014 16:39:21 +0800" FLAGS () ENVELOPE ("Fri, 5 Dec 2014 16:39:21 +0800 (CST)" "=?UTF-8?B?VGVzdOmCruS7tjEyM180?=" ((NIL NIL "x55mgp2u_2" "reg186.cn")) ((NIL NIL "x55mgp2u_2" "reg186.cn")) ((NIL NIL "x55mgp2u_2" "reg186.cn")) ((NIL NIL "x55mgp2u_1" "reg186.cn")) NIL NIL NIL "<2015964768.145.1417768549079.JavaMail.mailtech@jli>") BODYSTRUCTURE (("text" "html" ("charset" "GBK") NIL NIL "quoted-printable" 21 1 NIL NIL NIL) "mixed" ("boundary" "----=_Part_144_1772078252.1417768549079") NIL NIL) BODY[HEADER.FIELDS (REFERENCES SUBJECT)] {46}
info: [IOS_SYSLOG_ROW ] Subject: =?GBK?Q?Test=D3=CA=BC=FE123=5F4?=
info: [IOS_SYSLOG_ROW ] )
info: [IOS_SYSLOG_ROW ] * 74 FETCH (UID 1417768808 INTERNALDATE " 5-Dec-2014 16:39:21 +0800" FLAGS () ENVELOPE ("Fri, 5 Dec 2014 16:39:21 +0800 (CST)" "=?UTF-8?B?VGVzdOmCruS7tjEyM18z?=" ((NIL NIL "x55mgp2u_2" "reg186.cn")) ((NIL NIL "x55mgp2u_2" "reg186.cn")) ((NIL NIL "x55mgp2u_2" "reg186.cn")) ((NIL NIL "x55mgp2u_1" "reg186.cn")) NIL NIL NIL "<574188661.147.1417768549211.JavaMail.mailtech@jli>") BODYSTRUCTURE (("text" "html" ("charset" "GBK") NIL NIL "quoted-printable" 21 1 NIL NIL NIL) "mixed" ("boundary" "----=_Part_146_359971180.1417768549210") NIL NIL) BODY[HEADER.FIELDS (REFERENCES SUBJECT)] {46}
info: [IOS_SYSLOG_ROW ] Subject: =?GBK?Q?Test=D3=CA=BC=FE123=5F3?=
info: [IOS_SYSLOG_ROW ] )
info: [IOS_SYSLOG_ROW ] * 75 FETCH (UID 1417768809 INTERNALDATE " 5-Dec-2014 16:39:21 +0800" FLAGS () ENVELOPE ("Fri, 5 Dec 2014 16:39:21 +0800 (CST)" "=?UTF-8?B?VGVzdOmCruS7tjEyM18y?=" ((NIL NIL "x55mgp2u_2" "reg186.cn")) ((NIL NIL "x55mgp2u_2" "reg186.cn")) ((NIL NIL "x55mgp2u_2" "reg186.cn")) ((NIL NIL "x55mgp2u_1" "reg186.cn")) NIL NIL NIL "<24429138.149.1417768549345.JavaMail.mailtech@jli>") BODYSTRUCTURE (("text" "html" ("charset" "GBK") NIL NIL "quoted-printable" 21 1 NIL NIL NIL) "mixed" ("boundary" "----=_Part_148_1448182548.1417768549344") NIL NIL) BODY[HEADER.FIELDS (REFERENCES SUBJECT)] {46}
info: [IOS_SYSLOG_ROW ] Subject: =?GBK?Q?Test=D3=CA=BC=FE123=5F2?=
info: [IOS_SYSLOG_ROW ] )
info: [IOS_SYSLOG_ROW ] * 76 FETCH (UID 1417768810 INTERNALDATE " 5-Dec-2014 16:39:22 +0800" FLAGS () ENVELOPE ("Fri, 5 Dec 2014 16:39:22 +0800 (CST)" "=?UTF-8?B?VGVzdOmCruS7tjEyM18x?=" ((NIL NIL "x55mgp2u_2" "reg186.cn")) ((NIL NIL "x55mgp2u_2" "reg186.cn")) ((NIL NIL "x55mgp2u_2" "reg186.cn")) ((NIL NIL "x55mgp2u_1" "reg186.cn")) NIL NIL NIL "<384778888.151.1417768549468.JavaMail.mailtech@jli>") BODYSTRUCTURE (("text" "html" ("charset" "GBK") NIL NIL "quoted-printable" 21 1 NIL NIL NIL) "mixed" ("boundary" "----=_Part_150_783016872.1417768549468") NIL NIL) BODY[HEADER.FIELDS (REFERENCES SUBJECT)] {46}
info: [IOS_SYSLOG_ROW ] Subject: =?GBK?Q?Test=D3=CA=BC=FE123=5F1?=
info: [IOS_SYSLOG_ROW ] )
info: [IOS_SYSLOG_ROW ] 9 OK Fetch completed
info: [IOS_SYSLOG_ROW ] Dec  5 19:48:04 coremails-iPad Coremail[3685] <Warning>: [CPIMapMailSource.m 601]: Progress: 39 of 50
info: [IOS_SYSLOG_ROW ] Dec  5 19:48:04 coremails-iPad Coremail[3685] <Warning>: [CPIMapMailSource.m 601]: Progress: 40 of 50
info: [IOS_SYSLOG_ROW ] Dec  5 19:48:04 coremails-iPad Coremail[3685] <Warning>: [CPIMapMailSource.m 601]: Progress: 41 of 50
info: [IOS_SYSLOG_ROW ] Dec  5 19:48:04 coremails-iPad Coremail[3685] <Warning>: [CPIMapMailSource.m 601]: Progress: 42 of 50
info: [IOS_SYSLOG_ROW ] Dec  5 19:48:04 coremails-iPad Coremail[3685] <Warnin
g>: [CPIMapMailSource.m 601]: Progress: 43 of 50
info: [IOS_SYSLOG_ROW ] Dec  5 19:48:04 coremails-iPad Coremail[3685] <Warning>: [CPIMapMailSource.m 601]: Progress: 44 of 50
info: [IOS_SYSLOG_ROW ] Dec  5 19:48:04 coremails-iPad Coremail[3685] <Warning>: [CPIMapMailSource.m 601]: Progress: 45 of 50
info: [IOS_SYSLOG_ROW ] Dec  5 19:48:04 coremails-iPad Coremail[3685] <Warning>: [CPIMapMailSource.m 601]: Progress: 46 of 50
info: [IOS_SYSLOG_ROW ] Dec  5 19:48:04 coremails-iPad Coremail[3685] <Warning>: [CPIMapMailSource.m 601]: Progress: 47 of 50
info: [IOS_SYSLOG_ROW ] Dec  5 19:48:04 coremails-iPad Coremail[3685] <Warning>: [CPIMapMailSource.m 601]: Progress: 48 of 50
info: [IOS_SYSLOG_ROW ] Dec  5 19:48:04 coremails-iPad Coremail[3685] <Warning>: [CPIMapMailSource.m 601]: Progress: 49 of 50
info: [IOS_SYSLOG_ROW ] Dec  5 19:48:04 coremails-iPad Coremail[3685] <Warning>: [CPIMapMailSource.m 601]: Progress: 50 of 50
info: [IOS_SYSLOG_ROW ] Dec  5 19:48:04 coremails-iPad Coremail[3685] <Warning>: [CPIMapMailSource.m 611]: fetched all messages.

info: [IOS_SYSLOG_ROW ] Dec  5 19:48:04 coremails-iPad Coremail[3685] <Warning>: [CPIMapMailSource.m 89]: event logged:0x17e203d0 1 withData: 10 STATUS INBOX (UNSEEN MESSAGES RECENT UIDNEXT UIDVALIDITY)

info: [IOS_SYSLOG_ROW ] Dec  5 19:48:04 coremails-iPad Coremail[3685] <Warning>: [CPIMapMailSource.m 89]: event logged:0x17e203d0 0 withData: * STATUS "INBOX" (MESSAGES 76 RECENT 76 UIDVALIDITY 1 UNSEEN 76)

info: [IOS_SYSLOG_ROW ] 10 OK STATUS completed

info: [IOS_SYSLOG_ROW ] Dec  5 19:48:04 coremails-iPad Coremail[3685] <Warning>: [CPIMapMailSource.m 89]: event logged:0x17e203d0 1 withData: 11 STATUS "abc@123.com" (UNSEEN MESSAGES RECENT UIDNEXT UIDVALIDITY)

info: [IOS_SYSLOG_ROW ] Dec  5 19:48:04 coremails-iPad Coremail[3685] <Warning>: [CPIMapMailSource.m 89]: event logged:0x17e203d0 0 withData: * STATUS "abc@123.com" (MESSAGES 0 RECENT 0 UIDVALIDITY 6809768 UNSEEN 0)
info: [IOS_SYSLOG_ROW ] 11 OK STATUS completed

info: Instruments is ready to receive commands

info: [debug] Instruments launched. Starting poll loop for new commands.

info: [debug] Setting bootstrap config keys/values
info: [debug] Pushing command to appium work queue: "target = $.target();\nau = $;\n$.isVerbose = true;\n"
info: [debug] Socket data received (2 bytes)
info: [debug] Socket data being routed.
info: [debug] Sending command to instruments: target = $.target();
au = $;
$.isVerbose = true;

info: [debug] Socket data received (27 bytes)

info: [debug] Socket data being routed.
info: [debug] Got result from instruments: {"status":0,"value":true}
info: [debug] Setting initial orientation to PORTRAIT

info: [debug] Pushing command to appium work queue: "au.setScreenOrientation('PORTRAIT')"
info: [debug] Sending command to instruments: au.setScreenOrientation('PORTRAIT')

info: [debug] [INST] 2014-12-05 11:48:05 +0000 Debug: evaluation finished
info: [debug] [INST] 2014-12-05 11:48:05 +0000 Debug: responding with:
info: [debug] [INST] 2014-12-05 11:48:05 +0000 Debug: Running system command #1: /Applications/Appium.app/Contents/Resources/node/bin/node /Applications/Appium.app/Contents/Resources/node_modules/appium/node_modules/appium-uiauto/bin/command-proxy-client.js /tmp/instruments_sock 2,{"status":0,"value":true}...

info: [debug] [INST] 2014-12-05 11:48:06 +0000 Debug: Got new command 1 from instruments: au.setScreenOrientation('PORTRAIT')

info: [debug] [INST] 2014-12-05 11:48:06 +0000 Debug: evaluating au.setScreenOrientation('PORTRAIT')

info: [debug] [INST] 2014-12-05 11:48:06 +0000 Debug: target.setDeviceOrientation("1")

info: [debug] [INST] 2014-12-05 11:48:07 +0000 Debug: evaluation finished

info: [debug] [INST] 2014-12-05 11:48:07 +0000 Debug: responding with:

info: [debug] [INST] 2014-12-05 11:48:07 +0000 Debug: Running system command #2: /Applications/Appium.app/Contents/Resources/node/bin/node /Applications/Appium.app/Contents/Resources/node_modules/appium/node_modules/appium-uiauto/bin/command-proxy-client.js /tmp/instruments_sock 2,{"status":0,"value":"PORTRAIT"}...

info: [debug] Socket data received (33 bytes)

info: [debug] Socket data being routed.
info: [debug] Got result from instruments: {"status":0,"value":"PORTRAIT"}
info: [debug] Waiting for app source to contain elements

info: [debug] Pushing command to appium work queue: "au.mainApp().getTreeForXML()"
info: [debug] Sending command to instruments: au.mainApp().getTreeForXML()

info: [debug] [INST] 2014-12-05 11:48:08 +0000 Debug: Got new command 2 from instruments: au.mainApp().getTreeForXML()

info: [debug] [INST] 2014-12-05 11:48:08 +0000 Debug: evaluating au.mainApp().getTreeForXML()

info: --> GET /wd/hub/status {}

info: [debug] Responding to client with success: {"status":0,"value":{"build":{"version":"1.3.3","revision":"34e21b01b87d4e3959e1c97c0a8d0b1a610bdc78"},"isShuttingDown":false},"sessionId":"490bf967-85d1-43f9-aba4-b5d8f940a0e4"}

info: <-- GET /wd/hub/status 200 2.096 ms - 178 {"status":0,"value":{"build":{"version":"1.3.3","revision":"34e21b01b87d4e3959e1c97c0a8d0b1a610bdc78"},"isShuttingDown":false},"sessionId":"490bf967-85d1-43f9-aba4-b5d8f940a0e4"}

info: [debug] [INST] 2014-12-05 11:48:14 +0000 Debug: evaluation finished

ht":68},">":[]}}]}},{"UIATableCell":

info: [debug] [INST] {"@":{"name":"16:39, x55mgp2u_2\r , Test邮件123_8,  Test内容123","label":null,"value":"","dom":null,"enabled":true,"valid":true,"visible":true,"hint":null,"path":"/0/0/3/6","x":0,"y":154,"width":768,"height":68},">":[{"UIAStaticText":{"@":{"name":"16:39, x55mgp2u_2\r , Test邮件123_8,  Test内容123","label":"16:39, x55mgp2u_2\r , Test邮件123_8,  Test内容123","value":"","dom":null,"enabled":true,"valid":true,"visible":true,"hint":null,"path":"/0/0/3/6/0","x":0,"y":154,"width":768,"height":68},">":[]}},{"UIAButton":{"@":{"name":"unselFlagView","label":"unselFlagView","value":null,"dom":null,"enabled":true,"valid":true,"visible":true,"hint":null,"path":"/0/0/3/6/1","x":725,"y":180,"width":24,"height":24},">":[]}},{"UIAButton":{"@":{"name":"list actionbar RUR p","label":"list actionbar RUR p","value":null,"dom":null,"enabled":true,"valid":true,"visible":false,"hint":null,"path":"/0/0/3/6/2","x":768,"y":154,"width":86.66668701171875,"height":68},">":[]}},{"UIAButton":{"@":{"name":"list actionbar delete p","label":"list actionbar delete p","value":null,"dom":null,"enabled":true,"valid":true,"visible":false,"hint":null,"path":"/0/0/3/6/3","x":854.6666870117188,"y":154,"width":86.66668701171875,"height":68},">":[]}},{"UIAButton":{"@":{"name":"list actionbar more p","label":"list actionbar more p","value":null,"dom":null,"enabled":true,"valid":true,"visible":false,"hint":null,"path":"/0/0/3/6/4","x":941.3333129882812,"y":154,"width":86.66668701171875,"height":68},">":[]}}]}},{"UIATableCell":{"@":{"name":"16:39, x55mgp2u_2\r , Test邮件123_7,  Test内容123","label":null,"value":"","dom":null,"enabled":true,"valid":true,"visible":true,"hint":null,"path":"/0/0/3/7","x":0,"y":222,"width":768,"height":68},">":[{"UIAStaticText":{"@":{"name":"16:39, x55mgp2u_2\r , Test邮件123_7,  Test内容123","label":"16:39, x55mgp2u_2\r , Test邮件123_7,  Test内容123","value":"","dom":null,"enabled":true,"valid":true,"visible":true,"hint":null,"path":"/0/0/3/7/0","x":0,"y":222,"width":768,"height":68},">":[]}},{"UIAButton":{"@":{"name":"unselFlagView","label":"unselFlagView","value":null,"dom":null,"enabled":true,"valid":true,"visible":true,"hint":null,"path":"/0/0/3/7/1","x":725,"y":248,"width":24,"height":24},">":[]}},{"UIAButton":{"@":{"name":"list actionbar RUR p","label":"list actionbar RUR p","value":null,"dom":null,"enabled":true,"valid":true,"visible":false,"hint":null,"path":"/0/0/3/7/2","x":768,"y":222,"width":86.66668701171875,"height":68},">":[]}},{"UIAButton":{"@":{"name":"list actionbar delete p","label":"list actionbar delete p","value":null,"dom":null,"enabled":true,"valid":true,"visible":false,"hint":null,"path":"/0/0/3/7/3","x":854.6666870117188,"y":222,"width":86.66668701171875,"height":68},">":[]}},{"UIAButton":{"@":{"name":"list actionbar more p","label":"list actionbar more p","value":null,"dom":null,"enabled":true,"valid":true,"visible":false,"hint":null,"path":"/0/0/3/7/4","x":941.3333129882812,"y":222,"width":86.66668701171875,"height":68},">":[]}}]}},{"UIATableCell":{"@":{"name":"16:39, x55mgp2u_2\r , Test邮件123_6,  Test内容123","label":null,"value":"","dom":null,"enabled":true,"valid":true,"visible":true,"hint":null,"path":"/0/0/3/8","x":0,"y":290,"width":768,"height":68},">":[{"UIAStaticText":{"@":{"name":"16:39, x55mgp2u_2\r , Test邮件123_6,  Test内容123","label":"16:39, x55mgp2u_2\r , Test邮件123_6,  Test内容123","value":"","dom":null,"enabled":true,"valid":true,"visible":true,"hint":null,"path":"/0/0/3/8/0","x":0,"y":290,"width":768,"height":68},">":[]}},{"UIAButton":{"@":{"name":"unselFlagView","label":"unselFlagView","value":null,"dom":null,"enabled":true,"valid":true,"visible":true,"hint":null,"path":"/0/0/3/8/1","x":725,"y":316,"width":24,"height":24},">":[]}},{"UIAButton":{"@":{"name":"list actionbar RUR p","label":"list actionbar RUR p","value":null,"dom":null,"enabled":true,"valid":true,"visible":false,"hint":null,"path":"/0/0/3/8/2","x":768,"y":290,"width":86.66668701171875,"height":68},">":[]}},{"UIAButton":{"@":{"name":"list actionbar delete p",
"label":"list actionbar delete p","value":null,"dom":null,"enabled":true,"valid":true,"visible":false,"hint":null,"path":"/0/0/3/8/3","x":854.6666870117188,"y":290,"width":86.66668701171875,"height":68},">":[]}},{"UIAButton":{"@":{"name":"list actionbar more p","label":"list actionbar more p","value":null,"dom":null,"enabled":true,"valid":true,"visible":false,"hint":null,"path":"/0/0/3/8/4","x":941.3333129882812,"y":290,"width":86.66668701171875,"height":68},">":[]}}]}},{"UIATableCell":{"@":{"name":"16:39, x55mgp2u_2\r , Test邮件123_5,  Test内容123","label":null,"value":"","dom":null,"enabled":true,"valid":true,"visible":true,"hint":null,"path":"/0/0/3/9","x":0,"y":358,"width":768,"height":68},">":[{"UIAStaticText":{"@":{"name":"16:39, x55mgp2u_2\r , Test邮件123_5,  Test内容123","label":"16:39, x55mgp2u_2\r , Test邮件123_5,  Test内容123","value":"","dom":null,"enabled":true,"valid":true,"visible":true,"hint":null,"path":"/0/0/3/9/0","x":0,"y":358,"width":768,"height":68},">":[]}},{"UIAButton":{"@":{"name":"unselFlagView","label":"unselFlagView","value":null,"dom":null,"enabled":true,"valid":true,"visible":true,"hint":null,"path":"/0/0/3/9/1","x":725,"y":384,"width":24,"height":24},">":[]}},{"UIAButton":{"@":{"name":"list actionbar RUR p","label":"list actionbar RUR p","value":null,"dom":null,"enabled":true,"valid":true,"visible":false,"hint":null,"path":"/0/0/3/9/2","x":768,"y":358,"width":86.66668701171875,"height":68},">":[]}},{"UIAButton":{"@":{"name":"list actionbar delete p","label":"list actionbar delete p","value":null,"dom":null,"enabled":true,"valid":true,"visible":false,"hint":null,"path":"/0/0/3/9/3","x":854.6666870117188,"y":358,"width":86.66668701171875,"height":68},">":[]}},{"UIAButton":{"@":{"name":"list actionbar more p","label":"list actionbar more p","value":null,"dom":null,"enabled":true,"valid":true,"visible":false,"hint":null,"path":"/0/0/3/9/4","x":941.3333129882812,"y":358,"width":86.66668701171875,"height":68},">":[]}}]}},{"UIATableCell":{"@":{"name":"16:39, x55mgp2u_2\r , Test邮件123_4,  Test内容123","label":null,"value":"","dom":null,"enabled":true,"valid":true,"visible":true,"hint":null,"path":"/0/0/3/10","x":0,"y":426,"width":768,"height":68},">":[{"UIAStaticText":{"@":{"name":"16:39, x55mgp2u_2\r , Test邮件123_4,  Test内容123","label":"16:39, x55mgp2u_2\r , Test邮件123_4,  Test内容123","value":"","dom":null,"enabled":true,"valid":true,"visible":true,"hint":null,"path":"/0/0/3/10/0","x":0,"y":426,"width":768,"height":68},">":[]}},{"UIAButton":{"@":{"name":"unselFlagView","label":"unselFlagView","value":null,"dom":null,"enabled":true,"valid":true,"visible":true,"hint":null,"path":"/0/0/3/10/1","x":725,"y":452,"width":24,"height":24},">":[]}},{"UIAButton":{"@":{"name":"list actionbar RUR p","label":"list actionbar RUR p","value":null,"dom":null,"enabled":true,"valid":true,"visible":false,"hint":null,"path":"/0/0/3/10/2","x":768,"y":426,"width":86.66668701171875,"height":68},">":[]}},{"UIAButton":{"@":{"name":"list actionbar delete p","label":"list actionbar delete p","value":null,"dom":null,"enabled":true,"valid":true,"visible":false,"hint":null,"path":"/0/0/3/10/3","x":854.6666870117188,"y":426,"width":86.66668701171875,"height":68},">":[]}},{"UIAButton":{"@":{"name":"list actionbar more p","label":"list actionbar more p","value":null,"dom":null,"enabled":true,"valid":true,"visible":false,"hint":null,"path":"/0/0/3/10/4","x":941.3333129882812,"y":426,"width":86.66668701171875,"height":68},">":[]}}]}},{"UIATableCell":{"@":{"name":"16:39, x55mgp2u_2\r , Test邮件123_3,  Test内容123","label":null,"value":"","dom":null,"enabled":true,"valid":true,"visible":true,"hint":null,"path":"/0/0/3/11","x":0,"y":494,"width":768,"height":68},">":[{"UIAStaticText":{"@":{"name":"16:39, x55mgp2u_2\r , Test邮件123_3,  Test内容123","label":"16:39, x55mgp2u_2\r , Test邮件123_3,  Test内容123","value":"","dom":null,"enabled":true,"valid":true,"visible":true,"hint":null,"path":"/0/0/3/11/0","x":0,"y":494,"width":768,"height":68},">":[]}},{"UIAButton":{"@":{"name":"unselFlagView","labe
l":"unselFlagView","value":null,"dom
info: [debug] [INST] ":null,"enabled":true,"valid":true,"visible":true,"hint":null,"path":"/0/0/3/11/1","x":725,"y":520,"width":24,"height":24},">":[]}},{"UIAButton":{"@":{"name":"list actionbar RUR p","label":"list actionbar RUR p","value":null,"dom":null,"enabled":true,"valid":true,"visible":false,"hint":null,"path":"/0/0/3/11/2","x":768,"y":494,"width":86.66668701171875,"height":68},">":[]}},{"UIAButton":{"@":{"name":"list actionbar delete p","label":"list actionbar delete p","value":null,"dom":null,"enabled":true,"valid":true,"visible":false,"hint":null,"path":"/0/0/3/11/3","x":854.6666870117188,"y":494,"width":86.66668701171875,"height":68},">":[]}},{"UIAButton":{"@":{"name":"list actionbar more p","label":"list actionbar more p","value":null,"dom":null,"enabled":true,"valid":true,"visible":false,"hint":null,"path":"/0/0/3/11/4","x":941.3333129882812,"y":494,"width":86.66668701171875,"height":68},">":[]}}]}},{"UIATableCell":{"@":{"name":"16:39, x55mgp2u_2\r , Test邮件123_2,  Test内容123","label":null,"value":"","dom":null,"enabled":true,"valid":true,"visible":true,"hint":null,"path":"/0/0/3/12","x":0,"y":562,"width":768,"height":68},">":[{"UIAStaticText":{"@":{"name":"16:39, x55mgp2u_2\r , Test邮件123_2,  Test内容123","label":"16:39, x55mgp2u_2\r , Test邮件123_2,  Test内容123","value":"","dom":null,"enabled":true,"valid":true,"visible":true,"hint":null,"path":"/0/0/3/12/0","x":0,"y":562,"width":768,"height":68},">":[]}},{"UIAButton":{"@":{"name":"unselFlagView","label":"unselFlagView","value":null,"dom":null,"enabled":true,"valid":true,"visible":true,"hint":null,"path":"/0/0/3/12/1","x":725,"y":588,"width":24,"height":24},">":[]}},{"UIAButton":{"@":{"name":"list actionbar RUR p","label":"list actionbar RUR p","value":null,"dom":null,"enabled":true,"valid":true,"visible":false,"hint":null,"path":"/0/0/3/12/2","x":768,"y":562,"width":86.66668701171875,"height":68},">":[]}},{"UIAButton":{"@":{"name":"list actionbar delete p","label":"list actionbar delete p","value":null,"dom":null,"enabled":true,"valid":true,"visible":false,"hint":null,"path":"/0/0/3/12/3","x":854.6666870117188,"y":562,"width":86.66668701171875,"height":68},">":[]}},{"UIAButton":{"@":{"name":"list actionbar more p","label":"list actionbar more p","value":null,"dom":null,"enabled":true,"valid":true,"visible":false,"hint":null,"path":"/0/0/3/12/4","x":941.3333129882812,"y":562,"width":86.66668701171875,"height":68},">":[]}}]}},{"UIATableCell":{"@":{"name":"16:39, x55mgp2u_2\r , Test邮件123_16,  Test内容123","label":null,"value":"","dom":null,"enabled":true,"valid":true,"visible":true,"hint":null,"path":"/0/0/3/13","x":0,"y":630,"width":768,"height":68},">":[{"UIAStaticText":{"@":{"name":"16:39, x55mgp2u_2\r , Test邮件123_16,  Test内容123","label":"16:39, x55mgp2u_2\r , Test邮件123_16,  Test内容123","value":"","dom":null,"enabled":true,"valid":true,"visible":true,"hint":null,"path":"/0/0/3/13/0","x":0,"y":630,"width":768,"height":68},">":[]}},{"UIAButton":{"@":{"name":"unselFlagView","label":"unselFlagView","value":null,"dom":null,"enabled":true,"valid":true,"visible":true,"hint":null,"path":"/0/0/3/13/1","x":725,"y":656,"width":24,"height":24},">":[]}},{"UIAButton":{"@":{"name":"list actionbar RUR p","label":"list actionbar RUR p","value":null,"dom":null,"enabled":true,"valid":true,"visible":false,"hint":null,"path":"/0/0/3/13/2","x":768,"y":630,"width":86.66668701171875,"height":68},">":[]}},{"UIAButton":{"@":{"name":"list actionbar delete p","label":"list actionbar delete p","value":null,"dom":null,"enabled":true,"valid":true,"visible":false,"hint":null,"path":"/0/0/3/13/3","x":854.6666870117188,"y":630,"width":86.66668701171875,"height":68},">":[]}},{"UIAButton":{"@":{"name":"list actionbar more p","label":"list actionbar more p","value":null,"dom":null,"enabled":true,"valid":true,"visible":false,"hint":null,"path":"/0/0/3/13/4","x":941.3333129882812,"y":630,"width":86.66668701171875,"height":68},">":[]}}]}},{"UIATableCell":{"@":{"name":"16:39, x55mgp2u_2\r , Test邮件1
23_15,  Test内容123","label":null,"value":"","dom":null,"enabled":true,"valid":true,"visible":true,"hint":null,"path":"/0/0/3/14","x":0,"y":698,"width":768,"height":68},">":[{"UIAStaticText":{"@":{"name":"16:39, x55mgp2u_2\r , Test邮件123_15,  Test内容123","label":"16:39, x55mgp2u_2\r , Test邮件123_15,  Test内容123","value":"","dom":null,"enabled":true,"valid":true,"visible":true,"hint":null,"path":"/0/0/3/14/0","x":0,"y":698,"width":768,"height":68},">":[]}},{"UIAButton":{"@":{"name":"unselFlagView","label":"unselFlagView","value":null,"dom":null,"enabled":true,"valid":true,"visible":true,"hint":null,"path":"/0/0/3/14/1","x":725,"y":724,"width":24,"height":24},">":[]}},{"UIAButton":{"@":{"name":"list actionbar RUR p","label":"list actionbar RUR p","value":null,"dom":null,"enabled":true,"valid":true,"visible":false,"hint":null,"path":"/0/0/3/14/2","x":768,"y":698,"width":86.66668701171875,"height":68},">":[]}},{"UIAButton":{"@":{"name":"list actionbar delete p","label":"list actionbar delete p","value":null,"dom":null,"enabled":true,"valid":true,"visible":false,"hint":null,"path":"/0/0/3/14/3","x":854.6666870117188,"y":698,"width":86.66668701171875,"height":68},">":[]}},{"UIAButton":{"@":{"name":"list actionbar more p","label":"list actionbar more p","value":null,"dom":null,"enabled":true,"valid":true,"visible":false,"hint":null,"path":"/0/0/3/14/4","x":941.3333129882812,"y":698,"width":86.66668701171875,"height":68},">":[]}}]}},{"UIATableCell":{"@":{"name":"16:39, x55mgp2u_2\r , Test邮件123_14,  Test内容123","label":null,"value":"","dom":null,"enabled":true,"valid":true,"visible":true,"hint":null,"path":"/0/0/3/15","x":0,"y":766,"width":768,"height":68},">":[{"UIAStaticText":{"@":{"name":"16:39, x55mgp2u_2\r , Test邮件123_14,  Test内容123","label":"16:39, x55mgp2u_2\r , Test邮件123_14,  Test内容123","value":"","dom":null,"enabled":true,"valid":true,"visible":true,"hint":null,"path":"/0/0/3/15/0","x":0,"y":766,"width":768,"height":68},">":[]}},{"UIAButton":{"@":{"name":"unselFlagView","label":"unselFlagView","value":null,"dom":null,"enabled":true,"valid":true,"visible":true,"hint":null,"path":"/0/0/3/15/1","x":725,"y":792,"width":24,"height":24},">":[]}},{"UIAButton":{"@":{"name":"list actionbar RUR p","label":"list actionbar RUR p","value":null,"dom":null,"enabled":true,"valid":true,"visible":false,"hint":null,"path":"/0/0/3/15/2","x":768,"y":766,"width":86.66668701171875,"height":68},">":[]}},{"UIAButton":{"@":{"name":"list actionbar delete p","label":"list actionbar delete p","value":null,"dom":null,"enabled":true,"valid":true,"visible":false,"hint":null,"path":"/0/0/3/15/3","x":854.6666870117188,"y":766,"width":86.66668701171875,"height":68},">":[]}},{"UIAButton":{"@":{"name":"list actionbar more p","label":"list actionbar more p","value":null,"dom":null,"enabled":true,"valid":true,"visible":false,"hint":null,"path":"/0/0/3/15/4","x":941.3333129882812,"y":766,"width":86.66668701171875,"height":68},">":[]}}]}},{"UIATableCell":{"@":{"name":"16:39, x55mgp2u_2\r , Test邮件123_13,  Test内容123","label":null,"value":"","dom":null,"enabled":true,"valid":true,"visible":true,"hint":null,"path":"/0/0/3/16","x":0,"y":834,"width":768,"height":68},">":[{"UIAStaticText":{"@":{"name":"16:39, x55mgp2u_2\r , Test邮件123_13,  Test内容123","label":"16:39, x55mgp2u_2\r , Test邮件123_13,  Test内容123","value":"","dom":null,"enabled":true,"valid":true,"visible":true,"hint":null,"path":"/0/0/3/16/0","x":0,"y":834,"width":768,"height":68},">":[]}},{"UIAButton":{"@":{"name":"unselFlagView","label":"unselFlagView","value":null,"dom":null,"enabled":true,"valid":true,"visible":true,"hint":null,"path":"/0/0/3/16/1","x":725,"y":860,"width":24,"height":24},">":[]}},{"UIAButton":{"@":{"name":"list actionbar RUR p","label":"list actionbar RUR p","value":null,"dom":null,"enabled":true,"valid":true,"visible":false,"hint":null,"path":"/0/0/3/16/2","x":768,"y":834,"width":86.66668701171875,"height":68},">":[]}},{"UIAButton":{"@":{"name":"list actionbar delete p","label":"list actionbar delete p","value":null,"dom":null,
"enabled":true,"valid":true,"visible":false,"hint":null,"path":"/0/0/3/16/3","
info: [debug] [INST] x":854.6666870117188,"y":834,"width":86.66668701171875,"height":68},">":[]}},{"UIAButton":{"@":{"name":"list actionbar more p","label":"list actionbar more p","value":null,"dom":null,"enabled":true,"valid":true,"visible":false,"hint":null,"path":"/0/0/3/16/4","x":941.3333129882812,"y":834,"width":86.66668701171875,"height":68},">":[]}}]}},{"UIATableCell":{"@":{"name":"16:39, x55mgp2u_2\r , Test邮件123_12,  Test内容123","label":null,"value":"","dom":null,"enabled":true,"valid":true,"visible":true,"hint":null,"path":"/0/0/3/17","x":0,"y":902,"width":768,"height":68},">":[{"UIAStaticText":{"@":{"name":"16:39, x55mgp2u_2\r , Test邮件123_12,  Test内容123","label":"16:39, x55mgp2u_2\r , Test邮件123_12,  Test内容123","value":"","dom":null,"enabled":true,"valid":true,"visible":true,"hint":null,"path":"/0/0/3/17/0","x":0,"y":902,"width":768,"height":68},">":[]}},{"UIAButton":{"@":{"name":"unselFlagView","label":"unselFlagView","value":null,"dom":null,"enabled":true,"valid":true,"visible":true,"hint":null,"path":"/0/0/3/17/1","x":725,"y":928,"width":24,"height":24},">":[]}},{"UIAButton":{"@":{"name":"list actionbar RUR p","label":"list actionbar RUR p","value":null,"dom":null,"enabled":true,"valid":true,"visible":false,"hint":null,"path":"/0/0/3/17/2","x":768,"y":902,"width":86.66668701171875,"height":68},">":[]}},{"UIAButton":{"@":{"name":"list actionbar delete p","label":"list actionbar delete p","value":null,"dom":null,"enabled":true,"valid":true,"visible":false,"hint":null,"path":"/0/0/3/17/3","x":854.6666870117188,"y":902,"width":86.66668701171875,"height":68},">":[]}},{"UIAButton":{"@":{"name":"list actionbar more p","label":"list actionbar more p","value":null,"dom":null,"enabled":true,"valid":true,"visible":false,"hint":null,"path":"/0/0/3/17/4","x":941.3333129882812,"y":902,"width":86.66668701171875,"height":68},">":[]}}]}},{"UIATableCell":{"@":{"name":"16:39, x55mgp2u_2\r , Test邮件123_11,  Test内容123","label":null,"value":"","dom":null,"enabled":true,"valid":true,"visible":true,"hint":null,"path":"/0/0/3/18","x":0,"y":970,"width":768,"height":68},">":[{"UIAStaticText":{"@":{"name":"16:39, x55mgp2u_2\r , Test邮件123_11,  Test内容123","label":"16:39, x55mgp2u_2\r , Test邮件123_11,  Test内容123","value":"","dom":null,"enabled":true,"valid":true,"visible":true,"hint":null,"path":"/0/0/3/18/0","x":0,"y":970,"width":768,"height":68},">":[]}},{"UIAButton":{"@":{"name":"unselFlagView","label":"unselFlagView","value":null,"dom":null,"enabled":true,"valid":true,"visible":true,"hint":null,"path":"/0/0/3/18/1","x":725,"y":996,"width":24,"height":24},">":[]}},{"UIAButton":{"@":{"name":"list actionbar RUR p","label":"list actionbar RUR p","value":null,"dom":null,"enabled":true,"valid":true,"visible":false,"hint":null,"path":"/0/0/3/18/2","x":768,"y":970,"width":86.66668701171875,"height":68},">":[]}},{"UIAButton":{"@":{"name":"list actionbar delete p","label":"list actionbar delete p","value":null,"dom":null,"enabled":true,"valid":true,"visible":false,"hint":null,"path":"/0/0/3/18/3","x":854.6666870117188,"y":970,"width":86.66668701171875,"height":68},">":[]}},{"UIAButton":{"@":{"name":"list actionbar more p","label":"list actionbar more p","value":null,"dom":null,"enabled":true,"valid":true,"visible":false,"hint":null,"path":"/0/0/3/18/4","x":941.3333129882812,"y":970,"width":86.66668701171875,"height":68},">":[]}}]}},{"UIATableCell":{"@":{"name":"16:39, x55mgp2u_2\r , Test邮件123_10,  Test内容123","label":null,"value":"","dom":null,"enabled":true,"valid":true,"visible":false,"hint":null,"path":"/0/0/3/19","x":0,"y":1038,"width":768,"height":68},">":[{"UIAStaticText":{"@":{"name":"16:39, x55mgp2u_2\r , Test邮件123_10,  Test内容123","label":"16:39, x55mgp2u_2\r , Test邮件123_10,  Test内容123","value":"","dom":null,"enabled":true,"valid":true,"visible":false,"hint":null,"path":"/0/0/3/19/0","x":0,"y":1038,"width":768,"height":68},">":[]}},{"UIAButton":{"@":{"name":"unselFlagView",
"label":"unselFlagView","value":null,"dom":null,"enabled":true,"valid":true,"visible":false,"hint":null,"path":"/0/0/3/19/1","x":0,"y":0,"width":24,"height":24},">":[]}},{"UIAButton":{"@":{"name":"list actionbar RUR p","label":"list actionbar RUR p","value":null,"dom":null,"enabled":true,"valid":true,"visible":false,"hint":null,"path":"/0/0/3/19/2","x":0,"y":0,"width":86.66666412353516,"height":68},">":[]}},{"UIAButton":{"@":{"name":"list actionbar delete p","label":"list actionbar delete p","value":null,"dom":null,"enabled":true,"valid":true,"visible":false,"hint":null,"path":"/0/0/3/19/3","x":0,"y":0,"width":86.66666412353516,"height":68},">":[]}},{"UIAButton":{"@":{"name":"list actionbar more p","label":"list actionbar more p","value":null,"dom":null,"enabled":true,"valid":true,"visible":false,"hint":null,"path":"/0/0/3/19/4","x":0,"y":0,"width":86.66666412353516,"height":68},">":[]}}]}},{"UIATableCell":{"@":{"name":"16:39, x55mgp2u_2\r , Test邮件123_9,  Test内容123","label":null,"value":"","dom":null,"enabled":true,"valid":true,"visible":false,"hint":null,"path":"/0/0/3/20","x":0,"y":1106,"width":768,"height":68},">":[{"UIAStaticText":{"@":{"name":"16:39, x55mgp2u_2\r , Test邮件123_9,  Test内容123","label":"16:39, x55mgp2u_2\r , Test邮件123_9,  Test内容123","value":"","dom":null,"enabled":true,"valid":true,"visible":false,"hint":null,"path":"/0/0/3/20/0","x":0,"y":1106,"width":768,"height":68},">":[]}},{"UIAButton":{"@":{"name":"unselFlagView","label":"unselFlagView","value":null,"dom":null,"enabled":true,"valid":true,"visible":false,"hint":null,"path":"/0/0/3/20/1","x":0,"y":0,"width":24,"height":24},">":[]}},{"UIAButton":{"@":{"name":"list actionbar RUR p","label":"list actionbar RUR p","value":null,"dom":null,"enabled":true,"valid":true,"visible":false,"hint":null,"path":"/0/0/3/20/2","x":0,"y":0,"width":86.66666412353516,"height":68},">":[]}},{"UIAButton":{"@":{"name":"list actionbar delete p","label":"list actionbar delete p","value":null,"dom":null,"enabled":true,"valid":true,"visible":false,"hint":null,"path":"/0/0/3/20/3","x":0,"y":0,"width":86.66666412353516,"height":68},">":[]}},{"UIAButton":{"@":{"name":"list actionbar more p","label":"list actionbar more p","value":null,"dom":null,"enabled":true,"valid":true,"visible":false,"hint":null,"path":"/0/0/3/20/4","x":0,"y":0,"width":86.66666412353516,"height":68},">":[]}}]}},{"UIATableCell":{"@":{"name":"16:39, x55mgp2u_2\r , Test邮件123_23,  Test内容123","label":null,"value":"","dom":null,"enabled":true,"valid":true,"visible":false,"hint":null,"path":"/0/0/3/21","x":0,"y":1174,"width":768,"height":68},">":[{"UIAStaticText":{"@":{"name":"16:39, x55mgp2u_2\r , Test邮件123_23,  Test内容123","label":"16:39, x55mgp2u_2\r , Test邮件123_23,  Test内容123","value":"","dom":null,"enabled":true,"valid":true,"visible":false,"hint":null,"path":"/0/0/3/21/0","x":0,"y":1174,"width":768,"height":68},">":[]}},{"UIAButton":{"@":{"name":"unselFlagView","label":"unselFlagView","value":null,"dom":null,"enabled":true,"valid":true,"visible":false,"hint":null,"path":"/0/0/3/21/1","x":0,"y":0,"width":24,"height":24},">":[]}},{"UIAButton":{"@":{"name":"list actionbar RUR p","label":"list actionbar RUR p","value":null,"dom":null,"enabled":true,"valid":true,"visible":false,"hint":null,"path":"/0/0/3/21/2","x":0,"y":0,"width":86.66666412353516,"height":68},">":[]}},{"UIAButton":{"@":{"name":"list actionbar delete p","label":"list actionbar delete p","value":null,"dom":null,"enabled":true,"valid":true,"visible":false,"hint":null,"path":"/0/0/3/21/3","x":0,"y":0,"width":86.66666412353516,"height":68},">":[]}},{"UIAButton":{"@":{"name":"list actionbar more p","label":"list actionbar more p","value":null,"dom":null,"enabled":true,"valid":true,"visible":false,"hint":null,"path":"/0/0/3/21/4","x":0,"y":0,"width":86.66666412353516,"height":68},">":[]}}]}},{"UIATableCell":{"@":{"name":"16:39, x55mgp2u_2\r , Test邮件123_22,  Test内容123","label":null,"value":"","dom":null,"enabled":true,"valid":true,"visible":false,"hint":null,"path":"/0/0/3/22","x":0,"y":1242,"width":76
8,"height":68},">":[{"UIAStaticText":{"@":{"name":"16:39, x55mgp2u_2\r , Test邮件123_22,  Test内容123","label":"16:3
info: [debug] [INST] 9, x55mgp2u_2\r , Test邮件123_22,  Test内容123","value":"","dom":null,"enabled":true,"valid":true,"visible":false,"hint":null,"path":"/0/0/3/22/0","x":0,"y":1242,"width":768,"height":68},">":[]}},{"UIAButton":{"@":{"name":"unselFlagView","label":"unselFlagView","value":null,"dom":null,"enabled":true,"valid":true,"visible":false,"hint":null,"path":"/0/0/3/22/1","x":0,"y":0,"width":24,"height":24},">":[]}},{"UIAButton":{"@":{"name":"list actionbar RUR p","label":"list actionbar RUR p","value":null,"dom":null,"enabled":true,"valid":true,"visible":false,"hint":null,"path":"/0/0/3/22/2","x":0,"y":0,"width":86.66666412353516,"height":68},">":[]}},{"UIAButton":{"@":{"name":"list actionbar delete p","label":"list actionbar delete p","value":null,"dom":null,"enabled":true,"valid":true,"visible":false,"hint":null,"path":"/0/0/3/22/3","x":0,"y":0,"width":86.66666412353516,"height":68},">":[]}},{"UIAButton":{"@":{"name":"list actionbar more p","label":"list actionbar more p","value":null,"dom":null,"enabled":true,"valid":true,"visible":false,"hint":null,"path":"/0/0/3/22/4","x":0,"y":0,"width":86.66666412353516,"height":68},">":[]}}]}},{"UIATableCell":{"@":{"name":"16:39, x55mgp2u_2\r , Test邮件123_21,  Test内容123","label":null,"value":"","dom":null,"enabled":true,"valid":true,"visible":false,"hint":null,"path":"/0/0/3/23","x":0,"y":1310,"width":768,"height":68},">":[{"UIAStaticText":{"@":{"name":"16:39, x55mgp2u_2\r , Test邮件123_21,  Test内容123","label":"16:39, x55mgp2u_2\r , Test邮件123_21,  Test内容123","value":"","dom":null,"enabled":true,"valid":true,"visible":false,"hint":null,"path":"/0/0/3/23/0","x":0,"y":1310,"width":768,"height":68},">":[]}},{"UIAButton":{"@":{"name":"unselFlagView","label":"unselFlagView","value":null,"dom":null,"enabled":true,"valid":true,"visible":false,"hint":null,"path":"/0/0/3/23/1","x":0,"y":0,"width":24,"height":24},">":[]}},{"UIAButton":{"@":{"name":"list actionbar RUR p","label":"list actionbar RUR p","value":null,"dom":null,"enabled":true,"valid":true,"visible":false,"hint":null,"path":"/0/0/3/23/2","x":0,"y":0,"width":86.66666412353516,"height":68},">":[]}},{"UIAButton":{"@":{"name":"list actionbar delete p","label":"list actionbar delete p","value":null,"dom":null,"enabled":true,"valid":true,"visible":false,"hint":null,"path":"/0/0/3/23/3","x":0,"y":0,"width":86.66666412353516,"height":68},">":[]}},{"UIAButton":{"@":{"name":"list actionbar more p","label":"list actionbar more p","value":null,"dom":null,"enabled":true,"valid":true,"visible":false,"hint":null,"path":"/0/0/3/23/4","x":0,"y":0,"width":86.66666412353516,"height":68},">":[]}}]}},{"UIATableCell":{"@":{"name":"16:39, x55mgp2u_2\r , Test邮件123_20,  Test内容123","label":null,"value":"","dom":null,"enabled":true,"valid":true,"visible":false,"hint":null,"path":"/0/0/3/24","x":0,"y":1378,"width":768,"height":68},">":[{"UIAStaticText":{"@":{"name":"16:39, x55mgp2u_2\r , Test邮件123_20,  Test内容123","label":"16:39, x55mgp2u_2\r , Test邮件123_20,  Test内容123","value":"","dom":null,"enabled":true,"valid":true,"visible":false,"hint":null,"path":"/0/0/3/24/0","x":0,"y":1378,"width":768,"height":68},">":[]}},{"UIAButton":{"@":{"name":"unselFlagView","label":"unselFlagView","value":null,"dom":null,"enabled":true,"valid":true,"visible":false,"hint":null,"path":"/0/0/3/24/1","x":0,"y":0,"width":24,"height":24},">":[]}},{"UIAButton":{"@":{"name":"list actionbar RUR p","label":"list actionbar RUR p","value":null,"dom":null,"enabled":true,"valid":true,"visible":false,"hint":null,"path":"/0/0/3/24/2","x":0,"y":0,"width":86.66666412353516,"height":68},">":[]}},{"UIAButton":{"@":{"name":"list actionbar delete p","label":"list actionbar delete p","value":null,"dom":null,"enabled":true,"valid":true,"visible":false,"hint":null,"path":"/0/0/3/24/3","x":0,"y":0,"width":86.66666412353516,"height":68},">":[]}},{"UIAButton":{"@":{"name":"list actionbar more p","label":"l
ist actionbar more p","value":null,"dom":null,"enabled":true,"valid":true,"visible":false,"hint":null,"path":"/0/0/3/24/4","x":0,"y":0,"width":86.66666412353516,"height":68},">":[]}}]}},{"UIATableCell":{"@":{"name":"16:39, x55mgp2u_2\r , Test邮件123_19,  Test内容123","label":null,"value":"","dom":null,"enabled":true,"valid":true,"visible":false,"hint":null,"path":"/0/0/3/25","x":0,"y":1446,"width":768,"height":68},">":[{"UIAStaticText":{"@":{"name":"16:39, x55mgp2u_2\r , Test邮件123_19,  Test内容123","label":"16:39, x55mgp2u_2\r , Test邮件123_19,  Test内容123","value":"","dom":null,"enabled":true,"valid":true,"visible":false,"hint":null,"path":"/0/0/3/25/0","x":0,"y":1446,"width":768,"height":68},">":[]}},{"UIAButton":{"@":{"name":"unselFlagView","label":"unselFlagView","value":null,"dom":null,"enabled":true,"valid":true,"visible":false,"hint":null,"path":"/0/0/3/25/1","x":0,"y":0,"width":24,"height":24},">":[]}},{"UIAButton":{"@":{"name":"list actionbar RUR p","label":"list actionbar RUR p","value":null,"dom":null,"enabled":true,"valid":true,"visible":false,"hint":null,"path":"/0/0/3/25/2","x":0,"y":0,"width":86.66666412353516,"height":68},">":[]}},{"UIAButton":{"@":{"name":"list actionbar delete p","label":"list actionbar delete p","value":null,"dom":null,"enabled":true,"valid":true,"visible":false,"hint":null,"path":"/0/0/3/25/3","x":0,"y":0,"width":86.66666412353516,"height":68},">":[]}},{"UIAButton":{"@":{"name":"list actionbar more p","label":"list actionbar more p","value":null,"dom":null,"enabled":true,"valid":true,"visible":false,"hint":null,"path":"/0/0/3/25/4","x":0,"y":0,"width":86.66666412353516,"height":68},">":[]}}]}},{"UIATableCell":{"@":{"name":"16:39, x55mgp2u_2\r , Test邮件123_18,  Test内容123","label":null,"value":"","dom":null,"enabled":true,"valid":true,"visible":false,"hint":null,"path":"/0/0/3/26","x":0,"y":1514,"width":768,"height":68},">":[{"UIAStaticText":{"@":{"name":"16:39, x55mgp2u_2\r , Test邮件123_18,  Test内容123","label":"16:39, x55mgp2u_2\r , Test邮件123_18,  Test内容123","value":"","dom":null,"enabled":true,"valid":true,"visible":false,"hint":null,"path":"/0/0/3/26/0","x":0,"y":1514,"width":768,"height":68},">":[]}},{"UIAButton":{"@":{"name":"unselFlagView","label":"unselFlagView","value":null,"dom":null,"enabled":true,"valid":true,"visible":false,"hint":null,"path":"/0/0/3/26/1","x":0,"y":0,"width":24,"height":24},">":[]}},{"UIAButton":{"@":{"name":"list actionbar RUR p","label":"list actionbar RUR p","value":null,"dom":null,"enabled":true,"valid":true,"visible":false,"hint":null,"path":"/0/0/3/26/2","x":0,"y":0,"width":86.66666412353516,"height":68},">":[]}},{"UIAButton":{"@":{"name":"list actionbar delete p","label":"list actionbar delete p","value":null,"dom":null,"enabled":true,"valid":true,"visible":false,"hint":null,"path":"/0/0/3/26/3","x":0,"y":0,"width":86.66666412353516,"height":68},">":[]}},{"UIAButton":{"@":{"name":"list actionbar more p","label":"list actionbar more p","value":null,"dom":null,"enabled":true,"valid":true,"visible":false,"hint":null,"path":"/0/0/3/26/4","x":0,"y":0,"width":86.66666412353516,"height":68},">":[]}}]}},{"UIATableCell":{"@":{"name":"16:39, x55mgp2u_2\r , Test邮件123_17,  Test内容123","label":null,"value":"","dom":null,"enabled":true,"valid":true,"visible":false,"hint":null,"path":"/0/0/3/27","x":0,"y":1582,"width":768,"height":68},">":[{"UIAStaticText":{"@":{"name":"16:39, x55mgp2u_2\r , Test邮件123_17,  Test内容123","label":"16:39, x55mgp2u_2\r , Test邮件123_17,  Test内容123","value":"","dom":null,"enabled":true,"valid":true,"visible":false,"hint":null,"path":"/0/0/3/27/0","x":0,"y":1582,"width":768,"height":68},">":[]}},{"UIAButton":{"@":{"name":"unselFlagView","label":"unselFlagView","value":null,"dom":null,"enabled":true,"valid":true,"visible":false,"hint":null,"path":"/0/0/3/27/1","x":0,"y":0,"width":24,"height":24},">":[]}},{"UIAButton":{"@":{"name":"list actionbar RUR p","label":"list actionbar RUR p","value":null,"dom":null,"enabled":true,"valid":true,"visible":false,"hint":null,"path":"/0/0/3/27/2","x
":0,"y":0,"width":86.66666412353516,"height":68},">":[]}},{"UIAButton":{"@":{"name":"list actionbar delete p","label":"list actionbar delete p","value":null,"dom"
info: [debug] [INST] :null,"enabled":true,"valid":true,"visible":false,"hint":null,"path":"/0/0/3/27/3","x":0,"y":0,"width":86.66666412353516,"height":68},">":[]}},{"UIAButton":{"@":{"name":"list actionbar more p","label":"list actionbar more p","value":null,"dom":null,"enabled":true,"valid":true,"visible":false,"hint":null,"path":"/0/0/3/27/4","x":0,"y":0,"width":86.66666412353516,"height":68},">":[]}}]}},{"UIATableCell":{"@":{"name":"16:39, x55mgp2u_2\r , Test邮件123_25,  Test内容123","label":null,"value":"","dom":null,"enabled":true,"valid":true,"visible":false,"hint":null,"path":"/0/0/3/28","x":0,"y":1650,"width":768,"height":68},">":[{"UIAStaticText":{"@":{"name":"16:39, x55mgp2u_2\r , Test邮件123_25,  Test内容123","label":"16:39, x55mgp2u_2\r , Test邮件123_25,  Test内容123","value":"","dom":null,"enabled":true,"valid":true,"visible":false,"hint":null,"path":"/0/0/3/28/0","x":0,"y":1650,"width":768,"height":68},">":[]}},{"UIAButton":{"@":{"name":"unselFlagView","label":"unselFlagView","value":null,"dom":null,"enabled":true,"valid":true,"visible":false,"hint":null,"path":"/0/0/3/28/1","x":0,"y":0,"width":24,"height":24},">":[]}},{"UIAButton":{"@":{"name":"list actionbar RUR p","label":"list actionbar RUR p","value":null,"dom":null,"enabled":true,"valid":true,"visible":false,"hint":null,"path":"/0/0/3/28/2","x":0,"y":0,"width":86.66666412353516,"height":68},">":[]}},{"UIAButton":{"@":{"name":"list actionbar delete p","label":"list actionbar delete p","value":null,"dom":null,"enabled":true,"valid":true,"visible":false,"hint":null,"path":"/0/0/3/28/3","x":0,"y":0,"width":86.66666412353516,"height":68},">":[]}},{"UIAButton":{"@":{"name":"list actionbar more p","label":"list actionbar more p","value":null,"dom":null,"enabled":true,"valid":true,"visible":false,"hint":null,"path":"/0/0/3/28/4","x":0,"y":0,"width":86.66666412353516,"height":68},">":[]}}]}},{"UIATableCell":{"@":{"name":"16:39, x55mgp2u_2\r , Test邮件123_24,  Test内容123","label":null,"value":"","dom":null,"enabled":true,"valid":true,"visible":false,"hint":null,"path":"/0/0/3/29","x":0,"y":1718,"width":768,"height":68},">":[{"UIAStaticText":{"@":{"name":"16:39, x55mgp2u_2\r , Test邮件123_24,  Test内容123","label":"16:39, x55mgp2u_2\r , Test邮件123_24,  Test内容123","value":"","dom":null,"enabled":true,"valid":true,"visible":false,"hint":null,"path":"/0/0/3/29/0","x":0,"y":1718,"width":768,"height":68},">":[]}},{"UIAButton":{"@":{"name":"unselFlagView","label":"unselFlagView","value":null,"dom":null,"enabled":true,"valid":true,"visible":false,"hint":null,"path":"/0/0/3/29/1","x":0,"y":0,"width":24,"height":24},">":[]}},{"UIAButton":{"@":{"name":"list actionbar RUR p","label":"list actionbar RUR p","value":null,"dom":null,"enabled":true,"valid":true,"visible":false,"hint":null,"path":"/0/0/3/29/2","x":0,"y":0,"width":86.66666412353516,"height":68},">":[]}},{"UIAButton":{"@":{"name":"list actionbar delete p","label":"list actionbar delete p","value":null,"dom":null,"enabled":true,"valid":true,"visible":false,"hint":null,"path":"/0/0/3/29/3","x":0,"y":0,"width":86.66666412353516,"height":68},">":[]}},{"UIAButton":{"@":{"name":"list actionbar more p","label":"list actionbar more p","value":null,"dom":null,"enabled":true,"valid":true,"visible":false,"hint":null,"path":"/0/0/3/29/4","x":0,"y":0,"width":86.66666412353516,"height":68},">":[]}}]}},{"UIATableCell":{"@":{"name":"16:39, x55mgp2u_2\r , Test邮件123_30,  Test内容123","label":null,"value":"","dom":null,"enabled":true,"valid":true,"visible":false,"hint":null,"path":"/0/0/3/30","x":0,"y":1786,"width":768,"height":68},">":[{"UIAStaticText":{"@":{"name":"16:39, x55mgp2u_2\r , Test邮件123_30,  Test内容123","label":"16:39, x55mgp2u_2\r , Test邮件123_30,  Test内容123","value":"","dom":null,"enabled":true,"valid":true,"visible":false,"hint":null,"path":"/0/0/3/30/0","x":0,"y":1786,"width":768,"height":6
8},">":[]}},{"UIAButton":{"@":{"name":"unselFlagView","label":"unselFlagView","value":null,"dom":null,"enabled":true,"valid":true,"visible":false,"hint":null,"path":"/0/0/3/30/1","x":0,"y":0,"width":24,"height":24},">":[]}},{"UIAButton":{"@":{"name":"list actionbar RUR p","label":"list actionbar RUR p","value":null,"dom":null,"enabled":true,"valid":true,"visible":false,"hint":null,"path":"/0/0/3/30/2","x":0,"y":0,"width":86.66666412353516,"height":68},">":[]}},{"UIAButton":{"@":{"name":"list actionbar delete p","label":"list actionbar delete p","value":null,"dom":null,"enabled":true,"valid":true,"visible":false,"hint":null,"path":"/0/0/3/30/3","x":0,"y":0,"width":86.66666412353516,"height":68},">":[]}},{"UIAButton":{"@":{"name":"list actionbar more p","label":"list actionbar more p","value":null,"dom":null,"enabled":true,"valid":true,"visible":false,"hint":null,"path":"/0/0/3/30/4","x":0,"y":0,"width":86.66666412353516,"height":68},">":[]}}]}},{"UIATableCell":{"@":{"name":"16:39, x55mgp2u_2\r , Test邮件123_29,  Test内容123","label":null,"value":"","dom":null,"enabled":true,"valid":true,"visible":false,"hint":null,"path":"/0/0/3/31","x":0,"y":1854,"width":768,"height":68},">":[{"UIAStaticText":{"@":{"name":"16:39, x55mgp2u_2\r , Test邮件123_29,  Test内容123","label":"16:39, x55mgp2u_2\r , Test邮件123_29,  Test内容123","value":"","dom":null,"enabled":true,"valid":true,"visible":false,"hint":null,"path":"/0/0/3/31/0","x":0,"y":1854,"width":768,"height":68},">":[]}},{"UIAButton":{"@":{"name":"unselFlagView","label":"unselFlagView","value":null,"dom":null,"enabled":true,"valid":true,"visible":false,"hint":null,"path":"/0/0/3/31/1","x":0,"y":0,"width":24,"height":24},">":[]}},{"UIAButton":{"@":{"name":"list actionbar RUR p","label":"list actionbar RUR p","value":null,"dom":null,"enabled":true,"valid":true,"visible":false,"hint":null,"path":"/0/0/3/31/2","x":0,"y":0,"width":86.66666412353516,"height":68},">":[]}},{"UIAButton":{"@":{"name":"list actionbar delete p","label":"list actionbar delete p","value":null,"dom":null,"enabled":true,"valid":true,"visible":false,"hint":null,"path":"/0/0/3/31/3","x":0,"y":0,"width":86.66666412353516,"height":68},">":[]}},{"UIAButton":{"@":{"name":"list actionbar more p","label":"list actionbar more p","value":null,"dom":null,"enabled":true,"valid":true,"visible":false,"hint":null,"path":"/0/0/3/31/4","x":0,"y":0,"width":86.66666412353516,"height":68},">":[]}}]}},{"UIATableCell":{"@":{"name":"16:39, x55mgp2u_2\r , Test邮件123_28,  Test内容123","label":null,"value":"","dom":null,"enabled":true,"valid":true,"visible":false,"hint":null,"path":"/0/0/3/32","x":0,"y":1922,"width":768,"height":68},">":[{"UIAStaticText":{"@":{"name":"16:39, x55mgp2u_2\r , Test邮件123_28,  Test内容123","label":"16:39, x55mgp2u_2\r , Test邮件123_28,  Test内容123","value":"","dom":null,"enabled":true,"valid":true,"visible":false,"hint":null,"path":"/0/0/3/32/0","x":0,"y":1922,"width":768,"height":68},">":[]}},{"UIAButton":{"@":{"name":"unselFlagView","label":"unselFlagView","value":null,"dom":null,"enabled":true,"valid":true,"visible":false,"hint":null,"path":"/0/0/3/32/1","x":0,"y":0,"width":24,"height":24},">":[]}},{"UIAButton":{"@":{"name":"list actionbar RUR p","label":"list actionbar RUR p","value":null,"dom":null,"enabled":true,"valid":true,"visible":false,"hint":null,"path":"/0/0/3/32/2","x":0,"y":0,"width":86.66666412353516,"height":68},">":[]}},{"UIAButton":{"@":{"name":"list actionbar delete p","label":"list actionbar delete p","value":null,"dom":null,"enabled":true,"valid":true,"visible":false,"hint":null,"path":"/0/0/3/32/3","x":0,"y":0,"width":86.66666412353516,"height":68},">":[]}},{"UIAButton":{"@":{"name":"list actionbar more p","label":"list actionbar more p","value":null,"dom":null,"enabled":true,"valid":true,"visible":false,"hint":null,"path":"/0/0/3/32/4","x":0,"y":0,"width":86.66666412353516,"height":68},">":[]}}]}},{"UIATableCell":{"@":{"name":"16:39, x55mgp2u_2\r , Test邮件123_27,  Test内容123","label":null,"value":"","dom":null,"enabled":true,"valid":true,"visible":false
,"hint":null,"path":"/0/0/3/33","x":0,"y":1990,"width":768,"height":68},">":[{"UIAStaticText":{"@":{"name":"16:39, x55mgp2u_2\r , Test邮件123_27,  Test内容123","label":"16:39, x55mgp2u_2\r , Test邮
info: [debug] [INST] 件123_27,  Test内容123","value":"","dom":null,"enabled":true,"valid":true,"visible":false,"hint":null,"path":"/0/0/3/33/0","x":0,"y":1990,"width":768,"height":68},">":[]}},{"UIAButton":{"@":{"name":"unselFlagView","label":"unselFlagView","value":null,"dom":null,"enabled":true,"valid":true,"visible":false,"hint":null,"path":"/0/0/3/33/1","x":0,"y":0,"width":24,"height":24},">":[]}},{"UIAButton":{"@":{"name":"list actionbar RUR p","label":"list actionbar RUR p","value":null,"dom":null,"enabled":true,"valid":true,"visible":false,"hint":null,"path":"/0/0/3/33/2","x":0,"y":0,"width":86.66666412353516,"height":68},">":[]}},{"UIAButton":{"@":{"name":"list actionbar delete p","label":"list actionbar delete p","value":null,"dom":null,"enabled":true,"valid":true,"visible":false,"hint":null,"path":"/0/0/3/33/3","x":0,"y":0,"width":86.66666412353516,"height":68},">":[]}},{"UIAButton":{"@":{"name":"list actionbar more p","label":"list actionbar more p","value":null,"dom":null,"enabled":true,"valid":true,"visible":false,"hint":null,"path":"/0/0/3/33/4","x":0,"y":0,"width":86.66666412353516,"height":68},">":[]}}]}},{"UIATableCell":{"@":{"name":"16:39, x55mgp2u_2\r , Test邮件123_26,  Test内容123","label":null,"value":"","dom":null,"enabled":true,"valid":true,"visible":false,"hint":null,"path":"/0/0/3/34","x":0,"y":2058,"width":768,"height":68},">":[{"UIAStaticText":{"@":{"name":"16:39, x55mgp2u_2\r , Test邮件123_26,  Test内容123","label":"16:39, x55mgp2u_2\r , Test邮件123_26,  Test内容123","value":"","dom":null,"enabled":true,"valid":true,"visible":false,"hint":null,"path":"/0/0/3/34/0","x":0,"y":2058,"width":768,"height":68},">":[]}},{"UIAButton":{"@":{"name":"unselFlagView","label":"unselFlagView","value":null,"dom":null,"enabled":true,"valid":true,"visible":false,"hint":null,"path":"/0/0/3/34/1","x":0,"y":0,"width":24,"height":24},">":[]}},{"UIAButton":{"@":{"name":"list actionbar RUR p","label":"list actionbar RUR p","value":null,"dom":null,"enabled":true,"valid":true,"visible":false,"hint":null,"path":"/0/0/3/34/2","x":0,"y":0,"width":86.66666412353516,"height":68},">":[]}},{"UIAButton":{"@":{"name":"list actionbar delete p","label":"list actionbar delete p","value":null,"dom":null,"enabled":true,"valid":true,"visible":false,"hint":null,"path":"/0/0/3/34/3","x":0,"y":0,"width":86.66666412353516,"height":68},">":[]}},{"UIAButton":{"@":{"name":"list actionbar more p","label":"list actionbar more p","value":null,"dom":null,"enabled":true,"valid":true,"visible":false,"hint":null,"path":"/0/0/3/34/4","x":0,"y":0,"width":86.66666412353516,"height":68},">":[]}}]}},{"UIATableCell":{"@":{"name":"16:39, x55mgp2u_2\r , Test邮件123_37,  Test内容123","label":null,"value":"","dom":null,"enabled":true,"valid":true,"visible":false,"hint":null,"path":"/0/0/3/35","x":0,"y":2126,"width":768,"height":68},">":[{"UIAStaticText":{"@":{"name":"16:39, x55mgp2u_2\r , Test邮件123_37,  Test内容123","label":"16:39, x55mgp2u_2\r , Test邮件123_37,  Test内容123","value":"","dom":null,"enabled":true,"valid":true,"visible":false,"hint":null,"path":"/0/0/3/35/0","x":0,"y":2126,"width":768,"height":68},">":[]}},{"UIAButton":{"@":{"name":"unselFlagView","label":"unselFlagView","value":null,"dom":null,"enabled":true,"valid":true,"visible":false,"hint":null,"path":"/0/0/3/35/1","x":0,"y":0,"width":24,"height":24},">":[]}},{"UIAButton":{"@":{"name":"list actionbar RUR p","label":"list actionbar RUR p","value":null,"dom":null,"enabled":true,"valid":true,"visible":false,"hint":null,"path":"/0/0/3/35/2","x":0,"y":0,"width":86.66666412353516,"height":68},">":[]}},{"UIAButton":{"@":{"name":"list actionbar delete p","label":"list actionbar delete p","value":null,"dom":null,"enabled":true,"valid":true,"visible":false,"hint":null,"path":"/0/0/3/35/3","x":0,"y":0,"width":86.66666412353516,"height":68},">":[]}},{"U
IAButton":{"@":{"name":"list actionbar more p","label":"list actionbar more p","value":null,"dom":null,"enabled":true,"valid":true,"visible":false,"hint":null,"path":"/0/0/3/35/4","x":0,"y":0,"width":86.66666412353516,"height":68},">":[]}}]}},{"UIATableCell":{"@":{"name":"16:39, x55mgp2u_2\r , Test邮件123_36,  Test内容123","label":null,"value":"","dom":null,"enabled":true,"valid":true,"visible":false,"hint":null,"path":"/0/0/3/36","x":0,"y":2194,"width":768,"height":68},">":[{"UIAStaticText":{"@":{"name":"16:39, x55mgp2u_2\r , Test邮件123_36,  Test内容123","label":"16:39, x55mgp2u_2\r , Test邮件123_36,  Test内容123","value":"","dom":null,"enabled":true,"valid":true,"visible":false,"hint":null,"path":"/0/0/3/36/0","x":0,"y":2194,"width":768,"height":68},">":[]}},{"UIAButton":{"@":{"name":"unselFlagView","label":"unselFlagView","value":null,"dom":null,"enabled":true,"valid":true,"visible":false,"hint":null,"path":"/0/0/3/36/1","x":0,"y":0,"width":24,"height":24},">":[]}},{"UIAButton":{"@":{"name":"list actionbar RUR p","label":"list actionbar RUR p","value":null,"dom":null,"enabled":true,"valid":true,"visible":false,"hint":null,"path":"/0/0/3/36/2","x":0,"y":0,"width":86.66666412353516,"height":68},">":[]}},{"UIAButton":{"@":{"name":"list actionbar delete p","label":"list actionbar delete p","value":null,"dom":null,"enabled":true,"valid":true,"visible":false,"hint":null,"path":"/0/0/3/36/3","x":0,"y":0,"width":86.66666412353516,"height":68},">":[]}},{"UIAButton":{"@":{"name":"list actionbar more p","label":"list actionbar more p","value":null,"dom":null,"enabled":true,"valid":true,"visible":false,"hint":null,"path":"/0/0/3/36/4","x":0,"y":0,"width":86.66666412353516,"height":68},">":[]}}]}},{"UIATableCell":{"@":{"name":"16:39, x55mgp2u_2\r , Test邮件123_35,  Test内容123","label":null,"value":"","dom":null,"enabled":true,"valid":true,"visible":false,"hint":null,"path":"/0/0/3/37","x":0,"y":2262,"width":768,"height":68},">":[{"UIAStaticText":{"@":{"name":"16:39, x55mgp2u_2\r , Test邮件123_35,  Test内容123","label":"16:39, x55mgp2u_2\r , Test邮件123_35,  Test内容123","value":"","dom":null,"enabled":true,"valid":true,"visible":false,"hint":null,"path":"/0/0/3/37/0","x":0,"y":2262,"width":768,"height":68},">":[]}},{"UIAButton":{"@":{"name":"unselFlagView","label":"unselFlagView","value":null,"dom":null,"enabled":true,"valid":true,"visible":false,"hint":null,"path":"/0/0/3/37/1","x":0,"y":0,"width":24,"height":24},">":[]}},{"UIAButton":{"@":{"name":"list actionbar RUR p","label":"list actionbar RUR p","value":null,"dom":null,"enabled":true,"valid":true,"visible":false,"hint":null,"path":"/0/0/3/37/2","x":0,"y":0,"width":86.66666412353516,"height":68},">":[]}},{"UIAButton":{"@":{"name":"list actionbar delete p","label":"list actionbar delete p","value":null,"dom":null,"enabled":true,"valid":true,"visible":false,"hint":null,"path":"/0/0/3/37/3","x":0,"y":0,"width":86.66666412353516,"height":68},">":[]}},{"UIAButton":{"@":{"name":"list actionbar more p","label":"list actionbar more p","value":null,"dom":null,"enabled":true,"valid":true,"visible":false,"hint":null,"path":"/0/0/3/37/4","x":0,"y":0,"width":86.66666412353516,"height":68},">":[]}}]}},{"UIATableCell":{"@":{"name":"16:39, x55mgp2u_2\r , Test邮件123_34,  Test内容123","label":null,"value":"","dom":null,"enabled":true,"valid":true,"visible":false,"hint":null,"path":"/0/0/3/38","x":0,"y":2330,"width":768,"height":68},">":[{"UIAStaticText":{"@":{"name":"16:39, x55mgp2u_2\r , Test邮件123_34,  Test内容123","label":"16:39, x55mgp2u_2\r , Test邮件123_34,  Test内容123","value":"","dom":null,"enabled":true,"valid":true,"visible":false,"hint":null,"path":"/0/0/3/38/0","x":0,"y":2330,"width":768,"height":68},">":[]}},{"UIAButton":{"@":{"name":"unselFlagView","label":"unselFlagView","value":null,"dom":null,"enabled":true,"valid":true,"visible":false,"hint":null,"path":"/0/0/3/38/1","x":0,"y":0,"width":24,"height":24},">":[]}},{"UIAButton":{"@":{"name":"list actionbar RUR p","label":"list actionbar RUR p","value":null,"dom":null,"enabled":true,"valid"
:true,"visible":false,"hint":null,"path":"/0/0/3/38/2","x":0,"y":0,"width":86.66666412353516,"height":68},">":[]}},{"UIAButton":{"@":{"name":"list actionbar delete p","label":"list actionbar delete p","value":null,"dom":null,"enabled":true,"valid
info: [debug] [INST] ":true,"visible":false,"hint":null,"path":"/0/0/3/38/3","x":0,"y":0,"width":86.66666412353516,"height":68},">":[]}},{"UIAButton":{"@":{"name":"list actionbar more p","label":"list actionbar more p","value":null,"dom":null,"enabled":true,"valid":true,"visible":false,"hint":null,"path":"/0/0/3/38/4","x":0,"y":0,"width":86.66666412353516,"height":68},">":[]}}]}},{"UIATableCell":{"@":{"name":"16:39, x55mgp2u_2\r , Test邮件123_33,  Test内容123","label":null,"value":"","dom":null,"enabled":true,"valid":true,"visible":false,"hint":null,"path":"/0/0/3/39","x":0,"y":2398,"width":768,"height":68},">":[{"UIAStaticText":{"@":{"name":"16:39, x55mgp2u_2\r , Test邮件123_33,  Test内容123","label":"16:39, x55mgp2u_2\r , Test邮件123_33,  Test内容123","value":"","dom":null,"enabled":true,"valid":true,"visible":false,"hint":null,"path":"/0/0/3/39/0","x":0,"y":2398,"width":768,"height":68},">":[]}},{"UIAButton":{"@":{"name":"unselFlagView","label":"unselFlagView","value":null,"dom":null,"enabled":true,"valid":true,"visible":false,"hint":null,"path":"/0/0/3/39/1","x":0,"y":0,"width":24,"height":24},">":[]}},{"UIAButton":{"@":{"name":"list actionbar RUR p","label":"list actionbar RUR p","value":null,"dom":null,"enabled":true,"valid":true,"visible":false,"hint":null,"path":"/0/0/3/39/2","x":0,"y":0,"width":86.66666412353516,"height":68},">":[]}},{"UIAButton":{"@":{"name":"list actionbar delete p","label":"list actionbar delete p","value":null,"dom":null,"enabled":true,"valid":true,"visible":false,"hint":null,"path":"/0/0/3/39/3","x":0,"y":0,"width":86.66666412353516,"height":68},">":[]}},{"UIAButton":{"@":{"name":"list actionbar more p","label":"list actionbar more p","value":null,"dom":null,"enabled":true,"valid":true,"visible":false,"hint":null,"path":"/0/0/3/39/4","x":0,"y":0,"width":86.66666412353516,"height":68},">":[]}}]}},{"UIATableCell":{"@":{"name":"16:39, x55mgp2u_2\r , Test邮件123_32,  Test内容123","label":null,"value":"","dom":null,"enabled":true,"valid":true,"visible":false,"hint":null,"path":"/0/0/3/40","x":0,"y":2466,"width":768,"height":68},">":[{"UIAStaticText":{"@":{"name":"16:39, x55mgp2u_2\r , Test邮件123_32,  Test内容123","label":"16:39, x55mgp2u_2\r , Test邮件123_32,  Test内容123","value":"","dom":null,"enabled":true,"valid":true,"visible":false,"hint":null,"path":"/0/0/3/40/0","x":0,"y":2466,"width":768,"height":68},">":[]}},{"UIAButton":{"@":{"name":"unselFlagView","label":"unselFlagView","value":null,"dom":null,"enabled":true,"valid":true,"visible":false,"hint":null,"path":"/0/0/3/40/1","x":0,"y":0,"width":24,"height":24},">":[]}},{"UIAButton":{"@":{"name":"list actionbar RUR p","label":"list actionbar RUR p","value":null,"dom":null,"enabled":true,"valid":true,"visible":false,"hint":null,"path":"/0/0/3/40/2","x":0,"y":0,"width":86.66666412353516,"height":68},">":[]}},{"UIAButton":{"@":{"name":"list actionbar delete p","label":"list actionbar delete p","value":null,"dom":null,"enabled":true,"valid":true,"visible":false,"hint":null,"path":"/0/0/3/40/3","x":0,"y":0,"width":86.66666412353516,"height":68},">":[]}},{"UIAButton":{"@":{"name":"list actionbar more p","label":"list actionbar more p","value":null,"dom":null,"enabled":true,"valid":true,"visible":false,"hint":null,"path":"/0/0/3/40/4","x":0,"y":0,"width":86.66666412353516,"height":68},">":[]}}]}},{"UIATableCell":{"@":{"name":"16:39, x55mgp2u_2\r , Test邮件123_31,  Test内容123","label":null,"value":"","dom":null,"enabled":true,"valid":true,"visible":false,"hint":null,"path":"/0/0/3/41","x":0,"y":2534,"width":768,"height":68},">":[{"UIAStaticText":{"@":{"name":"16:39, x55mgp2u_2\r , Test邮件123_31,  Test内容123","label":"16:39, x55mgp2u_2\r , Test邮件123_31,  Test内容123","value":"","dom":null,"enabled":true,"valid":true,"visible":false,"hint":null,"
path":"/0/0/3/41/0","x":0,"y":2534,"width":768,"height":68},">":[]}},{"UIAButton":{"@":{"name":"unselFlagView","label":"unselFlagView","value":null,"dom":null,"enabled":true,"valid":true,"visible":false,"hint":null,"path":"/0/0/3/41/1","x":0,"y":0,"width":24,"height":24},">":[]}},{"UIAButton":{"@":{"name":"list actionbar RUR p","label":"list actionbar RUR p","value":null,"dom":null,"enabled":true,"valid":true,"visible":false,"hint":null,"path":"/0/0/3/41/2","x":0,"y":0,"width":86.66666412353516,"height":68},">":[]}},{"UIAButton":{"@":{"name":"list actionbar delete p","label":"list actionbar delete p","value":null,"dom":null,"enabled":true,"valid":true,"visible":false,"hint":null,"path":"/0/0/3/41/3","x":0,"y":0,"width":86.66666412353516,"height":68},">":[]}},{"UIAButton":{"@":{"name":"list actionbar more p","label":"list actionbar more p","value":null,"dom":null,"enabled":true,"valid":true,"visible":false,"hint":null,"path":"/0/0/3/41/4","x":0,"y":0,"width":86.66666412353516,"height":68},">":[]}}]}},{"UIATableCell":{"@":{"name":"16:39, x55mgp2u_2\r , Test邮件123_44,  Test内容123","label":null,"value":"","dom":null,"enabled":true,"valid":true,"visible":false,"hint":null,"path":"/0/0/3/42","x":0,"y":2602,"width":768,"height":68},">":[{"UIAStaticText":{"@":{"name":"16:39, x55mgp2u_2\r , Test邮件123_44,  Test内容123","label":"16:39, x55mgp2u_2\r , Test邮件123_44,  Test内容123","value":"","dom":null,"enabled":true,"valid":true,"visible":false,"hint":null,"path":"/0/0/3/42/0","x":0,"y":2602,"width":768,"height":68},">":[]}},{"UIAButton":{"@":{"name":"unselFlagView","label":"unselFlagView","value":null,"dom":null,"enabled":true,"valid":true,"visible":false,"hint":null,"path":"/0/0/3/42/1","x":0,"y":0,"width":24,"height":24},">":[]}},{"UIAButton":{"@":{"name":"list actionbar RUR p","label":"list actionbar RUR p","value":null,"dom":null,"enabled":true,"valid":true,"visible":false,"hint":null,"path":"/0/0/3/42/2","x":0,"y":0,"width":86.66666412353516,"height":68},">":[]}},{"UIAButton":{"@":{"name":"list actionbar delete p","label":"list actionbar delete p","value":null,"dom":null,"enabled":true,"valid":true,"visible":false,"hint":null,"path":"/0/0/3/42/3","x":0,"y":0,"width":86.66666412353516,"height":68},">":[]}},{"UIAButton":{"@":{"name":"list actionbar more p","label":"list actionbar more p","value":null,"dom":null,"enabled":true,"valid":true,"visible":false,"hint":null,"path":"/0/0/3/42/4","x":0,"y":0,"width":86.66666412353516,"height":68},">":[]}}]}},{"UIATableCell":{"@":{"name":"16:39, x55mgp2u_2\r , Test邮件123_43,  Test内容123","label":null,"value":"","dom":null,"enabled":true,"valid":true,"visible":false,"hint":null,"path":"/0/0/3/43","x":0,"y":2670,"width":768,"height":68},">":[{"UIAStaticText":{"@":{"name":"16:39, x55mgp2u_2\r , Test邮件123_43,  Test内容123","label":"16:39, x55mgp2u_2\r , Test邮件123_43,  Test内容123","value":"","dom":null,"enabled":true,"valid":true,"visible":false,"hint":null,"path":"/0/0/3/43/0","x":0,"y":2670,"width":768,"height":68},">":[]}},{"UIAButton":{"@":{"name":"unselFlagView","label":"unselFlagView","value":null,"dom":null,"enabled":true,"valid":true,"visible":false,"hint":null,"path":"/0/0/3/43/1","x":0,"y":0,"width":24,"height":24},">":[]}},{"UIAButton":{"@":{"name":"list actionbar RUR p","label":"list actionbar RUR p","value":null,"dom":null,"enabled":true,"valid":true,"visible":false,"hint":null,"path":"/0/0/3/43/2","x":0,"y":0,"width":86.66666412353516,"height":68},">":[]}},{"UIAButton":{"@":{"name":"list actionbar delete p","label":"list actionbar delete p","value":null,"dom":null,"enabled":true,"valid":true,"visible":false,"hint":null,"path":"/0/0/3/43/3","x":0,"y":0,"width":86.66666412353516,"height":68},">":[]}},{"UIAButton":{"@":{"name":"list actionbar more p","label":"list actionbar more p","value":null,"dom":null,"enabled":true,"valid":true,"visible":false,"hint":null,"path":"/0/0/3/43/4","x":0,"y":0,"width":86.66666412353516,"height":68},">":[]}}]}},{"UIATableCell":{"@":{"name":"16:39, x55mgp2u_2\r , Test邮件123_42,  Test内容123","label":null,"value":
"","dom":null,"enabled":true,"valid":true,"visible":false,"hint":null,"path":"/0/0/3/44","x":0,"y":2738,"width":768,"height":68},">":[{"UIAStaticText":{"@":{"name":"16:39, x55mgp2u_2\r , Test邮件123_42,  Test内容123","label":"16:39, x55mgp2u_2\r , Test邮件123_42,  Test内容123","v
info: [debug] [INST] alue":"","dom":null,"enabled":true,"valid":true,"visible":false,"hint":null,"path":"/0/0/3/44/0","x":0,"y":2738,"width":768,"height":68},">":[]}},{"UIAButton":{"@":{"name":"unselFlagView","label":"unselFlagView","value":null,"dom":null,"enabled":true,"valid":true,"visible":false,"hint":null,"path":"/0/0/3/44/1","x":0,"y":0,"width":24,"height":24},">":[]}},{"UIAButton":{"@":{"name":"list actionbar RUR p","label":"list actionbar RUR p","value":null,"dom":null,"enabled":true,"valid":true,"visible":false,"hint":null,"path":"/0/0/3/44/2","x":0,"y":0,"width":86.66666412353516,"height":68},">":[]}},{"UIAButton":{"@":{"name":"list actionbar delete p","label":"list actionbar delete p","value":null,"dom":null,"enabled":true,"valid":true,"visible":false,"hint":null,"path":"/0/0/3/44/3","x":0,"y":0,"width":86.66666412353516,"height":68},">":[]}},{"UIAButton":{"@":{"name":"list actionbar more p","label":"list actionbar more p","value":null,"dom":null,"enabled":true,"valid":true,"visible":false,"hint":null,"path":"/0/0/3/44/4","x":0,"y":0,"width":86.66666412353516,"height":68},">":[]}}]}},{"UIATableCell":{"@":{"name":"16:39, x55mgp2u_2\r , Test邮件123_41,  Test内容123","label":null,"value":"","dom":null,"enabled":true,"valid":true,"visible":false,"hint":null,"path":"/0/0/3/45","x":0,"y":2806,"width":768,"height":68},">":[{"UIAStaticText":{"@":{"name":"16:39, x55mgp2u_2\r , Test邮件123_41,  Test内容123","label":"16:39, x55mgp2u_2\r , Test邮件123_41,  Test内容123","value":"","dom":null,"enabled":true,"valid":true,"visible":false,"hint":null,"path":"/0/0/3/45/0","x":0,"y":2806,"width":768,"height":68},">":[]}},{"UIAButton":{"@":{"name":"unselFlagView","label":"unselFlagView","value":null,"dom":null,"enabled":true,"valid":true,"visible":false,"hint":null,"path":"/0/0/3/45/1","x":0,"y":0,"width":24,"height":24},">":[]}},{"UIAButton":{"@":{"name":"list actionbar RUR p","label":"list actionbar RUR p","value":null,"dom":null,"enabled":true,"valid":true,"visible":false,"hint":null,"path":"/0/0/3/45/2","x":0,"y":0,"width":86.66666412353516,"height":68},">":[]}},{"UIAButton":{"@":{"name":"list actionbar delete p","label":"list actionbar delete p","value":null,"dom":null,"enabled":true,"valid":true,"visible":false,"hint":null,"path":"/0/0/3/45/3","x":0,"y":0,"width":86.66666412353516,"height":68},">":[]}},{"UIAButton":{"@":{"name":"list actionbar more p","label":"list actionbar more p","value":null,"dom":null,"enabled":true,"valid":true,"visible":false,"hint":null,"path":"/0/0/3/45/4","x":0,"y":0,"width":86.66666412353516,"height":68},">":[]}}]}},{"UIATableCell":{"@":{"name":"16:39, x55mgp2u_2\r , Test邮件123_40,  Test内容123","label":null,"value":"","dom":null,"enabled":true,"valid":true,"visible":false,"hint":null,"path":"/0/0/3/46","x":0,"y":2874,"width":768,"height":68},">":[{"UIAStaticText":{"@":{"name":"16:39, x55mgp2u_2\r , Test邮件123_40,  Test内容123","label":"16:39, x55mgp2u_2\r , Test邮件123_40,  Test内容123","value":"","dom":null,"enabled":true,"valid":true,"visible":false,"hint":null,"path":"/0/0/3/46/0","x":0,"y":2874,"width":768,"height":68},">":[]}},{"UIAButton":{"@":{"name":"unselFlagView","label":"unselFlagView","value":null,"dom":null,"enabled":true,"valid":true,"visible":false,"hint":null,"path":"/0/0/3/46/1","x":0,"y":0,"width":24,"height":24},">":[]}},{"UIAButton":{"@":{"name":"list actionbar RUR p","label":"list actionbar RUR p","value":null,"dom":null,"enabled":true,"valid":true,"visible":false,"hint":null,"path":"/0/0/3/46/2","x":0,"y":0,"width":86.66666412353516,"height":68},">":[]}},{"UIAButton":{"@":{"name":"list actionbar delete p","label":"list actionbar delete p","value":null,"dom":null,"enabled":true,"valid":true,"visible":false,"hint":null,"path":"/0/0/3/46/3","x":0,
"y":0,"width":86.66666412353516,"height":68},">":[]}},{"UIAButton":{"@":{"name":"list actionbar more p","label":"list actionbar more p","value":null,"dom":null,"enabled":true,"valid":true,"visible":false,"hint":null,"path":"/0/0/3/46/4","x":0,"y":0,"width":86.66666412353516,"height":68},">":[]}}]}},{"UIATableCell":{"@":{"name":"16:39, x55mgp2u_2\r , Test邮件123_39,  Test内容123","label":null,"value":"","dom":null,"enabled":true,"valid":true,"visible":false,"hint":null,"path":"/0/0/3/47","x":0,"y":2942,"width":768,"height":68},">":[{"UIAStaticText":{"@":{"name":"16:39, x55mgp2u_2\r , Test邮件123_39,  Test内容123","label":"16:39, x55mgp2u_2\r , Test邮件123_39,  Test内容123","value":"","dom":null,"enabled":true,"valid":true,"visible":false,"hint":null,"path":"/0/0/3/47/0","x":0,"y":2942,"width":768,"height":68},">":[]}},{"UIAButton":{"@":{"name":"unselFlagView","label":"unselFlagView","value":null,"dom":null,"enabled":true,"valid":true,"visible":false,"hint":null,"path":"/0/0/3/47/1","x":0,"y":0,"width":24,"height":24},">":[]}},{"UIAButton":{"@":{"name":"list actionbar RUR p","label":"list actionbar RUR p","value":null,"dom":null,"enabled":true,"valid":true,"visible":false,"hint":null,"path":"/0/0/3/47/2","x":0,"y":0,"width":86.66666412353516,"height":68},">":[]}},{"UIAButton":{"@":{"name":"list actionbar delete p","label":"list actionbar delete p","value":null,"dom":null,"enabled":true,"valid":true,"visible":false,"hint":null,"path":"/0/0/3/47/3","x":0,"y":0,"width":86.66666412353516,"height":68},">":[]}},{"UIAButton":{"@":{"name":"list actionbar more p","label":"list actionbar more p","value":null,"dom":null,"enabled":true,"valid":true,"visible":false,"hint":null,"path":"/0/0/3/47/4","x":0,"y":0,"width":86.66666412353516,"height":68},">":[]}}]}},{"UIATableCell":{"@":{"name":"16:39, x55mgp2u_2\r , Test邮件123_38,  Test内容123","label":null,"value":"","dom":null,"enabled":true,"valid":true,"visible":false,"hint":null,"path":"/0/0/3/48","x":0,"y":3010,"width":768,"height":68},">":[{"UIAStaticText":{"@":{"name":"16:39, x55mgp2u_2\r , Test邮件123_38,  Test内容123","label":"16:39, x55mgp2u_2\r , Test邮件123_38,  Test内容123","value":"","dom":null,"enabled":true,"valid":true,"visible":false,"hint":null,"path":"/0/0/3/48/0","x":0,"y":3010,"width":768,"height":68},">":[]}},{"UIAButton":{"@":{"name":"unselFlagView","label":"unselFlagView","value":null,"dom":null,"enabled":true,"valid":true,"visible":false,"hint":null,"path":"/0/0/3/48/1","x":0,"y":0,"width":24,"height":24},">":[]}},{"UIAButton":{"@":{"name":"list actionbar RUR p","label":"list actionbar RUR p","value":null,"dom":null,"enabled":true,"valid":true,"visible":false,"hint":null,"path":"/0/0/3/48/2","x":0,"y":0,"width":86.66666412353516,"height":68},">":[]}},{"UIAButton":{"@":{"name":"list actionbar delete p","label":"list actionbar delete p","value":null,"dom":null,"enabled":true,"valid":true,"visible":false,"hint":null,"path":"/0/0/3/48/3","x":0,"y":0,"width":86.66666412353516,"height":68},">":[]}},{"UIAButton":{"@":{"name":"list actionbar more p","label":"list actionbar more p","value":null,"dom":null,"enabled":true,"valid":true,"visible":false,"hint":null,"path":"/0/0/3/48/4","x":0,"y":0,"width":86.66666412353516,"height":68},">":[]}}]}},{"UIATableCell":{"@":{"name":"16:39, x55mgp2u_2\r , Test邮件123_50,  Test内容123","label":null,"value":"","dom":null,"enabled":true,"valid":true,"visible":false,"hint":null,"path":"/0/0/3/49","x":0,"y":3078,"width":768,"height":68},">":[{"UIAStaticText":{"@":{"name":"16:39, x55mgp2u_2\r , Test邮件123_50,  Test内容123","label":"16:39, x55mgp2u_2\r , Test邮件123_50,  Test内容123","value":"","dom":null,"enabled":true,"valid":true,"visible":false,"hint":null,"path":"/0/0/3/49/0","x":0,"y":3078,"width":768,"height":68},">":[]}},{"UIAButton":{"@":{"name":"unselFlagView","label":"unselFlagView","value":null,"dom":null,"enabled":true,"valid":true,"visible":false,"hint":null,"path":"/0/0/3/49/1","x":0,"y":0,"width":24,"height":24},">":[]}},{"UIAButton":{"@":{"name":"list actionbar RUR p","label":"list action
bar RUR p","value":null,"dom":null,"enabled":true,"valid":true,"visible":false,"hint":null,"path":"/0/0/3/49/2","x":0,"y":0,"width":86.66666412353516,"height":68},">":[]}},{"UIAButton":{"@":{"name":"list actionbar delete p","label":"list actionbar delete p","value":null,"dom":null,"enabled":true,"valid":true,"visible":false,"hin
info: [debug] [INST] t":null,"path":"/0/0/3/49/3","x":0,"y":0,"width":86.66666412353516,"height":68},">":[]}},{"UIAButton":{"@":{"name":"list actionbar more p","label":"list actionbar more p","value":null,"dom":null,"enabled":true,"valid":true,"visible":false,"hint":null,"path":"/0/0/3/49/4","x":0,"y":0,"width":86.66666412353516,"height":68},">":[]}}]}},{"UIATableCell":{"@":{"name":"16:39, x55mgp2u_2\r , Test邮件123_49,  Test内容123","label":null,"value":"","dom":null,"enabled":true,"valid":true,"visible":false,"hint":null,"path":"/0/0/3/50","x":0,"y":3146,"width":768,"height":68},">":[{"UIAStaticText":{"@":{"name":"16:39, x55mgp2u_2\r , Test邮件123_49,  Test内容123","label":"16:39, x55mgp2u_2\r , Test邮件123_49,  Test内容123","value":"","dom":null,"enabled":true,"valid":true,"visible":false,"hint":null,"path":"/0/0/3/50/0","x":0,"y":3146,"width":768,"height":68},">":[]}},{"UIAButton":{"@":{"name":"unselFlagView","label":"unselFlagView","value":null,"dom":null,"enabled":true,"valid":true,"visible":false,"hint":null,"path":"/0/0/3/50/1","x":0,"y":0,"width":24,"height":24},">":[]}},{"UIAButton":{"@":{"name":"list actionbar RUR p","label":"list actionbar RUR p","value":null,"dom":null,"enabled":true,"valid":true,"visible":false,"hint":null,"path":"/0/0/3/50/2","x":0,"y":0,"width":86.66666412353516,"height":68},">":[]}},{"UIAButton":{"@":{"name":"list actionbar delete p","label":"list actionbar delete p","value":null,"dom":null,"enabled":true,"valid":true,"visible":false,"hint":null,"path":"/0/0/3/50/3","x":0,"y":0,"width":86.66666412353516,"height":68},">":[]}},{"UIAButton":{"@":{"name":"list actionbar more p","label":"list actionbar more p","value":null,"dom":null,"enabled":true,"valid":true,"visible":false,"hint":null,"path":"/0/0/3/50/4","x":0,"y":0,"width":86.66666412353516,"height":68},">":[]}}]}},{"UIATableCell":{"@":{"name":"16:39, x55mgp2u_2\r , Test邮件123_48,  Test内容123","label":null,"value":"","dom":null,"enabled":true,"valid":true,"visible":false,"hint":null,"path":"/0/0/3/51","x":0,"y":3214,"width":768,"height":68},">":[{"UIAStaticText":{"@":{"name":"16:39, x55mgp2u_2\r , Test邮件123_48,  Test内容123","label":"16:39, x55mgp2u_2\r , Test邮件123_48,  Test内容123","value":"","dom":null,"enabled":true,"valid":true,"visible":false,"hint":null,"path":"/0/0/3/51/0","x":0,"y":3214,"width":768,"height":68},">":[]}},{"UIAButton":{"@":{"name":"unselFlagView","label":"unselFlagView","value":null,"dom":null,"enabled":true,"valid":true,"visible":false,"hint":null,"path":"/0/0/3/51/1","x":0,"y":0,"width":24,"height":24},">":[]}},{"UIAButton":{"@":{"name":"list actionbar RUR p","label":"list actionbar RUR p","value":null,"dom":null,"enabled":true,"valid":true,"visible":false,"hint":null,"path":"/0/0/3/51/2","x":0,"y":0,"width":86.66666412353516,"height":68},">":[]}},{"UIAButton":{"@":{"name":"list actionbar delete p","label":"list actionbar delete p","value":null,"dom":null,"enabled":true,"valid":true,"visible":false,"hint":null,"path":"/0/0/3/51/3","x":0,"y":0,"width":86.66666412353516,"height":68},">":[]}},{"UIAButton":{"@":{"name":"list actionbar more p","label":"list actionbar more p","value":null,"dom":null,"enabled":true,"valid":true,"visible":false,"hint":null,"path":"/0/0/3/51/4","x":0,"y":0,"width":86.66666412353516,"height":68},">":[]}}]}},{"UIATableCell":{"@":{"name":"16:39, x55mgp2u_2\r , Test邮件123_47,  Test内容123","label":null,"value":"","dom":null,"enabled":true,"valid":true,"visible":false,"hint":null,"path":"/0/0/3/52","x":0,"y":3282,"width":768,"height":68},">":[{"UIAStaticText":{"@":{"name":"16:39, x55mgp2u_2\r , Test邮件123_47,  Test内容123","label":"16:39, x55mgp2u_2\r , Test邮件123_47,  Test内容123","value":"","dom":null,
"enabled":true,"valid":true,"visible":false,"hint":null,"path":"/0/0/3/52/0","x":0,"y":3282,"width":768,"height":68},">":[]}},{"UIAButton":{"@":{"name":"unselFlagView","label":"unselFlagView","value":null,"dom":null,"enabled":true,"valid":true,"visible":false,"hint":null,"path":"/0/0/3/52/1","x":0,"y":0,"width":24,"height":24},">":[]}},{"UIAButton":{"@":{"name":"list actionbar RUR p","label":"list actionbar RUR p","value":null,"dom":null,"enabled":true,"valid":true,"visible":false,"hint":null,"path":"/0/0/3/52/2","x":0,"y":0,"width":86.66666412353516,"height":68},">":[]}},{"UIAButton":{"@":{"name":"list actionbar delete p","label":"list actionbar delete p","value":null,"dom":null,"enabled":true,"valid":true,"visible":false,"hint":null,"path":"/0/0/3/52/3","x":0,"y":0,"width":86.66666412353516,"height":68},">":[]}},{"UIAButton":{"@":{"name":"list actionbar more p","label":"list actionbar more p","value":null,"dom":null,"enabled":true,"valid":true,"visible":false,"hint":null,"path":"/0/0/3/52/4","x":0,"y":0,"width":86.66666412353516,"height":68},">":[]}}]}},{"UIATableCell":{"@":{"name":"16:39, x55mgp2u_2\r , Test邮件123_46,  Test内容123","label":null,"value":"","dom":null,"enabled":true,"valid":true,"visible":false,"hint":null,"path":"/0/0/3/53","x":0,"y":3350,"width":768,"height":68},">":[{"UIAStaticText":{"@":{"name":"16:39, x55mgp2u_2\r , Test邮件123_46,  Test内容123","label":"16:39, x55mgp2u_2\r , Test邮件123_46,  Test内容123","value":"","dom":null,"enabled":true,"valid":true,"visible":false,"hint":null,"path":"/0/0/3/53/0","x":0,"y":3350,"width":768,"height":68},">":[]}},{"UIAButton":{"@":{"name":"unselFlagView","label":"unselFlagView","value":null,"dom":null,"enabled":true,"valid":true,"visible":false,"hint":null,"path":"/0/0/3/53/1","x":0,"y":0,"width":24,"height":24},">":[]}},{"UIAButton":{"@":{"name":"list actionbar RUR p","label":"list actionbar RUR p","value":null,"dom":null,"enabled":true,"valid":true,"visible":false,"hint":null,"path":"/0/0/3/53/2","x":0,"y":0,"width":86.66666412353516,"height":68},">":[]}},{"UIAButton":{"@":{"name":"list actionbar delete p","label":"list actionbar delete p","value":null,"dom":null,"enabled":true,"valid":true,"visible":false,"hint":null,"path":"/0/0/3/53/3","x":0,"y":0,"width":86.66666412353516,"height":68},">":[]}},{"UIAButton":{"@":{"name":"list actionbar more p","label":"list actionbar more p","value":null,"dom":null,"enabled":true,"valid":true,"visible":false,"hint":null,"path":"/0/0/3/53/4","x":0,"y":0,"width":86.66666412353516,"height":68},">":[]}}]}},{"UIATableCell":{"@":{"name":"16:39, x55mgp2u_2\r , Test邮件123_45,  Test内容123","label":null,"value":"","dom":null,"enabled":true,"valid":true,"visible":false,"hint":null,"path":"/0/0/3/54","x":0,"y":3418,"width":768,"height":68},">":[{"UIAStaticText":{"@":{"name":"16:39, x55mgp2u_2\r , Test邮件123_45,  Test内容123","label":"16:39, x55mgp2u_2\r , Test邮件123_45,  Test内容123","value":"","dom":null,"enabled":true,"valid":true,"visible":false,"hint":null,"path":"/0/0/3/54/0","x":0,"y":3418,"width":768,"height":68},">":[]}},{"UIAButton":{"@":{"name":"unselFlagView","label":"unselFlagView","value":null,"dom":null,"enabled":true,"valid":true,"visible":false,"hint":null,"path":"/0/0/3/54/1","x":0,"y":0,"width":24,"height":24},">":[]}},{"UIAButton":{"@":{"name":"list actionbar RUR p","label":"list actionbar RUR p","value":null,"dom":null,"enabled":true,"valid":true,"visible":false,"hint":null,"path":"/0/0/3/54/2","x":0,"y":0,"width":86.66666412353516,"height":68},">":[]}},{"UIAButton":{"@":{"name":"list actionbar delete p","label":"list actionbar delete p","value":null,"dom":null,"enabled":true,"valid":true,"visible":false,"hint":null,"path":"/0/0/3/54/3","x":0,"y":0,"width":86.66666412353516,"height":68},">":[]}},{"UIAButton":{"@":{"name":"list actionbar more p","label":"list actionbar more p","value":null,"dom":null,"enabled":true,"valid":true,"visible":false,"hint":null,"path":"/0/0/3/54/4","x":0,"y":0,"width":86.66666412353516,"height":68},">":[]}}]}}]}}]}},{"UIAWindow":{"@":{"name":null,"label":null,
"value":null,"dom":null,"enabled":true,"valid":true,"visible":true,"hint":null,"path":"/0/1","x":0,"y":0,"width":768,"height":1024},">":[{"UIAStatusBar":{"@":{"name":null,"label":null,"value":null,"dom":null,"enabled":true,"valid":true,"visible":true,"hint":null,"path":"/0/1/0","x":0,"y":0,"width":768,"height":20},">":[{"UIAElement":{"@":{"name":"iPad","label":"iPad","v
info: [debug] [INST] alue":null,"dom":null,"enabled":true,"valid":true,"visible":true,"hint":"用三个手指向下推送来显现通知中心。, 用三个手指向上推送来显现控制中心, 连按两次以滚动到顶部","path":"/0/1/0/0","x":6,"y":0,"width":25,"height":20},">":[]}},{"UIAElement":{"@":{"name":"3 格 Wi-Fi 信号(共 3 格)","label":"3 格 Wi-Fi 信号(共 3 格)","value":"Coremail-R&D","dom":null,"enabled":true,"valid":true,"visible":true,"hint":"用三个手指向下推送来显现通知中心。, 用三个手指向上推送来显现控制中心, 连按两次以滚动到顶部","path":"/0/1/0/1","x":36,"y":0,"width":13,"height":20},">":[]}},{"UIAElement":{"@":{"name":"19:48","label":"19:48","value":null,"dom":null,"enabled":true,"valid":true,"visible":true,"hint":"用三个手指向下推送来显现通知中心。, 用三个手指向上推送来显现控制中心, 连按两次以滚动到顶部","path":"/0/1/0/2","x":369,"y":0,"width":30,"height":20},">":[]}},{"UIAElement":{"@":{"name":"电池电量:100%, 使用交流电源","label":"电池电量:100%, 使用交流电源","value":null,"dom":null,"enabled":true,"valid":true,"visible":true,"hint":"用三个手指向下推送来显现通知中心。, 用三个手指向上推送来显现控制中心, 连按两次以滚动到顶部","path":"/0/1/0/3","x":696,"y":0,"width":67,"height":20},">":[]}}]}}]}}]}}}
       2014-12-05 11:48:14 +0000 Debug: Running system command #3: /Applications/Appium.app/Contents/Resources/node/bin/node /Applications/Appium.app/Contents/Resources/node_modules/appium/node_modules/appium-uiauto/bin/command-proxy-client.js /tmp/instruments_sock 3,{"status":0,"value":{"UIAApplication":{"@":{"name":"Coremail","label":"Coremail","value":null,"dom"...
info: [debug] Socket data received (7968 bytes)
info: [debug] Socket data received (8052 bytes)
info: [debug] Socket data received (8068 bytes)
info: [debug] Socket data received (8064 bytes)
info: [debug] Socket data received (8056 bytes)
info: [debug] Socket data received (8064 bytes)
info: [debug] Socket data received (1730 bytes)
info: [debug] Socket data being routed.
info: [debug] Got result from instruments: {"status":0,"value":{"UIAApplication":{"@":{"name":"Coremail","label":"Coremail","value":null,"dom":null,"enabled":true,"valid":true,"visible":true,"hint":null,"path":"/0","x":0,"y":20,"width":768,"height":1004},">":[{"UIAWindow":{"@":{"name":null,"label":null,"value":null,"dom":null,"enabled":true,
info: [debug] Got chunk data, current resultBuffer length: 50000
info: [debug] Not the last chunk, trying to get more
info: [debug] Sending command to instruments: #more

info: [debug] [INST] 2014-12-05 11:48:15 +0000 Debug: Got new command 3 from instruments: #more

info: [debug] [INST] 2014-12-05 11:48:15 +0000 Debug: Running system command #4: /Applications/Appium.app/Contents/Resources/node/bin/node /Applications/Appium.app/Contents/Resources/node_modules/appium/node_modules/appium-uiauto/bin/command-proxy-client.js /tmp/instruments_sock 4,e":"","dom":null,"enabled":true,"valid":true,"visible":false,"hint":null,"path":"/0/0/3/34/0","x":0...

info: [debug] Socket data received (8072 bytes)

info: [debug] Socket data received (8048 bytes)
info: [debug] Socket data received (8072 bytes)
info: [debug] Socket data received (7556 bytes)

info: [debug] Socket data being routed.
info: [debug] Got result from instruments: e":"","dom":null,"enabled":true,"valid":true,"visible":false,"hint":null,"path":"/0/0/3/34/0","x":0,"y":2058,"width":768,"height":68},">":[]}},{"UIAButton":{"@":{"name":"unselFlagView","label":"unselFlagView","value":null,"dom":null,"enabled":true,"valid":true,"visible":false,"hint":null,"path":"/0/
info: [debug] Got chunk data, current resultBuffer length: 81746
info: [debug] This is the last data final length: 81746

info: [debug] Device launched! Ready for commands
info: [debug] Setting command timeout to 600 secs
info: [debug] Appium session started with sessionId 490bf967-85d1-43f9-aba4-b5d8f940a0e4
info: <-- POST /wd/hub/session 303 19481.888 ms - 9 
info: --> GET /wd/hub/session/490bf967-85d1-43f9-aba4-b5d8f940a0e4 {}
info: [debug] Responding to client with success: {"status":0,"value":{"webStorageEnabled":false,"locationContextEnabled":false,"browserName":"","platform":"MAC","javascriptEnabled":true,"databaseEnabled":false,"takesScreenshot":true,"networkConnectionEnabled":false,"warnings":{},"desired":{"newCommandTimeout":"600","interKeyDelay":"0","automationName":"appium","app":"/Users/coremail/Downloads/TestCoremailPushApp_dev6.19.ipa","platformVersion":"7.1","deviceName":"coremail's Ipad","platformName":"iOS","browserName":"","sendKeyStrategy":"grouped"},"newCommandTimeout":"600","interKeyDelay":"0","automationName":"appium","app":"/Users/coremail/Downloads/TestCoremailPushApp_dev6.19.ipa","platformVersion":"7.1","deviceName":"coremail's Ipad","platformName":"iOS","sendKeyStrategy":"grouped"},"sessionId":"490bf967-85d1-43f9-aba4-b5d8f940a0e4"}
info: <-- GET /wd/hub/session/490bf967-85d1-43f9-aba4-b5d8f940a0e4 200 2.314 ms - 796 {"status":0,"value":{"webStorageEnabled":false,"locationContextEnabled":false,"browserName":"","platform":"MAC","javascriptEnabled":true,"databaseEnabled":false,"takesScreenshot":true,"networkConnectionEnabled":false,"warnings":{},"desired":{"newCommandTimeout":"600","interKeyDelay":"0","automationName":"appium","app":"/Users/coremail/Downloads/TestCoremailPushApp_dev6.19.ipa","platformVersion":"7.1","deviceName":"coremail's Ipad","platformName":"iOS","browserName":"","sendKeyStrategy":"grouped"},"newCommandTimeout":"600","interKeyDelay":"0","automationName":"appium","app":"/Users/coremail/Downloads/TestCoremailPushApp_dev6.19.ipa","platformVersion":"7.1","deviceName":"coremail's Ipad","platformName":"iOS","sendKeyStrategy":"grouped"},"sessionId":"490bf967-85d1-43f9-aba4-b5d8f940a0e4"}

info: [IOS_SYSLOG_ROW ] Dec  5 19:48:17 coremails-iPad lockdownd[52] <Notice>: 00241000 _select_socket: receive secure message timeout!

info: [IOS_SYSLOG_ROW ] Dec  5 19:48:17 coremails-iPad kernel[0] <Debug>: 485722.222347 wlan.A[64353] AppleBCMWLANNetManager::checkRealTimeTraffic():  now 485722.222328250 num entries 4

info: [IOS_SYSLOG_ROW ] Dec  5 19:48:17 coremails-iPad kernel[0] <Debug>: 485722.222401 wlan.A[64354] AppleBCMWLANCore::dumpWmeCounters():  per TIDs tx counters: 359224 112117 0 0 0 0 47777 0, per TIDs rx counters: 5043589 1801305 0 0 0 148534 261905 0

info: [IOS_SYSLOG_ROW ] Dec  5 19:48:17 coremails-iPad kernel[0] <Debug>: 485722.222442 wlan.A[64355] AppleBCMWLANCore::dumpWmeCounters():                AWDL: Tx 2 0 0 0 0 0 0 0,                   Rx: 0 0 0 0 0 0 0 0

info: --> POST /wd/hub/session/490bf967-85d1-43f9-aba4-b5d8f940a0e4/element {"using":"class name","value":"UIATableView"}

info: [debug] Waiting up to 0ms for condition

info: [debug] Pushing command to appium work queue: "au.getElementByType('UIATableView')"

info: [debug] Sending command to instruments: au.getElementByType('UIATableView')

info: [debug] [INST] 2014-12-05 11:48:21 +0000 Debug: Got new command 4 from instruments: au.getElementByType('UIATableView')

info: [debug] [INST] 2014-12-05 11:48:21 +0000 Debug: evaluating au.getElementByType('UIATableView')

info: [debug] [INST] 2014-12-05 11:48:22 +0000 Debug: evaluation finished

info: [debug] [INST] 2014-12-05 11:48:22 +0000 Debug: Lookup returned [object UIATableView] with the name "空列表" (id: 0).

info: [debug] [INST] 2014-12-05 11:48:22 +0000 Debug: responding with:

info: [debug] [INST] 2014-12-05 11:48:22 +0000 Debug: Running system command #5: /Applications/Appium.app/Contents/Resources/node/bin/node /Applications/Appium.app/Contents/Resources/node_modules/appium/node_modules/appium-uiauto/bin/command-proxy-client.js /tmp/instruments_sock 2,{"status":0,"value":{"ELEMENT":"0"}}...

info: [debug] Socket data received (38 bytes)

info: [debug] Socket data being routed.

info: [debug] Got result from instruments: {"status":0,"value":{"ELEMENT":"0"}}

info: [debug] Responding to client with success: {"status":0,"value":{"ELEMENT":"0"},"sessionId":"490bf967-85d1-43f9-aba4-b5d8f940a0e4"}
info: <-- POST /wd/hub/session/490bf967-85d1-43f9-aba4-b5d8f940a0e4/element 200 1604.913 ms - 87 {"status":0,"value":{"ELEMENT":"0"},"sessionId":"490bf967-85d1-43f9-aba4-b5d8f940a0e4"}
info: --> POST /wd/hub/session/490bf967-85d1-43f9-aba4-b5d8f940a0e4/element/0/element {"id":"0","using":"-ios uiautomation","value":".scrollToElementWithPredicate(\"name CONTAINS 'Test邮件123_47'\")"}
info: [debug] Waiting up to 0ms for condition
info: [debug] Pushing command to appium work queue: "au.getElementByUIAutomation('.scrollToElementWithPredicate(\\\"name CONTAINS \\'Test邮件123_47\\'\\\")', '0')"
info: [debug] Sending command to instruments: au.getElementByUIAutomation('.scrollToElementWithPredicate(\"name CONTAINS \'Test邮件123_47\'\")', '0')

info: [IOS_SYSLOG_ROW ] Dec  5 19:48:22 coremails-iPad lockdownd[52] <Notice>: 002c3000 _select_socket: receive secure message timeout!

info: [IOS_SYSLOG_ROW ] Dec  5 19:48:22 coremails-iPad lockdownd[52] <Notice>: 002c3000 _receive_message: walk away - non-SSL 1

info: [debug] [INST] 2014-12-05 11:48:23 +0000 Debug: Got new command 5 from instruments: au.getElementByUIAutomation('.scrollToElementWithPredicate(\"name CONTAINS \'Test邮件123_47\'\")', '0')

info: [debug] [INST] 2014-12-05 11:48:23 +0000 Debug: evaluating au.getElementByUIAutomation('.scrollToElementWithPredicate(\"name CONTAINS \'Test邮件123_47\'\")', '0')

info: [debug] [INST] 2014-12-05 11:48:23 +0000 Debug: byUIAutomation: evaluating code: $.getElement('0').scrollToElementWithPredicate("name CONTAINS 'Test邮件123_47'")

info: [debug] [INST] 2014-12-05 11:48:23 +0000 Debug: evaluation finished

info: [debug] [INST] 2014-12-05 11:48:23 +0000 Debug: responding with:
       2014-12-05 11:48:23 +0000 Debug: Running system command #6: /Applications/Appium.app/Contents/Resources/node/bin/node /Applications/Appium.app/Contents/Resources/node_modules/appium/node_modules/appium-uiauto/bin/command-proxy-client.js /tmp/instruments_sock 2,{"status":0,"value":""}...

info: [debug] Socket data received (25 bytes)

info: [debug] Socket data being routed.

info: [debug] Got result from instruments: {"status":0,"value":""}

info: [debug] Condition unmet after 970ms. Timing out.
info: [debug] Responding to client with error: {"status":7,"value":{"message":"An element could not be located on the page using the given search parameters.","origValue":""},"sessionId":"490bf967-85d1-43f9-aba4-b5d8f940a0e4"}
info: <-- POST /wd/hub/session/490bf967-85d1-43f9-aba4-b5d8f940a0e4/element/0/element 500 973.072 ms - 179 
liqing380 commented 9 years ago

same issue : https://github.com/appium/appium/issues/4258

Jonahss commented 9 years ago

Ok, closing here in favor of the issue posted to Appium.