Very slow retrieval of messages with IMAP

I have a problem with javamail versions greater than 1.4.4:
I use IMAP and STARTTLS to connect to Exchange Server 2010
The mail I try to read in this example has RFC822.SIZE = 2317220 but the problem occurs with all mails.
This is the code where it happens ( line 3 )
msg = (MimeMessage)currentFolder.getMessage(1);
log.debug(mailBoxID +" start reading mail");
fullMessage = new MimeMessage(msg);
log.debug(mailBoxID +"   end reading mail");
With 1.4.5 and higher it takes approx. 8 minutes ( in debug mode ) to get the full mail.
With 1.4.4 it takes only 4 seconds ( also in debug mode ).
I tried 3 scenario's with 1.5.1: ( but I have the same problem with 1.4.5 and 1.4.6 )
mail.imap.fetchsize: 16384 ==> 8 minutes
mail.imap.fetchsize: 102400 ==> 7 minutes
mail.imap.partialfetch: false ==> 9 minutes
I tried 2 scenario's with 1.4.4:
mail.imap.fetchsize: 16384 ==> 4 seconds
mail.imap.partialfetch: false ==> 4 seconds
I suppose fetchsize and partialfetch are not part of the problem.
There must be some configuration issue but I don't find it.
And I have the same problem with the demo programs.
Here are some snippets from the protocol debug and the program debug for all scenario's:
DEBUG: setDebug: JavaMail version 1.5.1
DEBUG: getProvider() returning javax.mail.Provider[STORE,imap,com.sun.mail.imap.IMAPStore,Oracle]
DEBUG IMAP: mail.imap.fetchsize: 16384
DEBUG IMAP: mail.imap.ignorebodystructuresize: false
DEBUG IMAP: mail.imap.statuscachetimeout: 1000
DEBUG IMAP: mail.imap.appendbuffersize: -1
DEBUG IMAP: mail.imap.minidletime: 10
DEBUG IMAP: disable AUTH=PLAIN
DEBUG IMAP: disable AUTH=NTLM
DEBUG IMAP: enable STARTTLS
==> fetches in blocks of 16384
A10 FETCH 1 (BODY[]<0.16384>)
* 1 FETCH (BODY[]<0> {16384}
FLAGS (\Seen))
A11 OK FETCH completed.
A12 FETCH 1 (BODY[]<32768.16384>)
* 1 FETCH (BODY[]<32768> {16384}
FLAGS (\Seen))
A202 OK FETCH completed.
A203 FETCH 1 (BODY[]<3162112.16384>)
* 1 FETCH (BODY[]<3162112> {11800}
FLAGS (\Seen))
A203 OK FETCH completed.
2013-11-19 13:10:31 [Thread-4] DEBUG MailHandler :67 -  start reading mail
2013-11-19 13:18:31 [Thread-4] DEBUG MailHandler :69 -    end reading mail
==> 8 minutes
DEBUG: setDebug: JavaMail version 1.5.1
DEBUG: getProvider() returning javax.mail.Provider[STORE,imap,com.sun.mail.imap.IMAPStore,Oracle]
DEBUG IMAP: mail.imap.fetchsize: 102400
DEBUG IMAP: mail.imap.ignorebodystructuresize: false
DEBUG IMAP: mail.imap.statuscachetimeout: 1000
DEBUG IMAP: mail.imap.appendbuffersize: -1
DEBUG IMAP: mail.imap.minidletime: 10
DEBUG IMAP: disable AUTH=PLAIN
DEBUG IMAP: disable AUTH=NTLM
DEBUG IMAP: enable STARTTLS
==> fetches in blocks of 102400
FLAGS (\Seen))
A10 OK FETCH completed.
A11 FETCH 1 (BODY[]<102400.102400>)
* 1 FETCH (BODY[]<102400> {102400}
FLAGS (\Seen))
A39 OK FETCH completed.
A40 FETCH 1 (BODY[]<3072000.102400>)
* 1 FETCH (BODY[]<3072000> {101912}
FLAGS (\Seen))
A40 OK FETCH completed.
2013-11-19 14:23:42 [Thread-4] DEBUG MailHandler :67 -  start reading mail
2013-11-19 14:30:30 [Thread-4] DEBUG MailHandler :69 -    end reading mail
==> 7 minutes
DEBUG: setDebug: JavaMail version 1.5.1
DEBUG: getProvider() returning javax.mail.Provider[STORE,imap,com.sun.mail.imap.IMAPStore,Oracle]
DEBUG IMAP: mail.imap.partialfetch: false
DEBUG IMAP: mail.imap.ignorebodystructuresize: false
DEBUG IMAP: mail.imap.statuscachetimeout: 1000
DEBUG IMAP: mail.imap.appendbuffersize: -1
DEBUG IMAP: mail.imap.minidletime: 10
DEBUG IMAP: disable AUTH=PLAIN
DEBUG IMAP: disable AUTH=NTLM
DEBUG IMAP: enable STARTTLS
==> 1 big fetch
2013-11-19 13:21:35 [Thread-4] DEBUG MailHandler :67 -  start reading mail
2013-11-19 13:30:47 [Thread-4] DEBUG MailHandler :69 -    end reading mail
==> 9 minutes
DEBUG: setDebug: JavaMail version 1.4.4
DEBUG: getProvider() returning javax.mail.Provider[STORE,imap,com.sun.mail.imap.IMAPStore,Sun Microsystems, Inc]
DEBUG: mail.imap.fetchsize: 16384
DEBUG: mail.imap.statuscachetimeout: 1000
DEBUG: mail.imap.appendbuffersize: -1
DEBUG: mail.imap.minidletime: 10
DEBUG: disable AUTH=PLAIN
DEBUG: disable AUTH=NTLM
DEBUG: enable STARTTLS
==> 1 big fetch
2013-11-19 13:55:47 [Thread-4] DEBUG MailHandler :67 -  start reading mail
2013-11-19 13:55:51 [Thread-4] DEBUG MailHandler :69 -    end reading mail
==> 4 seconds
DEBUG: setDebug: JavaMail version 1.4.4
DEBUG: getProvider() returning javax.mail.Provider[STORE,imap,com.sun.mail.imap.IMAPStore,Sun Microsystems, Inc]
DEBUG: mail.imap.partialfetch: false
DEBUG: mail.imap.statuscachetimeout: 1000
DEBUG: mail.imap.appendbuffersize: -1
DEBUG: mail.imap.minidletime: 10
DEBUG: disable AUTH=PLAIN
DEBUG: disable AUTH=NTLM
DEBUG: enable STARTTLS
==> 1 big fetch
2013-11-19 14:02:52 [Thread-4] DEBUG MailHandler :67 -  start reading mail
2013-11-19 14:02:58 [Thread-4] DEBUG MailHandler :69 -    end reading mail
==> 4 seconds
Here is a listing of all properties:
java.runtime.name=Java(TM) SE Runtime Environment
sun.boot.library.path=H:\java\jre6\bin
java.vm.version=20.5-b03
java.vm.vendor=Sun Microsystems Inc.
java.vendor.url=http://java.sun.com/
path.separator=;
mail.mime.decodefilename=true
java.vm.name=Java HotSpot(TM) Client VM
file.encoding.pkg=sun.io
user.country=BE
sun.java.launcher=SUN_STANDARD
sun.os.patch.level=Service Pack 2
mail.imap.auth.ntlm.disable=true
java.vm.specification.name=Java Virtual Machine Specification
user.dir=H:\EclipseSpace\DigisMailBatchNewDev
java.runtime.version=1.6.0_30-b12
java.awt.graphicsenv=sun.awt.Win32GraphicsEnvironment
mail.imap.fetchsize=102400
java.endorsed.dirs=H:\java\jre6\lib\endorsed
os.arch=x86
java.io.tmpdir=D:\Temp\
line.separator=
java.vm.specification.vendor=Sun Microsystems Inc.
user.variant=
os.name=Windows XP
sun.jnu.encoding=Cp1252
java.library.path=H:\java\jre6\bin;C:\WINDOWS\Sun\Java\...
mail.imap.auth.plain.disable=true
java.specification.name=Java Platform API Specification
java.class.version=50.0
mail.mime.address.strict=false
sun.management.compiler=HotSpot Client Compiler
os.version=5.1
user.home=C:\Documents and Settings\******
user.timezone=Europe/Paris
java.awt.printerjob=sun.awt.windows.WPrinterJob
java.specification.version=1.6
file.encoding=Cp1252
user.name=******
java.class.path=H:\EclipseSpace\DigisMailBatchNewDev;...
mail.mime.decodetext.strict=false
java.vm.specification.version=1.0
sun.arch.data.model=32
java.home=H:\java\jre6
sun.java.command=com.dexia.digis.mail.Launcher
mail.imap.partialfetch=true
java.specification.vendor=Sun Microsystems Inc.
user.language=nl
awt.toolkit=sun.awt.windows.WToolkit
java.vm.info=mixed mode
java.version=1.6.0_30
java.ext.dirs=H:\java\jre6\lib\ext;C:\WINDOWS\Sun\J...
sun.boot.class.path=H:\java\jre6\lib\resources.jar;H:\jav...
java.vendor=Sun Microsystems Inc.
file.separator=\
java.vendor.url.bug=http://java.sun.com/cgi-bin/bugreport...
mail.imap.starttls.enable=true
sun.cpu.endian=little
sun.io.unicode.encoding=UnicodeLittle
mail.mime.parameters.strict=false
sun.desktop=windows
sun.cpu.isalist=
And here is the complete protocol stacktrace up to the point where the mail is retrieved.
It's the same for all cases except the snippets above:
DEBUG IMAP: trying to connect to host "our-email-server.be", port 143, isSSL false
* OK The Microsoft Exchange IMAP4 service is ready.
A0 CAPABILITY
* CAPABILITY IMAP4 IMAP4rev1 AUTH=NTLM AUTH=GSSAPI AUTH=PLAIN STARTTLS UIDPLUS CHILDREN IDLE NAMESPACE LITERAL+
A0 OK CAPABILITY completed.
DEBUG IMAP: AUTH: NTLM
DEBUG IMAP: AUTH: GSSAPI
DEBUG IMAP: AUTH: PLAIN
DEBUG IMAP: protocolConnect login, host=our-email-server.be, user=mydomain\userid\aliasname, password=<non-null>
A1 STARTTLS
A1 OK Begin TLS negotiation now.
A2 CAPABILITY
* CAPABILITY IMAP4 IMAP4rev1 AUTH=NTLM AUTH=GSSAPI AUTH=PLAIN UIDPLUS CHILDREN IDLE NAMESPACE LITERAL+
A2 OK CAPABILITY completed.
DEBUG IMAP: AUTH: NTLM
DEBUG IMAP: AUTH: GSSAPI
DEBUG IMAP: AUTH: PLAIN
DEBUG IMAP: LOGIN command trace suppressed
DEBUG IMAP: LOGIN command result: A3 OK LOGIN completed.
A4 CAPABILITY
* CAPABILITY IMAP4 IMAP4rev1 AUTH=NTLM AUTH=GSSAPI AUTH=PLAIN UIDPLUS CHILDREN IDLE NAMESPACE LITERAL+
A4 OK CAPABILITY completed.
DEBUG IMAP: AUTH: NTLM
DEBUG IMAP: AUTH: GSSAPI
DEBUG IMAP: AUTH: PLAIN
A5 LIST "" myfolder
* LIST (\HasNoChildren) "/" myfolder
A5 OK LIST completed.
DEBUG IMAP: connection available -- size: 1
A6 SELECT myfolder
* 1 EXISTS
* 0 RECENT
* FLAGS (\Seen \Answered \Flagged \Deleted \Draft $MDNSent)
* OK [PERMANENTFLAGS (\Seen \Answered \Flagged \Deleted \Draft $MDNSent)] Permanent flags
* OK [UIDVALIDITY 39147] UIDVALIDITY value
* OK [UIDNEXT 141] The next unique identifier value
A6 OK [READ-WRITE] SELECT completed.
A7 EXPUNGE
* 1 EXISTS
A7 OK EXPUNGE completed.
A8 FETCH 1 (FLAGS)
* 1 FETCH (FLAGS (\Seen))
A8 OK FETCH completed.
A9 FETCH 1 (ENVELOPE INTERNALDATE RFC822.SIZE)
* 1 FETCH (ENVELOPE ("Fri, 9 Aug 2013 14:17:14 +0200" "subject" ........ INTERNALDATE "09-Aug-2013 14:17:14 +0200" RFC822.SIZE 2317220)
A9 OK FETCH completed.
A10 FETCH 1 (BODY[]<0.102400>)
* 1 FETCH (BODY[]<0> {102400}

The MimeMessage constructor you're using needs to copy the entire message from the server.  It uses the Message.writeTo method, writing the message content into a pipe that is read by the constructor.  It was a bug in previous releases that the writeTo method wasn't fetching the data in chunks, as it does in other cases.  Setting partialfetch=false will revert to the old behavior for writeTo, and for all other accesses of the message content.
It looks like both 1.4.4 and 1.5.1 are fetching the message content using a single FETCH command when you set partialfetch=false, according to your message.  If they're both sending the same commands to the server, I can't explain why it would be fast in one case and slow in the other.
I did similar testing using my Exchange 2010 server.  Fetching a similar size message took less than 20 seconds.  Setting partialfetch=false brought it down to less than 5 seconds.  Something's clearly wrong in your environment, but I don't know what.
Finally, I'm sure you understand that you only need to use that MimeMessage copy constructor in special circumstances, and you should probably avoid using it unless it's absolutely necessary.  Even in the best case it's wasting time and memory.

Similar Messages

  • Very slow responce when working with Office file on DFS-Share

    Very slow responce when working with Office file on DFS-Share
    We have implemented the following configuration
    Domain level Windows 2000. Two member servers with Windows Server 2008 R2, sharing the same DFS namespace with, at the moment, one folder target called Home.
    Users complaining that the access to different MS Office files is very slow. Even creating a new MS Word document using right click context menu takes up to 4 minutes to open. Saving, for example, one singe Excel sheet takes also few minutes.
    Tested with both, MS Office 2007 and MS Office 2010. Makes no difference. When using Office 2010 you can see the message like contacting:
    \\DomainName\Root\Home\UserName. Other files like TXT, JPG or PDF are not affected.
     What makes the thing really weird is the fact, that the behavior described above can absolutely change after client machine being rebooted, suddenly everything becomes very fast and this condition can revert back again just after the next
    reboot.
    Considerations until now:
    1. This has nothing to do with the file size. Even tiny files are affected.
    2. AD Sites are configured correctly and the client workstations see themselves in the correct sites.
    3. This is not an Office issue. If I map my folder target not as DFS, but directly as shared network drive
    \\ServerName\Root\Home\UserName , everything functions as expected
    What makes me suspicious: when using f.e. TCPView to monitor connections, I can see, that each time I make any operation on an office file, there will be a connection established to one of the domain controllers, sometimes to remote ones,
    located in other countries. But on the other side, even if the connection is established to the nearest DC, operations are still very very slow!
    Just forget to say. All clients are Windows 7
    Thanks to all who respond.

    Dear all,
    sorry for the delayed reply. The problem has been solved now and since September 19<sup>th</sup>. everything is functioning as expected.
    What was done:
    Deleted replication targets excepting the initial ones
    Carefully recreated folder targets
    Deleted and recreated  replication groups
    Disabled SNP features on both namespace servers
    Created EnableTCPA registry entry
    Checked that the following Updates are installed
    http://support.microsoft.com/kb/2688074
    http://support.microsoft.com/kb/2647452
    Concering Office File validation KB2553065 - This Update was already declined on our WSUS server
    Kind Regards
    Eduard

  • Very slow boot on MacBook with Mountain Lion

    My MacBook Pro  Core i7 2.7 Ghz and OS X 10.8.4 has been experienced very slow boots, I've tried several things that I read here and there, here I post the console log, PLEASE HELP!!!
    18/07/13 21:14:55.000 bootlog[0]: BOOT_TIME 1374200095 0
    18/07/13 21:15:12.000 kernel[0]: PMAP: PCID enabled
    18/07/13 21:15:12.000 kernel[0]: Darwin Kernel Version 12.4.0: Wed May  1 17:57:12 PDT 2013; root:xnu-2050.24.15~1/RELEASE_X86_64
    18/07/13 21:15:12.000 kernel[0]: vm_page_bootstrap: 1827652 free pages and 253116 wired pages
    18/07/13 21:15:12.000 kernel[0]: kext submap [0xffffff7f80737000 - 0xffffff8000000000], kernel text [0xffffff8000200000 - 0xffffff8000737000]
    18/07/13 21:15:12.000 kernel[0]: zone leak detection enabled
    18/07/13 21:15:12.000 kernel[0]: standard timeslicing quantum is 10000 us
    18/07/13 21:15:12.000 kernel[0]: standard background quantum is 2500 us
    18/07/13 21:15:12.000 kernel[0]: mig_table_max_displ = 74
    18/07/13 21:15:12.000 kernel[0]: TSC Deadline Timer supported and enabled
    18/07/13 21:15:12.000 kernel[0]: corecrypto kext started!
    18/07/13 21:15:12.000 kernel[0]: Running kernel space in FIPS MODE
    18/07/13 21:15:12.000 kernel[0]: Plist hmac value is    735d392b68241ef173d81097b1c8ce9ba283521626d1c973ac376838c466757d
    18/07/13 21:15:12.000 kernel[0]: Computed hmac value is 735d392b68241ef173d81097b1c8ce9ba283521626d1c973ac376838c466757d
    18/07/13 21:15:12.000 kernel[0]: corecrypto.kext FIPS integrity POST test passed!
    18/07/13 21:15:12.000 kernel[0]: corecrypto.kext FIPS AES CBC POST test passed!
    18/07/13 21:15:12.000 kernel[0]: corecrypto.kext FIPS TDES CBC POST test passed!
    18/07/13 21:15:12.000 kernel[0]: corecrypto.kext FIPS AES ECB AESNI POST test passed!
    18/07/13 21:15:12.000 kernel[0]: corecrypto.kext FIPS AES XTS AESNI POST test passed!
    18/07/13 21:15:12.000 kernel[0]: corecrypto.kext FIPS SHA POST test passed!
    18/07/13 21:15:12.000 kernel[0]: corecrypto.kext FIPS HMAC POST test passed!
    18/07/13 21:15:12.000 kernel[0]: corecrypto.kext FIPS ECDSA POST test passed!
    18/07/13 21:15:12.000 kernel[0]: corecrypto.kext FIPS DRBG POST test passed!
    18/07/13 21:15:12.000 kernel[0]: corecrypto.kext FIPS POST passed!
    18/07/13 21:15:12.000 kernel[0]: AppleACPICPU: ProcessorId=1 LocalApicId=0 Enabled
    18/07/13 21:15:12.000 kernel[0]: AppleACPICPU: ProcessorId=2 LocalApicId=2 Enabled
    18/07/13 21:15:12.000 kernel[0]: AppleACPICPU: ProcessorId=3 LocalApicId=1 Enabled
    18/07/13 21:15:12.000 kernel[0]: AppleACPICPU: ProcessorId=4 LocalApicId=3 Enabled
    18/07/13 21:15:12.000 kernel[0]: AppleACPICPU: ProcessorId=5 LocalApicId=255 Disabled
    18/07/13 21:15:12.000 kernel[0]: AppleACPICPU: ProcessorId=6 LocalApicId=255 Disabled
    18/07/13 21:15:12.000 kernel[0]: AppleACPICPU: ProcessorId=7 LocalApicId=255 Disabled
    18/07/13 21:15:12.000 kernel[0]: AppleACPICPU: ProcessorId=8 LocalApicId=255 Disabled
    18/07/13 21:15:12.000 kernel[0]: calling mpo_policy_init for TMSafetyNet
    18/07/13 21:15:12.000 kernel[0]: Security policy loaded: Safety net for Time Machine (TMSafetyNet)
    18/07/13 21:15:12.000 kernel[0]: calling mpo_policy_init for Sandbox
    18/07/13 21:15:12.000 kernel[0]: Security policy loaded: Seatbelt sandbox policy (Sandbox)
    18/07/13 21:15:12.000 kernel[0]: calling mpo_policy_init for Quarantine
    18/07/13 21:15:12.000 kernel[0]: Security policy loaded: Quarantine policy (Quarantine)
    18/07/13 21:15:12.000 kernel[0]: Copyright (c) 1982, 1986, 1989, 1991, 1993
    18/07/13 21:15:12.000 kernel[0]: The Regents of the University of California. All rights reserved.
    18/07/13 21:15:12.000 kernel[0]: MAC Framework successfully initialized
    18/07/13 21:15:12.000 kernel[0]: using 16384 buffer headers and 10240 cluster IO buffer headers
    18/07/13 21:15:12.000 kernel[0]: IOAPIC: Version 0x20 Vectors 64:87
    18/07/13 21:15:12.000 kernel[0]: ACPI: System State [S0 S3 S4 S5]
    18/07/13 21:15:12.000 kernel[0]: PFM64 (36 cpu) 0xf80000000, 0x80000000
    18/07/13 21:15:12.000 kernel[0]: [ PCI configuration begin ]
    18/07/13 21:15:12.000 kernel[0]: AppleIntelCPUPowerManagement: Turbo Ratios 0057
    18/07/13 21:15:12.000 kernel[0]: AppleIntelCPUPowerManagement: (built 18:11:47 May  1 2013) initialization complete
    18/07/13 21:15:12.000 kernel[0]: console relocated to 0xf80000000
    18/07/13 21:15:12.000 kernel[0]: PCI configuration changed (bridge=16 device=4 cardbus=0)
    18/07/13 21:15:12.000 kernel[0]: [ PCI configuration end, bridges 12 devices 16 ]
    18/07/13 21:15:12.000 kernel[0]: mbinit: done [96 MB total pool size, (64/32) split]
    18/07/13 21:15:12.000 kernel[0]: Pthread support ABORTS when sync kernel primitives misused
    18/07/13 21:15:12.000 kernel[0]: rooting via boot-uuid from /chosen: 0230F72E-AF85-35CF-B3DF-8B5F1BB1AB40
    18/07/13 21:15:12.000 kernel[0]: Waiting on <dict ID="0"><key>IOProviderClass</key><string ID="1">IOResources</string><key>IOResourceMatch</key><string ID="2">boot-uuid-media</string></dict>
    18/07/13 21:15:12.000 kernel[0]: com.apple.AppleFSCompressionTypeZlib kmod start
    18/07/13 21:15:12.000 kernel[0]: com.apple.AppleFSCompressionTypeDataless kmod start
    18/07/13 21:15:12.000 kernel[0]: com.apple.AppleFSCompressionTypeZlib load succeeded
    18/07/13 21:15:12.000 kernel[0]: com.apple.AppleFSCompressionTypeDataless load succeeded
    18/07/13 21:15:12.000 kernel[0]: AppleIntelCPUPowerManagementClient: ready
    18/07/13 21:15:12.000 kernel[0]: BTCOEXIST off
    18/07/13 21:15:12.000 kernel[0]: BRCM tunables:
    18/07/13 21:15:12.000 kernel[0]: pullmode[1] txringsize[  256] txsendqsize[1024] reapmin[   32] reapcount[  128]
    18/07/13 21:14:57.728 com.apple.launchd[1]: *** launchd[1] has started up. ***
    18/07/13 21:15:12.000 kernel[0]: FireWire (OHCI) Lucent ID 5901 built-in now active, GUID 70cd60fffeb76f2e; max speed s800.
    18/07/13 21:15:12.000 kernel[0]: Got boot device = IOService:/AppleACPIPlatformExpert/PCI0@0/AppleACPIPCI/SATA@1F,2/AppleIntelPchS eriesAHCI/PRT0@0/IOAHCIDevice@0/AppleAHCIDiskDriver/IOAHCIBlockStorageDevice/IOB lockStorageDriver/ST9500325ASG Media/IOGUIDPartitionScheme/Customer@2
    18/07/13 21:15:12.000 kernel[0]: BSD root: disk0s2, major 1, minor 1
    18/07/13 21:15:12.000 kernel[0]: Kernel is LP64
    18/07/13 21:15:12.000 kernel[0]: AppleUSBMultitouchDriver::checkStatus - received Status Packet, Payload 2: device was reinitialized
    18/07/13 21:14:57.728 com.apple.launchd[1]: *** Shutdown logging is enabled. ***
    18/07/13 21:15:12.539 com.apple.launchd[1]: (com.apple.automountd) Unknown key for boolean: NSSupportsSuddenTermination
    18/07/13 21:15:12.000 kernel[0]: BCM5701Enet: Ethernet address 10:9a:dd:67:16:ad
    18/07/13 21:15:12.000 kernel[0]: AirPort_Brcm4331: Ethernet address e0:f8:47:41:49:2a
    18/07/13 21:15:12.000 kernel[0]: IO80211Controller::dataLinkLayerAttachComplete():  adding AppleEFINVRAM notification
    18/07/13 21:15:12.000 kernel[0]: IO80211Interface::efiNVRAMPublished(): 
    18/07/13 21:15:14.000 kernel[0]: IOBluetoothUSBDFU::probe
    18/07/13 21:15:14.000 kernel[0]: IOBluetoothUSBDFU::probe ProductID - 0x821A FirmwareVersion - 0x0041
    18/07/13 21:15:14.000 kernel[0]: [BroadcomBluetoothHCIControllerUSBTransport][start] -- completed
    18/07/13 21:15:14.000 kernel[0]: Previous Shutdown Cause: 5
    18/07/13 21:15:14.000 kernel[0]: [IOBluetoothHCIController][staticBluetoothHCIControllerTransportShowsUp] -- Received Bluetooth Controller register service notification
    18/07/13 21:15:14.000 kernel[0]: [IOBluetoothHCIController][start] -- completed
    18/07/13 21:15:14.000 kernel[0]: USBF:          19.312          IOUSBInterface[0xffffff803f35c000]::joinPMtree - could not find the hub device
    18/07/13 21:15:14.170 airportd[27]: _processDLILEvent: en1 attached (down)
    18/07/13 21:15:14.000 kernel[0]: [IOBluetoothHCIController::setConfigState] calling registerService
    18/07/13 21:15:14.000 kernel[0]: createVirtIf(): ifRole = 1
    18/07/13 21:15:14.000 kernel[0]: in func createVirtualInterface ifRole = 1
    18/07/13 21:15:14.000 kernel[0]: AirPort_Brcm4331_P2PInterface::init name <p2p0> role 1 this 0xffffff803fcfa400
    18/07/13 21:15:14.000 kernel[0]: AirPort_Brcm4331_P2PInterface::init() <p2p> role 1
    18/07/13 21:15:14.000 kernel[0]: Created virtif 0xffffff803fcfa400 p2p0
    18/07/13 21:15:14.000 kernel[0]: DSMOS has arrived
    18/07/13 21:15:14.979 com.apple.SecurityServer[15]: Session 100000 created
    18/07/13 21:15:15.000 kernel[0]: mTail has not been written to hardware: mTail = 0x00000000, hardare tail register = 0x00000040
    18/07/13 21:15:15.974 configd[18]: setting hostname to "MacBook-Pro-de-Joaquin-Galvan-Ramirez.local"
    18/07/13 21:15:15.000 kernel[0]: AirPort: Link Down on en1. Reason 1 (Unspecified).
    18/07/13 21:15:15.000 kernel[0]: en1::IO80211Interface::postMessage bssid changed
    18/07/13 21:15:15.978 configd[18]: network changed.
    18/07/13 21:15:20.790 com.apple.SecurityServer[15]: Entering service
    18/07/13 21:15:26.109 hidd[57]: Posting 'com.apple.iokit.hid.displayStatus' notifyState=1
    18/07/13 21:15:27.000 kernel[0]: macx_swapon SUCCESS
    18/07/13 21:15:30.528 kdc[54]: label: default
    18/07/13 21:15:30.528 kdc[54]:           dbname: od:/Local/Default
    18/07/13 21:15:30.528 kdc[54]:           mkey_file: /var/db/krb5kdc/m-key
    18/07/13 21:15:30.529 kdc[54]:           acl_file: /var/db/krb5kdc/kadmind.acl
    18/07/13 21:15:30.565 mDNSResponder[48]: mDNSResponder mDNSResponder-379.38.1 (Apr 25 2013 19:19:56) starting OSXVers 12
    18/07/13 21:15:30.628 loginwindow[51]: Login Window Application Started
    18/07/13 21:15:30.639 UserEventAgent[11]: Captive: [HandleNetworkInformationChanged:2435] nwi_state_copy returned NULL
    18/07/13 21:15:30.713 systemkeychain[74]: done file: /var/run/systemkeychaincheck.done
    18/07/13 21:15:30.718 kdc[54]: WARNING Found KDC certificate (O=System Identity,CN=com.apple.kerberos.kdc)is missing the PK-INIT KDC EKU, this is bad for interoperability.
    18/07/13 21:15:30.846 awacsd[67]: Starting awacsd connectivity-78.3 (Apr 25 2013 19:22:44)
    18/07/13 21:15:30.848 awacsd[67]: InnerStore CopyAllZones: no info in Dynamic Store
    18/07/13 21:15:31.135 coreservicesd[71]: FindBestLSSession(), no match for inSessionID 0xfffffffffffffffc auditTokenInfo( uid=0 euid=0 auSessionID=100000 create=false
    18/07/13 21:15:31.135 WindowServer[72]: Server is starting up
    18/07/13 21:15:31.285 appleeventsd[63]: main: Starting up
    18/07/13 21:15:31.728 com.apple.usbmuxd[36]: usbmuxd-296.4 on Dec 21 2012 at 16:11:14, running 64 bit
    18/07/13 21:15:32.000 kernel[0]: en1: 802.11d country code set to 'US'.
    18/07/13 21:15:32.000 kernel[0]: en1: Supported channels 1 2 3 4 5 6 7 8 9 10 11 36 40 44 48 52 56 60 64 100 104 108 112 116 120 124 128 132 136 140 149 153 157 161 165
    18/07/13 21:15:32.330 configd[18]: network changed: DNS*
    18/07/13 21:15:32.332 mDNSResponder[48]: D2D_IPC: Loaded
    18/07/13 21:15:32.333 mDNSResponder[48]: D2DInitialize succeeded
    18/07/13 21:15:32.907 digest-service[96]: label: default
    18/07/13 21:15:32.908 digest-service[96]:           dbname: od:/Local/Default
    18/07/13 21:15:32.908 digest-service[96]:           mkey_file: /var/db/krb5kdc/m-key
    18/07/13 21:15:32.908 digest-service[96]:           acl_file: /var/db/krb5kdc/kadmind.acl
    18/07/13 21:15:32.909 digest-service[96]: digest-request: uid=0
    18/07/13 21:15:32.925 aosnotifyd[97]: bootstrap_look_up failed (44e)
    18/07/13 21:15:32.932 rpcsvchost[100]: sandbox_init: com.apple.msrpc.netlogon.sb succeeded
    18/07/13 21:15:32.936 digest-service[96]: digest-request: init request
    18/07/13 21:15:32.939 digest-service[96]: digest-request: init return domain: BUILTIN server: MACBOOK-PRO-DE-JOAQUIN-GALVAN-RAMIREZ
    18/07/13 21:15:32.956 InternetSharing[55]: objc[55]: Object 0x7fc1a2c085a0 of class __NSDictionaryM autoreleased with no pool in place - just leaking - break on objc_autoreleaseNoPool() to debug
    18/07/13 21:15:32.959 com.apple.InternetSharing[55]: *** no interface for service
    18/07/13 21:15:33.192 kdc[54]: KDC started
    18/07/13 21:15:33.353 locationd[52]: NOTICE,Location icon should now be in state 0
    18/07/13 21:15:33.756 mds[47]: (Normal) FMW: FMW 0 0
    18/07/13 21:15:34.000 kernel[0]: MacAuthEvent en1   Auth result for: 08:76:ff:56:44:c8  MAC AUTH succeeded
    18/07/13 21:15:34.000 kernel[0]: wlEvent: en1 en1 Link UP virtIf = 0
    18/07/13 21:15:34.000 kernel[0]: AirPort: Link Up on en1
    18/07/13 21:15:34.000 kernel[0]: en1: BSSID changed to 08:76:ff:56:44:c8
    18/07/13 21:15:34.000 kernel[0]: en1::IO80211Interface::postMessage bssid changed
    18/07/13 21:15:34.951 netbiosd[105]: Unable to start NetBIOS name service:
    18/07/13 21:15:36.405 apsd[69]: CGSLookupServerRootPort: Failed to look up the port for "com.apple.windowserver.active" (1102)
    18/07/13 21:15:36.406 apsd[69]: CGSLookupServerRootPort: Failed to look up the port for "com.apple.windowserver.active" (1102)
    18/07/13 21:15:37.222 com.apple.InternetSharing[55]: *** no interface for service
    18/07/13 21:15:38.242 configd[18]: network changed: v4(en1+:192.168.1.72) DNS+ Proxy+ SMB+
    18/07/13 21:15:38.267 UserEventAgent[11]: Captive: en1: Not probing 'FAM. GALVAN CAMARA' (protected network)
    18/07/13 21:15:38.270 configd[18]: network changed: v4(en1!:192.168.1.72) DNS Proxy SMB
    18/07/13 21:15:37.443 ntpd[94]: proto: precision = 1.000 usec
    18/07/13 21:15:38.688 airportd[27]: _doAutoJoin: Already associated to “FAM. GALVAN CAMARA”. Bailing on auto-join.
    18/07/13 21:15:38.700 airportd[27]: _doAutoJoin: Already associated to “FAM. GALVAN CAMARA”. Bailing on auto-join.
    18/07/13 21:15:38.711 airportd[27]: _doAutoJoin: Already associated to “FAM. GALVAN CAMARA”. Bailing on auto-join.
    18/07/13 21:15:39.903 stackshot[39]: Timed out waiting for IOKit to finish matching.
    18/07/13 21:15:41.817 com.apple.launchd[1]: (com.apple.xprotectupdater[33]) Exited with code: 252
    18/07/13 21:15:44.849 awacsd[67]: Exiting
    18/07/13 21:15:45.407 apsd[69]: CGSLookupServerRootPort: Failed to look up the port for "com.apple.windowserver.active" (1102)
    18/07/13 21:16:11.674 configd[18]: InterfaceNamer: timed out waiting for IOKit to quiesce
    18/07/13 21:16:11.674 configd[18]: Busy services :
    18/07/13 21:16:11.674 configd[18]:   MacBookPro8,1 [1, 77845 ms]
    18/07/13 21:16:11.674 configd[18]:   MacBookPro8,1/AppleACPIPlatformExpert [1, 77829 ms]
    18/07/13 21:16:11.675 configd[18]:   MacBookPro8,1/AppleACPIPlatformExpert/PCI0@0 [1, 77806 ms]
    18/07/13 21:16:11.675 configd[18]:   MacBookPro8,1/AppleACPIPlatformExpert/PCI0@0/AppleACPIPCI [1, 77797 ms]
    18/07/13 21:16:11.675 configd[18]:   MacBookPro8,1/AppleACPIPlatformExpert/PCI0@0/AppleACPIPCI/RP01@1C [1, 77800 ms]
    18/07/13 21:16:11.675 configd[18]:   MacBookPro8,1/AppleACPIPlatformExpert/PCI0@0/AppleACPIPCI/RP01@1C/IOPCI2PCIBrid ge [1, 77794 ms]
    18/07/13 21:16:11.675 configd[18]:   MacBookPro8,1/AppleACPIPlatformExpert/PCI0@0/AppleACPIPCI/RP01@1C/IOPCI2PCIBrid ge/SDXC@0,1 [!matched, 1, 77794 ms]
    18/07/13 21:16:30.134 WindowServer[72]: Set a breakpoint at CGSLogError to catch errors as they are logged.
    18/07/13 21:16:30.134 WindowServer[72]: IOKitWaitQuiet: (iokit/common) I/O Timeout
    18/07/13 21:16:30.138 WindowServer[72]: Session 256 retained (2 references)
    18/07/13 21:16:30.138 WindowServer[72]: Session 256 released (1 references)
    18/07/13 21:16:30.146 WindowServer[72]: Session 256 retained (2 references)
    18/07/13 21:16:30.146 WindowServer[72]: init_page_flip: page flip mode is on
    18/07/13 21:16:30.208 WindowServer[72]: mux_initialize: kAGCGetMuxState (kMuxControl, kMuxControl_switchingMode) failed (0xe0000001)
    18/07/13 21:16:30.209 WindowServer[72]: mux_initialize: Mode is safe
    18/07/13 21:16:30.220 WindowServer[72]: GLCompositor enabled for tile size [256 x 256]
    18/07/13 21:16:30.220 WindowServer[72]: CGXGLInitMipMap: mip map mode is on
    18/07/13 21:16:30.240 WindowServer[72]: WSMachineUsesNewStyleMirroring: false
    18/07/13 21:16:30.240 WindowServer[72]: Display 0x042731c0: GL mask 0x1; bounds (0, 0)[1280 x 800], 10 modes available
    Main, Active, on-line, enabled, built-in, boot, Vendor 610, Model 9cc7, S/N 0, Unit 0, Rotation 0
    UUID 0x0000061000009cc700000000042731c0
    18/07/13 21:16:30.240 WindowServer[72]: Display 0x003f003f: GL mask 0x8; bounds (0, 0)[0 x 0], 1 modes available
    off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 3, Rotation 0
    UUID 0xffffffffffffffffffffffff003f003f
    18/07/13 21:16:30.240 WindowServer[72]: Display 0x003f003e: GL mask 0x4; bounds (0, 0)[0 x 0], 1 modes available
    off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 2, Rotation 0
    UUID 0xffffffffffffffffffffffff003f003e
    18/07/13 21:16:30.240 WindowServer[72]: Display 0x003f003d: GL mask 0x2; bounds (0, 0)[0 x 0], 1 modes available
    off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 1, Rotation 0
    UUID 0xffffffffffffffffffffffff003f003d
    18/07/13 21:16:30.242 WindowServer[72]: Created shield window 0x5 for display 0x042731c0
    18/07/13 21:16:30.242 WindowServer[72]: Created shield window 0x6 for display 0x003f003f
    18/07/13 21:16:30.242 WindowServer[72]: Created shield window 0x7 for display 0x003f003e
    18/07/13 21:16:30.242 WindowServer[72]: Created shield window 0x8 for display 0x003f003d
    18/07/13 21:16:30.244 WindowServer[72]: Display 0x042731c0: GL mask 0x1; bounds (0, 0)[1280 x 800], 10 modes available
    Main, Active, on-line, enabled, built-in, boot, Vendor 610, Model 9cc7, S/N 0, Unit 0, Rotation 0
    UUID 0x0000061000009cc700000000042731c0
    18/07/13 21:16:30.244 WindowServer[72]: Display 0x003f003f: GL mask 0x8; bounds (2304, 0)[1 x 1], 1 modes available
    off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 3, Rotation 0
    UUID 0xffffffffffffffffffffffff003f003f
    18/07/13 21:16:30.244 WindowServer[72]: Display 0x003f003e: GL mask 0x4; bounds (2305, 0)[1 x 1], 1 modes available
    off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 2, Rotation 0
    UUID 0xffffffffffffffffffffffff003f003e
    18/07/13 21:16:30.244 WindowServer[72]: Display 0x003f003d: GL mask 0x2; bounds (2306, 0)[1 x 1], 1 modes available
    off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 1, Rotation 0
    UUID 0xffffffffffffffffffffffff003f003d
    18/07/13 21:16:30.244 WindowServer[72]: CGXPerformInitialDisplayConfiguration
    18/07/13 21:16:30.244 WindowServer[72]:   Display 0x042731c0: MappedDisplay Unit 0; Vendor 0x610 Model 0x9cc7 S/N 0 Dimensions 11.26 x 7.05; online enabled built-in, Bounds (0,0)[1280 x 800], Rotation 0, Resolution 1
    18/07/13 21:16:30.244 WindowServer[72]:   Display 0x003f003f: MappedDisplay Unit 3; Vendor 0xffffffff Model 0xffffffff S/N -1 Dimensions 0.00 x 0.00; offline enabled, Bounds (2304,0)[1 x 1], Rotation 0, Resolution 1
    18/07/13 21:16:30.244 WindowServer[72]:   Display 0x003f003e: MappedDisplay Unit 2; Vendor 0xffffffff Model 0xffffffff S/N -1 Dimensions 0.00 x 0.00; offline enabled, Bounds (2305,0)[1 x 1], Rotation 0, Resolution 1
    18/07/13 21:16:30.245 WindowServer[72]:   Display 0x003f003d: MappedDisplay Unit 1; Vendor 0xffffffff Model 0xffffffff S/N -1 Dimensions 0.00 x 0.00; offline enabled, Bounds (2306,0)[1 x 1], Rotation 0, Resolution 1
    18/07/13 21:16:30.245 WindowServer[72]: CGXMuxBoot: Unexpected boot switch return value (0xe00002c7)
    18/07/13 21:16:30.307 WindowServer[72]: GLCompositor: GL renderer id 0x01024301, GL mask 0x0000000f, accelerator 0x000044cb, unit 0, caps QEX|QGL|MIPMAP, vram 579 MB
    18/07/13 21:16:30.307 WindowServer[72]: GLCompositor: GL renderer id 0x01024301, GL mask 0x0000000f, texture units 8, texture max 8192, viewport max {8192, 8192}, extensions FPRG|NPOT|GLSL|FLOAT
    18/07/13 21:16:30.310 loginwindow[51]: **DMPROXY** Found `/System/Library/CoreServices/DMProxy'.
    18/07/13 21:16:30.323 hidd[57]: void __IOHIDLoadBundles(): Loaded 0 HID plugins
    18/07/13 21:16:30.342 WindowServer[72]: Created shield window 0x9 for display 0x042731c0
    18/07/13 21:16:30.342 WindowServer[72]: Display 0x042731c0: MappedDisplay Unit 0; ColorProfile { 2, "Color LCD"}; TransferTable (256, 3)
    18/07/13 21:16:30.381 launchctl[117]: com.apple.findmymacmessenger: Already loaded
    18/07/13 21:16:30.396 com.apple.SecurityServer[15]: Session 100006 created
    18/07/13 21:16:30.452 UserEventAgent[120]: cannot find useragent 1102
    18/07/13 21:16:30.480 airportd[118]: _doAutoJoin: Already associated to “FAM. GALVAN CAMARA”. Bailing on auto-join.
    18/07/13 21:16:30.606 hidd[57]: CGSShutdownServerConnections: Detaching application from window server
    18/07/13 21:16:30.606 hidd[57]: CGSDisplayServerShutdown: Detaching display subsystem from window server
    18/07/13 21:16:32.243 WindowServer[72]: **DMPROXY** (2) Found `/System/Library/CoreServices/DMProxy'.
    18/07/13 21:16:32.275 WindowServer[72]: Display 0x042731c0: MappedDisplay Unit 0; ColorProfile { 2, "Color LCD"}; TransferTable (256, 3)
    18/07/13 21:16:32.286 WindowServer[72]: Display 0x042731c0: MappedDisplay Unit 0; ColorProfile { 2, "Color LCD"}; TransferTable (256, 3)
    18/07/13 21:16:55.434 distnoted[130]: # distnote server agent  absolute time: 121.716205193   civil time: Thu Jul 18 21:16:55 2013   pid: 130 uid: 502  root: no
    18/07/13 21:17:00.134 warmd[35]: [warmctl_evt_timer_bc_activation_timeout:286] BC activation bcstop timer fired!
    18/07/13 21:17:12.256 com.apple.SecurityServer[15]: Session 100002 created
    18/07/13 21:17:12.332 com.apple.SecurityServer[15]: Session 100003 created
    18/07/13 21:19:29.185 WindowServer[72]: Created shield window 0xa for display 0x042731c0
    18/07/13 21:19:29.185 WindowServer[72]: device_generate_desktop_screenshot: authw 0x0(0), shield 0x0(0)
    18/07/13 21:19:29.195 WindowServer[72]: device_generate_lock_screen_screenshot: authw 0x0(0), shield 0x0(0)
    18/07/13 21:19:31.358 com.apple.usbmuxd[36]: _heartbeat_failed heartbeat detected detach for device 0x1-192.168.1.74:0!
    18/07/13 21:19:42.764 WindowServer[72]: handle_will_sleep_auth_and_shield_windows: no lock state data
    18/07/13 21:19:42.765 WindowServer[72]: Created shield window 0xb for display 0x003f003d
    18/07/13 21:19:42.766 WindowServer[72]: handle_will_sleep_auth_and_shield_windows: no lock state data
    18/07/13 21:19:42.766 WindowServer[72]: Created shield window 0xc for display 0x003f003e
    18/07/13 21:19:42.766 WindowServer[72]: handle_will_sleep_auth_and_shield_windows: no lock state data
    18/07/13 21:19:42.767 WindowServer[72]: Created shield window 0xd for display 0x003f003f
    18/07/13 21:19:42.767 WindowServer[72]: handle_will_sleep_auth_and_shield_windows: no lock state data
    18/07/13 21:20:30.599 hidd[57]: Timeout waiting for IOKit to be quiet
    18/07/13 21:21:01.206 WindowServer[72]: Unable to open IOHIDSystem (e00002bd)
    18/07/13 21:21:01.000 kernel[0]: virtual bool IOHIDEventSystemUserClient::initWithTask(task_t, void *, UInt32): Client task not privileged to open IOHIDSystem for mapping memory (e00002c1)
    18/07/13 21:21:01.551 loginwindow[51]: Login Window Started Security Agent
    18/07/13 21:21:01.782 SecurityAgent[149]: This is the first run
    18/07/13 21:21:01.782 SecurityAgent[149]: MacBuddy was run = 0
    18/07/13 21:21:01.806 SecurityAgent[149]: User info context values set for scat111
    18/07/13 21:21:02.566 loginwindow[51]: Login Window - Returned from Security Agent
    18/07/13 21:21:02.589 loginwindow[51]: ERROR | ScreensharingLoginNotification | Failed sending message to screen sharing GetScreensharingPort, err: 1102
    18/07/13 21:21:02.629 loginwindow[51]: USER_PROCESS: 51 console
    18/07/13 21:21:02.722 airportd[151]: _doAutoJoin: Already associated to “FAM. GALVAN CAMARA”. Bailing on auto-join.
    18/07/13 21:21:02.790 com.apple.launchd.peruser.502[127]: (com.divx.agent.postinstall) Unknown key: LimitToSessionType
    18/07/13 21:21:02.790 com.apple.launchd.peruser.502[127]: (com.apple.gamed) Ignored this key: UserName
    18/07/13 21:21:02.790 com.apple.launchd.peruser.502[127]: (com.apple.gamed) Ignored this key: GroupName
    18/07/13 21:21:02.791 com.apple.launchd.peruser.502[127]: (com.apple.ReportCrash) Falling back to default Mach exception handler. Could not find: com.apple.ReportCrash.Self
    18/07/13 21:21:02.795 loginwindow[51]: Connection with distnoted server was invalidated
    18/07/13 21:21:02.916 WindowServer[72]: **DMPROXY** (2) Found `/System/Library/CoreServices/DMProxy'.
    18/07/13 21:21:02.974 WindowServer[72]: Display 0x042731c0: MappedDisplay Unit 0; ColorProfile { 2, "Color LCD"}; TransferTable (256, 3)
    18/07/13 21:21:03.793 talagent[161]: _LSSetApplicationInformationItem(kLSDefaultSessionID, asn, _kLSApplicationIsHiddenKey, hidden ? kCFBooleanTrue : kCFBooleanFalse, NULL) produced OSStatus -50 on line 623 in TCApplication.m
    18/07/13 21:21:03.808 com.apple.launchd.peruser.502[127]: (com.apple.afpstat-qfa[185]) Exited with code: 2
    18/07/13 21:21:03.816 talagent[161]: _LSSetApplicationInformationItem(kLSDefaultSessionID, asn, TAL_kLSIsProxiedForTALKey, kCFBooleanTrue, NULL) produced OSStatus -50 on line 626 in TCApplication.m
    18/07/13 21:21:03.859 blued[165]: kBTXPCUpdateUserPreferences gConsoleUserUID = 502
    18/07/13 21:21:04.496 coreaudiod[167]: Enabled automatic stack shots because audio IO is inactive
    18/07/13 21:21:04.693 com.apple.launchd.peruser.502[127]: (com.apple.mrt.uiagent[175]) Exited with code: 255
    18/07/13 21:21:05.843 loginwindow[51]: Login items - LSOpenApplication returned error -10660, url=/Users/scat111/.Trash/Dropbox.app
    18/07/13 21:21:05.843 loginwindow[51]: Unable to lauch startup item: (null)
    18/07/13 21:21:05.859 SystemUIServer[163]: *** WARNING: -[NSImage compositeToPoint:operation:fraction:] is deprecated in MacOSX 10.8 and later. Please use -[NSImage drawAtPoint:fromRect:operation:fraction:] instead.
    18/07/13 21:21:05.860 SystemUIServer[163]: *** WARNING: -[NSImage compositeToPoint:fromRect:operation:fraction:] is deprecated in MacOSX 10.8 and later. Please use -[NSImage drawAtPoint:fromRect:operation:fraction:] instead.
    18/07/13 21:21:05.895 NetworkBrowserAgent[208]: Starting NetworkBrowserAgent
    18/07/13 21:21:07.659 apsd[192]: Unable to bootstrap_lookup connection port for 'com.apple.ubd.system-push': Unknown service name
    18/07/13 21:21:10.901 com.apple.time[153]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    18/07/13 21:21:21.421 com.apple.time[153]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    18/07/13 21:21:25.294 com.apple.SecurityServer[15]: Session 100010 created
    18/07/13 21:22:03.019 SubmitDiagInfo[239]: Launched to submit Diagnostics and Usage
    18/07/13 21:25:42.000 kernel[0]: Sandbox: sandboxd(250) deny mach-lookup com.apple.coresymbolicationd
    18/07/13 21:25:43.205 sandboxd[250]: ([248]) WebProcess(248) deny iokit-open AppleGraphicsPolicyClient
    18/07/13 21:31:45.820 coreaudiod[167]: Disabled automatic stack shots because audio IO is active
    18/07/13 21:31:45.994 coreaudiod[167]: Enabled automatic stack shots because audio IO is inactive
    18/07/13 21:34:12.414 WindowServer[72]: CGXRegisterWindowWithSystemStatusBar: window 15 already registered

    Please read this whole message before doing anything.
    This procedure is a diagnostic test. It won’t solve your problem. Don’t be disappointed when you find that nothing has changed after you complete it.
    Third-party system modifications are a common cause of usability problems. By a “system modification,” I mean software that affects the operation of other software — potentially for the worse. The following procedure will help identify which such modifications you've installed. Don’t be alarmed by the complexity of these instructions — they’re easy to carry out and won’t change anything on your Mac. 
    These steps are to be taken while booted in “normal” mode, not in safe mode. If you’re now running in safe mode, reboot as usual before continuing. 
    Below are instructions to enter some UNIX shell commands. The commands are harmless, but they must be entered exactly as given in order to work. If you have doubts about the safety of the procedure suggested here, search this site for other discussions in which it’s been followed without any report of ill effects. 
    Some of the commands will line-wrap or scroll in your browser, but each one is really just a single line, all of which must be selected. You can accomplish this easily by triple-clicking anywhere in the line. The whole line will highlight, and you can then copy it. The headings “Step 1” and so on are not part of the commands. 
    Note: If you have more than one user account, Step 2 must be taken as an administrator. Ordinarily that would be the user created automatically when you booted the system for the first time. The other steps should be taken as the user who has the problem, if different. Most personal Macs have only one user, and in that case this paragraph doesn’t apply. 
    Launch the Terminal application in any of the following ways: 
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.) 
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens. 
    ☞ Open LaunchPad. Click Utilities, then Terminal in the icon grid. 
    When you launch Terminal, a text window will open with a line already in it, ending either in a dollar sign (“$”) or a percent sign (“%”). If you get the percent sign, enter “sh” and press return. You should then get a new line ending in a dollar sign. 
    Step 1 
    Triple-click the line of text below on this page to select it:
    kextstat -kl | awk '!/com\.apple/{printf "%s %s\n", $6, $7}' | open -f -a TextEdit 
    Copy the selected text to the Clipboard by pressing the key combination command-C. Then click anywhere in the Terminal window and paste (command-V). A TextEdit window will open with the output of the command. If the command produced no output, the window will be empty. Post the contents of the TextEdit window (not the Terminal window), if any — the text, please, not a screenshot. You can then close the TextEdit window. The title of the window doesn't matter, and you don't need to post that. No typing is involved in this step.
    Step 2 
    Repeat with this line:
    { sudo launchctl list | sed 1d | awk '!/0x|com\.(apple|openssh|vix)|org\.(amav|apac|cups|isc|ntp|postf|x)/{print $3}'; sudo defaults read com.apple.loginwindow LoginHook; sudo crontab -l; } 2> /dev/null | open -f -a TextEdit 
    This time you'll be prompted for your login password, which you do have to type. Nothing will be displayed when you type it. Type it carefully and then press return. You may get a one-time warning to be careful. Heed that warning, but don't post it. If you see a message that your username "is not in the sudoers file," then you're not logged in as an administrator. 
    Note: If you don’t have a login password, you’ll need to set one before taking this step. If that’s not possible, skip to the next step. 
    Step 3
    { launchctl list | sed 1d | awk '!/0x|com\.apple|org\.(x|openbsd)/{print $3}'; crontab -l 2> /dev/null; } | open -f -a TextEdit 
    Step 4
    ls -1A /e*/{la,mach}* {,/}L*/{Ad,Compon,Ex,Fram,In,Keyb,La,Mail/Bu,P*P,Priv,Qu,Scripti,Servi,Spo,Sta}* L*/Fonts .la* 2> /dev/null | open -f -a TextEdit  
    Important: If you formerly synchronized with a MobileMe account, your me.com email address may appear in the output of the above command. If so, anonymize it before posting. 
    Step 5
    osascript -e 'tell application "System Events" to get name of every login item' | open -f -a TextEdit 
    Remember, steps 1-5 are all copy-and-paste — no typing, except your password. Also remember to post the output. 
    You can then quit Terminal.

  • Mac Mail downloads all my old messages with IMAP

    Hi,
    How do I stop this happening? I just want to download messages from now onwards. But I'm getting thousands of old emails downloading to my inbox and no way to stop it seemingly.
    I'm on Mac OSX 10.6.8, using Mail 4.6. I have an @hotmail.com email account.
    Second option would be to somehow delete these messages once they've all downloaded, but without deleting them from the hotmail server... any ideas??
    Many thanks.

    Though the original question is old, people are still viewing it when they need help with the problem.
    I found this possible solution:
    Apple Mail - Removing Messages from the Server
    To have your Apple Mail remove messages from the server when you check mail (using POP), you will follow these steps:
    After opening the Apple Mail program, click on "Mail" from the menu at the top.
    Click on "Preferences"
    Click on "Accounts" (the @ symbol)
    If you have more than one mail account, select the one you want to work with
    Click "Advanced"
    Make sure the box next to "Remove copy from server after retrieving a message" is checked.
    You can also remove messages currently saved on the server by clicking the "Remove now" button.
    Click "Save" when you close the Preference pane
    Using "Remove copy from server after retrieving a message" will make sure your messages are always downloaded to your Mac, and prevent your mailbox quota from being exceeded.

  • Database is very slow in oracle 9i with Suse Linux

    Hello All,
    We are using Suse linux and installed Oracle 9i on it. Our ERP product is running on this database. It is very slow. But linux configuration seems Ok. Oracle's performance is very slow. But The same thing is working fast in oracle 8.1.6 and 8.1.7. Is there any special linux configuration parameters should we consider for this or we have to do something in init.ora file?. I added the size of the JAVA_POOL_SIZE, SHARED_POOL_SIZE and LARGE_POOL_SIZE to 300 MB each.
    Thanks in advance and expecting your reply.
    with regards,
    sivababu

    Which version of SuSE Linux would possibly help here. I'm using version 7.3 Pro and it is only 10 minutes slower than my installation on XP Pro (the script is 16 pages long and takes 8,000,000 records and converts them into 30,000 records of useful information-takes 20 minutes in XP, 30 minutes in SuSE 7.3 on a personal computer). I used the orarun9i script and followed the directions for re-compiling the genclntsh from the SuSE installations online.

  • RAZR V3i is very slow when syncing songs with iTunes

    My V3i use to sync songs with iTunes pretty fast, but after updating iTunes it syncs very slow, and half the time just hangs.
    Is anyone else having this issue? Any tips?
    Thanks!

    iTunes stalls loading a mp3 on my phone when that mp3 is currently being played.
    <Edited by Moderator>

  • Mail.app and purging of moved messages with IMAP accounts?

    I REALLY want to like Mail.app but one item that has caused frustration for years is the handling (or lack) of handling of my messages once moved to another folder with IMAP accounts. I would like for Mail.app to purge/expunge the messages from the server automatically when the message is moved but it doesn't seem to complete that transaction until you actually quit out of mail.
    I use multiple computers and I don't remember to quit out of Mail.app going from one of my Macs to another and don't want to but I'm getting tired of having to file the messages twice (or more). Is there a way to set Mail.app to do the automatic instant purging (or expunging) of the messages from the originating folders without having to quit out of the application? This seems to be the default behavior for nearly every other mail client I've used, including Entourage and is an option in Outlook and Outlook Express (PC).

    same is true with popmail, not just imap.
    moreover, i think hitting "remove now" just puts content in your server's trash folder, meaning it's still taking up disk quota and you'll never know till you stop getting mail...

  • What shall I do with a very slow running macbook pro with OS X Mavericks

    Please help me. my macbok pro is running too slow specially when booting up. It's with OS X Mavericks. How can I restore it with the previous OS? i just upgraded it with Mavericks.

    If you don't already have a current backup, back up all data before doing anything else. This procedure is a diagnostic  test. It changes nothing, for better or worse, and therefore will not, in itself, solve your problem. The backup is necessary on general principle, not because of anything suggested in this comment. There are ways to back up a computer that isn't fully functional. Ask if you need guidance.
    Third-party system modifications are a common cause of usability problems. By a “system modification,” I mean software that affects the operation of other software — potentially for the worse. The procedure will help identify which such modifications you've installed, as well as some other aspects of the configuration that may be related to the problem.
    Don’t be alarmed by the seeming complexity of these instructions — they’re easy to carry out. Here's a brief summary: In each of two steps, you copy a line of text from this web page into a window in another application. You wait about a minute. Then you paste some other text, which will have been copied automatically, back into a reply on this page. The sequence is copy; paste; paste again. That's all there is to it. Details follow.
    You may have started the computer in "safe" mode. Preferably, these steps should be taken while booted in “normal” mode. If the system is now running in safe mode and is bootable in normal mode, reboot as usual. If it only boots in safe mode, use that.
    Below are instructions to enter UNIX shell commands. They do nothing but produce human-readable output. However, you need to think carefully before running any program at the behest of a stranger on a public message board. If you question the safety of the procedure suggested here — which you should — search this site for other discussions in which it’s been followed without any report of ill effects. If you can't satisfy yourself that these instructions are safe, don't follow them.
    The commands will line-wrap or scroll in your browser, but each one is really just a single long line, all of which must be selected. You can accomplish this easily by triple-clicking anywhere in the line. The whole line will highlight, and you can then copy it.
    If you have more than one user account, Step 2 must be taken as an administrator. Ordinarily that would be the user created automatically when you booted the system for the first time. Step 1 should be taken as the user who has the problem, if different. Most personal Macs have only one user, and in that case this paragraph doesn’t apply.
    Launch the Terminal application in any of the following ways: 
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.) 
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens. 
    ☞ Open LaunchPad. Click Utilities, then Terminal in the icon grid. 
    When you launch Terminal, a text window will open with a line already in it, ending either in a dollar sign (“$”) or a percent sign (“%”). If you get the percent sign, enter “sh” and press return. You should then get a new line ending in a dollar sign. 
    Step 1 
    Triple-click anywhere in the line of text below on this page to select it:
    PB=/usr/libexec/PlistBuddy; PR () { [[ "$o" ]] && printf '\n%s:\n\n%s\n' "$1" "$o"; }; PC () { o=$(grep [^[:blank:]] "$2"); PR "$1"; }; PF () { o=$($PB -c Print "$2" | awk -F'= ' \/$3'/{print $2}'); PR "$1"; }; PN () { [[ $o -eq 0 ]] || printf "\n%s: %s\n" "$1" $o; }; { system_profiler SPSoftwareDataType | sed '8!d;s/^ *//'; o=$(system_profiler SPDiagnosticsDataType | sed '5,6!d'); fgrep -q P <<< "$o" && o=; PR "POST"; o=$(( $(vm_stat | awk '/Pageo/{sub("\\.",""); print $2}')/256 )); [[ $o -gt 1024 ]] && printf "\nPageouts: %s MiB\n" $o; s=( $(sar -u 1 10 | sed '$!d') ); [[ ${s[4]} -lt 90 ]] && o=$( printf 'User %s%%\t\tSystem %s%%' ${s[1]} ${s[3]} ) || o=; PR "Total CPU usage"; [[ "$o" ]] && o=$(ps acrx -o comm=Process,ruid=User,%cpu | sed 's/  */:/g' | head -6 | awk -F: '{ printf "%-10s\t%s\t%s\n", $1, $2, $3 }'); PR "CPU usage by process"; o=$(kextstat -kl | grep -v com\\.apple | cut -c53- | cut -d\< -f1); PR "Loaded extrinsic kernel extensions"; o=$(launchctl list | sed 1d | awk '!/0x|com\.apple|org\.(x|openbsd)|\.[0-9]+$/{print $3}'); PR "Loaded extrinsic user agents"; o=$(launchctl getenv DYLD_INSERT_LIBRARIES); PR "Inserted libraries"; PC "cron configuration" /e*/cron*; o=$(crontab -l | grep [^[:blank:]]); PR "User cron tasks"; PC "Global launchd configuration" /e*/lau*; PC "Per-user launchd configuration" ~/.lau*; PF "Global login items" /L*/P*/loginw* Path; PF "Per-user login items" L*/P*/*loginit* Name; PF "Safari extensions" L*/Saf*/*/E*.plist Bundle | sed 's/\..*$//;s/-[1-9]$//'; o=$(find ~ $TMPDIR.. \( -flags +sappnd,schg,uappnd,uchg -o ! -user $UID -o ! -perm -600 \) | wc -l); PN "Restricted user files"; cd; o=$(find -L /S*/L*/E* {,/}L*/{A*d,Compon,Ex,In,Keyb,Mail/Bu,P*P,Qu,Scripti,Servi,Spo}* -type d -name Contents -prune | while read d; do ID=$($PB -c 'Print :CFBundleIdentifier' "$d/Info.plist") || ID=; ID=${ID:-No bundle ID}; egrep -qv "^com\.apple\.[^x]|Accusys|ArcMSR|ATTO|HDPro|HighPoint|driver\.stex|hp-fax|JMicron|microsoft\.MDI|print|SoftRAID" <<< $ID && printf '%s\n\t(%s)\n' "${d%/Contents}" "$ID"; done); PR "Extrinsic loadable bundles"; o=$(find /u*/{,*/}lib -type f -exec sh -c 'file -b "$1" | grep -qw shared && ! codesign -v "$1"' {} {} \; -print); PR "Unsigned shared libraries"; o=$(system_profiler SPFontsDataType | egrep "Valid: N|Duplicate: Y" | wc -l); PN "Font problems"; for d in {,/}L*/{La,Priv,Sta}*; do o=$(ls -A "$d"); PR "$d"; done; } 2> /dev/null | pbcopy; echo $'\nStep 1 done'
    Copy the selected text to the Clipboard by pressing the key combination command-C. Then click anywhere in the Terminal window and paste (command-V). I've tested these instructions only with the Safari web browser. If you use another browser, you may have to press the return key after pasting.
    The command may take up to a few minutes to run, depending on how many files you have and the speed of the computer. Wait for the line "Step 1 done" to appear below what you entered. The output of the command will beautomatically copied to the Clipboard. All you have to do is paste into a reply to this message by pressing command-Vagain. Please don't copy anything from the Terminal window. No typing is involved in this step.
    Step 2 
    Remember that you must be logged in as an administrator for this step. Do as in Step 1 with this line:
    PR () { [[ "$o" ]] && printf '\n%s:\n\n%s\n' "$1" "$o"; }; { o=$(sudo launchctl list | sed 1d | awk '!/0x|com\.(apple|openssh|vix\.cron)|org\.(amav|apac|calendarse|cups|dove|isc|ntp|post[fg]|x)/{print $3}'); PR "Loaded extrinsic daemons"; o=$(sudo defaults read com.apple.loginwindow LoginHook); PR "Login hook"; o=$(sudo crontab -l | grep [^[:blank:]]); PR "Root cron tasks"; o=$(syslog -k Sender kernel -k Message CReq 'GPU |hfs: Ru|I/O e|find tok|n Cause: -|NVDA\(|pagin|timed? ?o' | tail -n25 | awk '/:/{$4=""; print}'); PR "Log check"; } 2>&- | pbcopy; echo $'\nStep 2 done'
    This time you'll be prompted for your login password, which you do have to type. Nothing will be displayed when you type it. Type it carefully and then press return. You may get a one-time warning to be careful. Heed that warning, but don't post it. If you see a message that your username "is not in the sudoers file," then you're not logged in as an administrator.
    You can then quit Terminal. Please note:
    ☞ Steps 1 and 2 are all copy-and-paste — type only your login password when prompted.
    ☞ When you type your password, you won't see what you're typing.
    ☞ If you don’t have a password, set one before taking Step 2. If that’s not possible, skip the step.
    ☞ Step 2 might not produce any output, in which case the Clipboard will be empty. Step 1 will always produce something.
    ☞ The commands don't change anything, and merely running them will do neither good nor harm.
    ☞ Remember to post the output. It's already in the Clipboard. You don't have to copy it. Just paste into a reply    
    ☞ If any personal information, such as your name or email address, appears in the output of either command, anonymize it before posting. Usually that won't be necessary.
    ☞ Don't post the contents of the Terminal window.
    ☞ Don't paste the output of Step 1 into the Terminal window. Paste it into a reply.

  • Firefox (cause the computer) run very slow and display message about Javascript...

    I have installed Firefox (latest vesion) in Windows XP Computer and It sometime run slow (and slow the computer at that time) so that I have to kill firefox job in taskmanager to run it again. Normally, when computer slow, the firefox show a message like "javascript..."
    Please tell me how to fix this problem. Thanks!
    haivnuni - [http://vnuni.net phần mềm bán hàng]

    Ok, try to clean your PC with [https://www.piriform.com/ccleaner/download CCleaner], do deep defrag and optimization with [http://www.iobit.com/iobitsmartdefrag.html Smart Defrag], make sure you have space on your primary drive(where your OS is installed), test your memory with [http://www.memtest.org/ Memtest86+]. If this doesn't help probably most painless and fastest solution will be to reinstall your Windows. Also keep in mind that Windows XP is no longer supported by Microsoft, so if you are in position to move to a newer version of Windows would be a right thing to do. If you reinstall your OS, just update OS and install drivers before you install Firefox and test it then without any other software installed.

  • IR Report in APEX is Very Very Very Slow (Version 4.1 with EPG Config)

    I'm a Junior Developer who started APEX career since 1 year only and I'm always sticking on new challenges day after the other and I'm really cannot understand all of APEX options and LOV value Choices.
    Before a week I had started over a new project in my company which is showing an Active Lease contracts for one of our companies online where I'm using an APEX Technology to accomplish the task
    I had created one Interactive report (report / Form) simply by wizard (Data source is one table only with 25 Columns and 1700 rows) then I changed the Columns names from Report Attribute.
    Finally the page was rendered perfectly except one issue which is really annoying me and users as well, which is the slowness we realized when we change the Rows per page option from 15 to ALL or to 1000 rows, then our life became crazy , thus we cannot navigate or select any filter or do any thing due to slowness of response.
    our NETWORK is 1 Gbps and we are running Oracle DB on IBM Blade Center (powerfull Blade)
    Also we are running APEX 4.1 on Normal Windows 2008 Server platform (DB Version : 11g .2 )
    Please help
    and if any one can give me a steps to tune up my environment.
    Also please refer me to any site where I can access a knowledge base about APEX
    I had gone thru oracle OBE series but it's limited to few things and it's not covering all APEX options.
    Thanks

    Hi,
    You could try increase shared_servers parameter
    alter system set shared_servers=10 scope=both;I think this forum is good resource to find answers. You need just search.
    Regards,
    Jari
    My Blog: http://dbswh.webhop.net/htmldb/f?p=BLOG:HOME:0
    Twitter: http://www.twitter.com/jariolai

  • Flash loading very slow in IE 9 with latest updates

    Dear Members
    Hello to all members myself is Kaustav Banerjee from India and I am into a manufacturing business. Recently I have developed our company's website through a professional website designing company but unfortunately I am having serious issues with Flash in IE 9.
    Let me tell you the details
    Flash version 11.1.102.55 ( The latest version )
    IE 9  version 9.0.8112.16421 ( The latest version)
    Our website  - www.ideasincrafts.com
    OS Version ( WIN 7 32 bit )
    The problem I am having is the website takes very long time to load the flash animation and when somebody opens the home page in IE 9 the user only looks at a flash placeholder with borders. Sometimes the flash loads and sometime it doesn't. Also when the user clicks on the links of the website the flash loading procedure starts again and its quite frustrating.
    The weird thing is the flash displays properly on the other browsers like Firefox and Google chrome.
    I really hope you members can guide us through this issue as the web designing company I am working with doesn't have a clue at all why this is happening.
    I am attaching the image of the problem.
    Thanks with best regards
    Kaustav Banerjee

    Developer-specific resources include:
    MSDN IE Development Forum (post such questions here instead)
    http://social.msdn.microsoft.com/Forums/en-US/iewebdevelopment/threads
    Tip: When posting in Developer forums, always include a link to your web site or test pages in your first post.
    IE Developer Center
    http://msdn.microsoft.com/en-us/ie/default.aspx
    IE’s Compatibility Features for Site Developers
    https://blogs.msdn.com/b/ie/archive/2010/06/16/ie-s-compatibility-features-for-site-develo pers.aspx
    Preparing Your Site for IE9
    http://blogs.msdn.com/b/ie/archive/2011/03/18/preparing-your-site-for-ie9.aspx
    Expression Web SuperPreview for Internet Explorer (60-day free-trial, stand-alone visual debugging tool for all versions of Internet Explorer)
    http://www.microsoft.com/downloads/en/details.aspx?FamilyID=e6cc9b3e-7eab-4525-8322-14d7e2 67eb2c
    Expression Web SuperPreview Release Notes
    http://www.microsoft.com/expression/products/Web_ReleaseNotes.aspx
    Validators:
    http://validator.w3.org/
    http://jigsaw.w3.org/css-validator/

  • Very slow Access 2002 query with Windows 7

    I need help troubleshooting consistently slow queries in an Access 2002 database with Windows 7.
     I’m running a temporary query in a local copy of a back end database with only tables. The identical query will take just 2-3 seconds with Windows XP but 30-60 seconds with Windows 7. Multiple Windows 7 workstations are all slow and
    all Windows XP machines run the query quickly.  I even used JetShowPlan on both workstations to compare and the plans are identical. Two tables are involved with rushmore used on the first and a full scan on the second table of about 150,000 records.
    Even in XP Mode on the Windows 7 machine the query still takes only about 10 seconds. Anyone have any ideas why Access/Jet on Windows 7 can be so slow? Thanks for any ideas.
    Rick Collard

    Hi Tony,
    Thanks for the pointer - I had found that one earlier and tried it - did not help.  I think the HP ProtectTools Security Manager is Normally loaded
    on Laptops - my problem is on Workstation.  I did a test of 2007 Access in the Virtual XP Mode window - There is works 'normally'. 
    To give you an idea how Slow a query in 2007 access/W7 is;
    I started a search for part numbers with 'busbar' in their description...
       on W7 - Database is LOCAL to WS and upgraded to Office 2007
    I then opened an XP Mode window
    Opened the 2007 Access DB to the 'normal' database located on fileserver.
    enter the same Part search
    counted to 10 - 19 Parts found
    Closed DB
    Closed XP Mode window
    Waited about 2 minutes... same 19 parts found....  Wonderful!
    I will wait till my MS Rep can get me in line for the Hot fix or MS releases it.  Till then I will teach the Users how to Use XP Mode.
    -db 

  • Dreamweaver very slow when opening files with external links

    Is there any way to fix Dreamweaver CS5 (Windows 7, 64bit) when opening files with external references?
    For example, I have a very simple CSS file, and toward the top the file has a line that says:
    @import url("https://fonts.googleapis.com/css?family=Ubuntu:500,700");
    This causes the file to take around 20 seconds to open in DW. If I comment out the line or remove it, the file opens almost instantly. This behaviour is also present in files that contain an SSI.
    DW often crashes before being able to open the file and I need to restart the app.
    Can I disable DW from attempting to load the references?? It's obviously what is causing the issue IMO and would love to make DW workable again!

    "Enable Related Files" isn't the fix for this issue. It's slightly different - I wanted to still load related files, but only the ones local to the file I was editing.
    The fix was to use DW's Resolve To IP Address feature. It required adding a registry value - it fixed the issue straight away
    This Adobe support doc helped: http://kb2.adobe.com/cps/887/cpsid_88742.html

  • Continually caching messages with IMAP

    this is driving me insane! today, mail.app inexplicably started feeling the urge to cache my entire imap mailbox every time i start the program. that means for about half an hour it goes through and caches about 4400 emails and my internet is super slow for that period of time. why does it do this? why did it start? what can i do to fix it? i didn't do anything differently today... ??!

    awesome.

  • Erasing deleted messages with IMAP

    My work email account is setup as an IMAP account and is set to just mark deleted messages (and hide them from view, not move to trash). So I've got a smart mailbox setup to collect messages older than a certain date so i can erase really old messages.
    So my question is this: If i right click on the smart mailbox and click "erase deleted messages" will it erase only the messages in this smart mailbox or will it erase all deleted messages in my whole email account?

    awesome.

Maybe you are looking for

  • Push notifications and iMessage won't work on iPod 4th gen refurbished after updating to last ear iOS

    My iPod has been working well for a while other than the battery draining very quickly. But just today I updated to iOS 6.1.3 and all of a sudden iMessage won't deliver the messages and my push notifications aren't showing up! I don't know what is ma

  • Can I log into my iTunes account on any computer

    I am staying with my grandparents for a few weeks. Can I log on to my iTunes account, using their computer (which has iTunes installed for their account) and sync my new iPod with my iTunes account? Thanks. Nik

  • Error message to be thrown when multiple enteries are not entered

    Hello Guys, I have used a select-options with no intervals in the selection screen. If the user enters one value in the range, its working. But I want a error message to be thrown when only one entry is entered. User should enter more than one entry

  • Will the Buffalo LinkStation Live work with my Mac Book?

    I am wanting to get a hard drive that will wirelessly back up my two MacBooks using Time Machine Software. Also, I would like to be able to hook up my printer to this device so that we can share a printer between the two Macbooks wirelessly. I came a

  • A problem about bapi dd check

    Hi, all.     I tried to use arfc2 to call a bapi to get PO data from R/3 in 7.1.1. So I did model binding for my component controller`s context. Then I tried to get the result from these parameters programly. But I always got dd check error. For exam