Mail Progress Bar

I recently upgraded an iMac to Tiger. In Panther, my Mail application displayed a progress bar when forwarding e-mails with attachments. I can't seem to get the progress bar to display in Tiger. Any suggestions?

The progress bar you are referring to was removed with Tiger Mail.
To see detailed progress when sending a message with attachments, open the Activity Viewer window.

Similar Messages

  • How to use a progress bar with java mail?

    Hi, i'm new here.
    I want if someone can recommend me how to show a progress bar with java mail.
    Because, i send a message but the screen freeze, and the progress bar never appear, after the send progress finish.
    Thanks

    So why would the code we post be any different than the code in the tutorial? Why do you think our code would be easier to understand? The tutorial contains explanations about the code.
    Did you download the code and execute it? Did it work? Then customize the code to suit your situation. We can't give you the code because we don't know exactly what you are attempting to do. We don't know how you have changed to demo code so that it no longer works. Its up to you to compare your code with the demo code to see what the difference is.

  • Progress bar in mail

    Is there a progress bar in Mail.
    Antony

    For what purpose?
    Mail menu/Window/Activity will show a progress bar for the short time it takes for Mail to do anything!

  • E-mail sending with progress bar

    OK so I have a application that allows the user to send an e-mail with multiple attachments. It works fine but I want to add a progress bar - when the user clicks SEND, a new window should pop-up with a progress bar and a OK button after the mail has been successfuly sent.
    Any ideas how to accomplish this?
    Mail sending is handled by this class and is called from a frame:
    import javax.mail.*;
    import javax.mail.internet.*;
    import javax.activation.FileDataSource;
    import javax.activation.DataHandler;
    import java.util.Properties;
    import java.util.Calendar;
    import java.util.Date;
    import java.util.Vector;
    import java.io.File;
    import java.io.*;
    public class Mailer implements Runnable {
    boolean success = false;
    String sendToAddress, ccAddress, sendFromAddress,
    subject, messageText, filename, smtpServer;
    mainFrame2 frame;
    public Mailer(String sendToAddress, String ccAddress, String sendFromAddress, String subject, String messageText, String filename,
    String smtpServer, mainFrame2 frame)
    this.sendToAddress = sendToAddress;
    this.ccAddress = ccAddress ;
    this.sendFromAddress = sendFromAddress;
    this.subject = subject;
    this.messageText = messageText ;
    this.filename = filename;
    this.smtpServer = smtpServer ;
    this.frame = frame;
    public void run() {  
    sendMail();
    public void sendMail() {
    Properties props = System.getProperties();
    props.put("mail.smtp.host", smtpServer);
    Session session = Session.getInstance(props, null);
    MimeMessage msg = new MimeMessage(session);
    Multipart mp = new MimeMultipart();
    BodyPart body = new MimeBodyPart();
    BodyPart attachment = new MimeBodyPart();
    try {
    msg.setFrom(new InternetAddress(sendFromAddress));
    msg.setRecipient(javax.mail.Message.RecipientType.TO,
    new InternetAddress(sendToAddress));
    if(ccAddress.length()>3)
    msg.setRecipient(javax.mail.Message.RecipientType.CC, new InternetAddress(ccAddress));
    msg.setSubject(subject);
    msg.setSentDate(new Date());
    msg.addHeaderLine("MIME-Version: 1.0");
    msg.addHeaderLine("Content-type: text/html; charset=\"windows-1251\"");
    body.setText(messageText);
    FileDataSource fds = new FileDataSource(new File(filename));
    DataHandler dh = new DataHandler(fds);
    attachment.setDataHandler(dh);
    attachment.setFileName(filename.substring(filename.lastIndexOf("\\", filename.length())+1));
    mp.addBodyPart(body);
    mp.addBodyPart(attachment);
    // this here is for the attachments, I've already collected them into a Vector
    for(int i=0; i < frame.attachedFiles.files.size(); i++)
    int chertichka = frame.attachedFiles.files.get(i).toString().lastIndexOf("\\");
    String ime = frame.attachedFiles.files.get(i).toString().substring(chertichka+1);
    BodyPart attachment1 = new MimeBodyPart();
    FileDataSource fds1 = new FileDataSource(new File(frame.attachedFiles.files.get(i).toString()));
    DataHandler dh1 = new DataHandler(fds1);
    attachment1.setDataHandler(dh1);
    attachment1.setFileName(ime);
    mp.addBodyPart(attachment1);
    turgData.doc_to_attach = "";
    msg.setContent(mp);
    Transport.send(msg);
    } catch (MessagingException e) {
    e.printStackTrace();
    success = true;
    public static boolean isEmailAddress(String text)
    if(text.indexOf(" ")>-1) return false;
    int kliomba = text.indexOf("@");
    int dotCom = text.lastIndexOf(".");
    if(kliomba < 2 || kliomba >(text.length()-4)) return false;
    else if(dotCom > (text.length()-2)) return false;
    else return true;
    public boolean isSent()
    return success;
    Please provide some code on how to put a progress bar in a pop-up window after the user clicks SEND. Also, the send button should be disabled until the mail has been sent.
    PLZ help me out ;)))

    Hi,
    Check the links for Email Adapter,If u want to send the Attachment then give me ur mail id i will send you one doc which will explain u how to send Email in Attachment.
    Receiver Mail Adapter.
    /people/prasad.ulagappan2/blog/2005/06/07/mail-adapter-scenarios-150-sap-exchange-infrastructure
    /people/community.user/blog/2006/09/07/email-reporting
    /people/community.user/blog/2006/09/08/email-report-as-attachment-excelword
    /people/michal.krawczyk2/blog/2005/03/07/mail-adapter-xi--how-to-implement-dynamic-mail-address
    /people/michal.krawczyk2/blog/2005/11/23/xi-html-e-mails-from-the-receiver-mail-adapter
    /people/michal.krawczyk2/blog/2005/12/18/xi-sender-mail-adapter--payloadswapbean--step-by-step
    eMail Reporting
    /people/community.user/blog/2006/09/07/email-reporting
    Regards,
    Phani
    Reward points if Helpful

  • Enable visualization of incoming mail size in "mail activity" progress bar

    I was wondering if there is any possibility to visualize in the progress bar the size of the incoming mail while it is being downloaded. For now we can see only the download speed. This could prove useful if you are in a location having poor connection and you don't want to throttle it or wait too long for the download to take place.

    Melksedek wrote:
    I was wondering if there is any possibility to visualize in the progress bar the size of the incoming mail while it is being downloaded. For now we can see only the download speed. This could prove useful if you are in a location having poor connection and you don't want to throttle it or wait too long for the download to take place.
    this is not possible.

  • Mail Drop Progress Bar?

    How can I tell if Mail Drop is working?  No progress bar is visible during upload or download.

    Found the download progress on the attachment icon in Apple Mail Yosemite.  Still can't see any indication of how the upload is progressing.

  • TS3694 hi i recently updated into ios 7.0.4 now i want to fully restore my ipad to resell but when i restore it it got stuck with apple logo and progress bar with 45% completed as firware file is downloaded using ipad 4 wifi itunes 11.3.8

    hi i rescently updated my ipad 4 in ios 7.0.4 and for resell purpose i want to restore my ipad via itunes but it got stuck at apple logo and progress bar of 45% completed i tried it 50 times but it stuck on that exact point for hours i cant able to restore it and had no errors it just like freezes at one point i also uses dfu mode but got stuck at same problem using windows 7 32 bits itunes 11.3.8 ipad 4 wifi please help

    My iPhone 5 wouldn't start after I turned it off a few minutes after writing this. It went into recovery mode and I had no choice but to connect to iTunes on PC and restore.
    I restored to factory setting first, just to validate my phone was okay. For a second consecutive iOS update, the  iPhone 5 did not update smoothly while connected to PC and iTunes - I had to retry two times before the progress bar for the update showed. (The exact same problem with the restart occured when I updated to 7.0.4.)
    The good news is that I was ultimately able to restore the iPhone 5 to factory settings while running iOS 7.0.6. I did have a backup from about a month ago lying around and was able to successfully restore with that as well, so the damage done is almost negligible since I had my contacts, notes, mail, etc. backed up to iCloud.
    Once I completed both restores, the sync with iTunes worked fine.

  • Progress bar on startup

    Hi Guys,
    I keep getting a progress bar on startup. Not every time, but at least every few days. I've had this before since installing Mavericks and eventually my drive was not reparable in disk utility and I had to do a clean install and start from scratch.
    I'm using a Macbook Pro 2012 with a Sandisk Ultra Plus SSD.
    One thing I've noticed is that it seems to happen when I shutdown and close the lid of the macbook overnight and leave it unplugged. I'm not sure if this is a coincidence or not.
    I'm not sure exactly what is causing this issue and I can't seem to find what it is from the log files. I've pasted my log file in below, hopefully there's someone out there who can see what it is!
    22/11/13 8:50:32.000 am bootlog[0]: BOOT_TIME 1385081432 0
    22/11/13 8:51:08.000 am syslogd[20]: Configuration Notice:
    ASL Module "com.apple.appstore" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    22/11/13 8:51:08.000 am syslogd[20]: Configuration Notice:
    ASL Module "com.apple.authd" sharing output destination "/var/log/system.log" with ASL Module "com.apple.asl".
    Output parameters from ASL Module "com.apple.asl" override any specified in ASL Module "com.apple.authd".
    22/11/13 8:51:08.000 am syslogd[20]: Configuration Notice:
    ASL Module "com.apple.authd" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    22/11/13 8:51:08.000 am syslogd[20]: Configuration Notice:
    ASL Module "com.apple.bookstore" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    22/11/13 8:51:08.000 am syslogd[20]: Configuration Notice:
    ASL Module "com.apple.eventmonitor" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    22/11/13 8:51:08.000 am syslogd[20]: Configuration Notice:
    ASL Module "com.apple.install" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    22/11/13 8:51:08.000 am syslogd[20]: Configuration Notice:
    ASL Module "com.apple.iokit.power" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    22/11/13 8:51:08.000 am syslogd[20]: Configuration Notice:
    ASL Module "com.apple.mail" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    22/11/13 8:51:08.000 am syslogd[20]: Configuration Notice:
    ASL Module "com.apple.MessageTracer" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    22/11/13 8:51:08.000 am syslogd[20]: Configuration Notice:
    ASL Module "com.apple.performance" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    22/11/13 8:51:08.000 am syslogd[20]: Configuration Notice:
    ASL Module "com.apple.securityd" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    22/11/13 8:51:08.000 am syslogd[20]: Configuration Notice:
    ASL Module "com.apple.securityd" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    22/11/13 8:51:08.000 am syslogd[20]: Configuration Notice:
    ASL Module "com.apple.securityd" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    22/11/13 8:51:08.000 am syslogd[20]: Configuration Notice:
    ASL Module "com.apple.securityd" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    22/11/13 8:51:08.000 am syslogd[20]: Configuration Notice:
    ASL Module "com.apple.securityd" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    22/11/13 8:51:08.000 am syslogd[20]: Configuration Notice:
    ASL Module "com.apple.securityd" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    22/11/13 8:51:08.000 am syslogd[20]: Configuration Notice:
    ASL Module "com.apple.securityd" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    22/11/13 8:51:08.000 am kernel[0]: Longterm timer threshold: 1000 ms
    22/11/13 8:51:08.000 am kernel[0]: PMAP: PCID enabled
    22/11/13 8:51:08.000 am kernel[0]: PMAP: Supervisor Mode Execute Protection enabled
    22/11/13 8:51:08.000 am kernel[0]: Darwin Kernel Version 13.0.0: Thu Sep 19 22:22:27 PDT 2013; root:xnu-2422.1.72~6/RELEASE_X86_64
    22/11/13 8:51:08.000 am kernel[0]: vm_page_bootstrap: 3908857 free pages and 252679 wired pages
    22/11/13 8:51:08.000 am kernel[0]: kext submap [0xffffff7f807a5000 - 0xffffff8000000000], kernel text [0xffffff8000200000 - 0xffffff80007a5000]
    22/11/13 8:51:08.000 am kernel[0]: zone leak detection enabled
    22/11/13 8:51:08.000 am kernel[0]: "vm_compressor_mode" is 4
    22/11/13 8:51:08.000 am kernel[0]: standard timeslicing quantum is 10000 us
    22/11/13 8:51:08.000 am kernel[0]: standard background quantum is 2500 us
    22/11/13 8:51:08.000 am kernel[0]: mig_table_max_displ = 74
    22/11/13 8:51:08.000 am kernel[0]: TSC Deadline Timer supported and enabled
    22/11/13 8:51:08.000 am kernel[0]: AppleACPICPU: ProcessorId=1 LocalApicId=0 Enabled
    22/11/13 8:51:08.000 am kernel[0]: AppleACPICPU: ProcessorId=2 LocalApicId=2 Enabled
    22/11/13 8:51:08.000 am kernel[0]: AppleACPICPU: ProcessorId=3 LocalApicId=1 Enabled
    22/11/13 8:51:08.000 am kernel[0]: AppleACPICPU: ProcessorId=4 LocalApicId=3 Enabled
    22/11/13 8:51:08.000 am kernel[0]: AppleACPICPU: ProcessorId=5 LocalApicId=255 Disabled
    22/11/13 8:51:08.000 am kernel[0]: AppleACPICPU: ProcessorId=6 LocalApicId=255 Disabled
    22/11/13 8:51:08.000 am kernel[0]: AppleACPICPU: ProcessorId=7 LocalApicId=255 Disabled
    22/11/13 8:51:08.000 am kernel[0]: AppleACPICPU: ProcessorId=8 LocalApicId=255 Disabled
    22/11/13 8:51:08.000 am kernel[0]: calling mpo_policy_init for TMSafetyNet
    22/11/13 8:51:08.000 am kernel[0]: Security policy loaded: Safety net for Time Machine (TMSafetyNet)
    22/11/13 8:51:08.000 am kernel[0]: calling mpo_policy_init for Sandbox
    22/11/13 8:51:08.000 am kernel[0]: Security policy loaded: Seatbelt sandbox policy (Sandbox)
    22/11/13 8:51:08.000 am kernel[0]: calling mpo_policy_init for Quarantine
    22/11/13 8:51:08.000 am kernel[0]: Security policy loaded: Quarantine policy (Quarantine)
    22/11/13 8:51:08.000 am kernel[0]: Copyright (c) 1982, 1986, 1989, 1991, 1993
    22/11/13 8:51:08.000 am kernel[0]: The Regents of the University of California. All rights reserved.
    22/11/13 8:51:08.000 am kernel[0]: MAC Framework successfully initialized
    22/11/13 8:51:08.000 am kernel[0]: using 16384 buffer headers and 10240 cluster IO buffer headers
    22/11/13 8:51:08.000 am kernel[0]: AppleKeyStore starting (BUILT: Sep 19 2013 22:20:34)
    22/11/13 8:51:08.000 am kernel[0]: IOAPIC: Version 0x20 Vectors 64:87
    22/11/13 8:51:08.000 am kernel[0]: ACPI: sleep states S3 S4 S5
    22/11/13 8:51:08.000 am kernel[0]: AppleIntelCPUPowerManagement: Turbo Ratios 0046
    22/11/13 8:51:08.000 am kernel[0]: AppleIntelCPUPowerManagement: (built 22:16:38 Sep 19 2013) initialization complete
    22/11/13 8:51:08.000 am kernel[0]: pci (build 22:16:29 Sep 19 2013), flags 0x63008, pfm64 (36 cpu) 0xf80000000, 0x80000000
    22/11/13 8:51:08.000 am kernel[0]: [ PCI configuration begin ]
    22/11/13 8:51:08.000 am kernel[0]: console relocated to 0xf80000000
    22/11/13 8:51:08.000 am kernel[0]: [ PCI configuration end, bridges 11, devices 15 ]
    22/11/13 8:51:08.000 am kernel[0]: mcache: 4 CPU(s), 64 bytes CPU cache line size
    22/11/13 8:51:08.000 am kernel[0]: mbinit: done [128 MB total pool size, (85/42) split]
    22/11/13 8:51:08.000 am kernel[0]: Pthread support ABORTS when sync kernel primitives misused
    22/11/13 8:51:08.000 am kernel[0]: FireWire (OHCI) Lucent ID 5901 built-in now active, GUID 10ddb1fffe8da9e6; max speed s800.
    22/11/13 8:51:08.000 am kernel[0]: rooting via boot-uuid from /chosen: 159A8D24-BC1B-3397-A3F5-A6F84517DC1A
    22/11/13 8:51:08.000 am 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>
    22/11/13 8:51:08.000 am kernel[0]: com.apple.AppleFSCompressionTypeZlib kmod start
    22/11/13 8:51:08.000 am kernel[0]: com.apple.AppleFSCompressionTypeDataless kmod start
    22/11/13 8:51:08.000 am kernel[0]: com.apple.AppleFSCompressionTypeZlib load succeeded
    22/11/13 8:51:08.000 am kernel[0]: com.apple.AppleFSCompressionTypeDataless load succeeded
    22/11/13 8:51:08.000 am kernel[0]: AppleIntelCPUPowerManagementClient: ready
    22/11/13 8:51:08.000 am kernel[0]: Got boot device = IOService:/AppleACPIPlatformExpert/PCI0@0/AppleACPIPCI/SATA@1F,2/AppleIntelPchS eriesAHCI/PRT1@1/IOAHCIDevice@0/AppleAHCIDiskDriver/IOAHCIBlockStorageDevice/IOB lockStorageDriver/SanDisk SDSSDHP128G Media/IOGUIDPartitionScheme/Mavericks@2
    22/11/13 8:51:08.000 am kernel[0]: BSD root: disk0s2, major 1, minor 3
    22/11/13 8:51:08.000 am kernel[0]: BTCOEXIST off
    22/11/13 8:51:08.000 am kernel[0]: BRCM tunables:
    22/11/13 8:51:08.000 am kernel[0]: pullmode[1] txringsize[  256] txsendqsize[1024] reapmin[   32] reapcount[  128]
    22/11/13 8:51:08.000 am kernel[0]: hfs: mounted Mavericks on device root_device
    22/11/13 8:51:08.000 am kernel[0]: AppleUSBMultitouchDriver::checkStatus - received Status Packet, Payload 2: device was reinitialized
    22/11/13 8:50:32.326 am com.apple.launchd[1]: *** launchd[1] has started up. ***
    22/11/13 8:50:32.326 am com.apple.launchd[1]: *** Shutdown logging is enabled. ***
    22/11/13 8:51:08.100 am com.apple.SecurityServer[17]: Session 100000 created
    22/11/13 8:51:08.000 am kernel[0]: IO80211Controller::dataLinkLayerAttachComplete():  adding AppleEFINVRAM notification
    22/11/13 8:51:08.000 am kernel[0]: IO80211Interface::efiNVRAMPublished(): 
    22/11/13 8:51:10.261 am com.apple.SecurityServer[17]: Entering service
    22/11/13 8:51:10.000 am kernel[0]: Previous Shutdown Cause: 5
    22/11/13 8:51:10.000 am kernel[0]: init
    22/11/13 8:51:10.000 am kernel[0]: probe
    22/11/13 8:51:10.000 am kernel[0]: start
    22/11/13 8:51:10.000 am kernel[0]: [IOBluetoothHCIController][start] -- completed
    22/11/13 8:51:10.000 am kernel[0]: IOBluetoothUSBDFU::probe
    22/11/13 8:51:10.000 am kernel[0]: IOBluetoothUSBDFU::probe ProductID - 0x821D FirmwareVersion - 0x0131
    22/11/13 8:51:10.000 am kernel[0]: **** [IOBluetoothHostControllerUSBTransport][start] -- completed -- result = TRUE -- 0x6400 ****
    22/11/13 8:51:10.000 am kernel[0]: **** [BroadcomBluetoothHostControllerUSBTransport][start] -- Completed -- 0x6400 ****
    22/11/13 8:51:10.000 am kernel[0]: [IOBluetoothHCIController][staticBluetoothHCIControllerTransportShowsUp] -- Received Bluetooth Controller register service notification -- 0x6400
    22/11/13 8:51:10.428 am UserEventAgent[14]: Failed to copy info dictionary for bundle /System/Library/UserEventPlugins/alfUIplugin.plugin
    22/11/13 8:51:10.440 am UserEventAgent[14]: Captive: CNPluginHandler en1: Inactive
    22/11/13 8:51:10.000 am kernel[0]: [IOBluetoothHCIController::setConfigState] calling registerService
    22/11/13 8:51:10.000 am kernel[0]: **** [IOBluetoothHCIController][protectedBluetoothHCIControllerTransportShowsUp] -- Connected to the transport successfully -- 0x1400 -- 0xe800 -- 0x6400 ****
    22/11/13 8:51:10.000 am kernel[0]: DSMOS has arrived
    22/11/13 8:51:10.000 am kernel[0]: Network delay is not specified! Defaulting to 0x384
    22/11/13 8:51:10.000 am kernel[0]: IOPPF: AppleIntelCPUPowerManagement mode
    22/11/13 8:51:10.000 am kernel[0]: Network delay is not specified! Defaulting to 0x384
    22/11/13 8:51:10.000 am kernel[0]: m_tail has not been written to hardware: m_tail = 0x00000000, hardare tail register = 0x00000060
    22/11/13 8:51:10.000 am kernel[0]: Network delay is not specified! Defaulting to 0x384
    22/11/13 8:51:10.000 am kernel[0]: flow_divert_kctl_disconnect (0): disconnecting group 1
    22/11/13 8:51:10.000 am kernel[0]: Network delay is not specified! Defaulting to 0x384
    22/11/13 8:51:10.000 am kernel[0]: Network delay is not specified! Defaulting to 0x384
    22/11/13 8:51:11.000 am kernel[0]: VM Swap Subsystem is ON
    22/11/13 8:51:11.108 am hidd[69]: void __IOHIDPlugInLoadBundles(): Loaded 0 HID plugins
    22/11/13 8:51:11.110 am hidd[69]: Posting 'com.apple.iokit.hid.displayStatus' notifyState=1
    22/11/13 8:51:11.156 am mDNSResponder[61]: mDNSResponder mDNSResponder-522.1.11 (Aug 24 2013 23:49:34) starting OSXVers 13
    22/11/13 8:51:11.000 am kernel[0]: en2: promiscuous mode enable succeeded
    22/11/13 8:51:11.247 am digest-service[86]: label: default
    22/11/13 8:51:11.247 am digest-service[86]:           dbname: od:/Local/Default
    22/11/13 8:51:11.247 am digest-service[86]:           mkey_file: /var/db/krb5kdc/m-key
    22/11/13 8:51:11.247 am digest-service[86]:           acl_file: /var/db/krb5kdc/kadmind.acl
    22/11/13 8:51:11.000 am kernel[0]: Network delay is not specified! Defaulting to 0x384
    22/11/13 8:51:11.253 am digest-service[86]: digest-request: uid=0
    22/11/13 8:51:11.000 am kernel[0]: Network delay is not specified! Defaulting to 0x384
    22/11/13 8:51:11.345 am digest-service[86]: digest-request: netr probe 0
    22/11/13 8:51:11.348 am digest-service[86]: digest-request: init request
    22/11/13 8:51:11.432 am digest-service[86]: digest-request: init return domain: BUILTIN server: LOCALHOST indomain was: <NULL>
    22/11/13 8:51:11.463 am com.apple.usbmuxd[45]: usbmuxd-323.1 on Oct  3 2013 at 12:43:24, running 64 bit
    22/11/13 8:51:11.540 am loginwindow[64]: Login Window Application Started
    22/11/13 8:51:11.587 am mDNSResponder[61]: D2D_IPC: Loaded
    22/11/13 8:51:11.587 am mDNSResponder[61]: D2DInitialize succeeded
    22/11/13 8:51:11.592 am mDNSResponder[61]:   4: Listening for incoming Unix Domain Socket client requests
    22/11/13 8:51:11.606 am mDNSResponder[61]: mDNSMacOSXGetEtcHostsFD etc hosts does not exist, watching etc
    22/11/13 8:51:11.692 am mds[60]: (Normal) FMW: FMW 0 0
    22/11/13 8:51:11.729 am WindowServer[107]: Server is starting up
    22/11/13 8:51:11.745 am WindowServer[107]: Session 256 retained (2 references)
    22/11/13 8:51:11.746 am WindowServer[107]: Session 256 released (1 references)
    22/11/13 8:51:11.789 am mDNSResponder[61]: mDNSPlatformSendUDP: sendto(8) failed to send packet on InterfaceID 0000000000000001   lo0/4 to 224.0.0.251:5353 skt 8 error -1 errno 51 (Network is unreachable) 5028209798 MessageCount is 1
    22/11/13 8:51:11.798 am awacsd[81]: Starting awacsd connectivity_executables-97 (Aug 24 2013 23:49:23)
    22/11/13 8:51:11.803 am WindowServer[107]: Session 256 retained (2 references)
    22/11/13 8:51:11.808 am WindowServer[107]: init_page_flip: page flip mode is on
    22/11/13 8:51:11.811 am awacsd[81]: InnerStore CopyAllZones: no info in Dynamic Store
    22/11/13 8:51:11.000 am kernel[0]: Network delay is not specified! Defaulting to 0x384
    22/11/13 8:51:11.000 am kernel[0]: **** [IOBluetoothHostControllerUSBTransport][SuspendDevice] -- Suspend -- suspendDeviceCallResult = 0x0000 (kIOReturnSuccess) -- 0x6400 ****
    22/11/13 8:51:11.000 am kernel[0]: Network delay is not specified! Defaulting to 0x384
    22/11/13 8:51:11.923 am WindowServer[107]: Found 16 modes for display 0x00000000 [8, 8]
    22/11/13 8:51:11.926 am apsd[83]: CGSLookupServerRootPort: Failed to look up the port for "com.apple.windowserver.active" (1102)
    22/11/13 8:51:11.930 am WindowServer[107]: Found 1 modes for display 0x00000000 [1, 0]
    22/11/13 8:51:11.934 am WindowServer[107]: Found 1 modes for display 0x00000000 [1, 0]
    22/11/13 8:51:11.937 am WindowServer[107]: Found 1 modes for display 0x00000000 [1, 0]
    22/11/13 8:51:11.943 am WindowServer[107]: mux_initialize: Couldn't find any matches
    22/11/13 8:51:11.946 am WindowServer[107]: Found 16 modes for display 0x00000000 [8, 8]
    22/11/13 8:51:11.952 am WindowServer[107]: Found 1 modes for display 0x00000000 [1, 0]
    22/11/13 8:51:11.953 am WindowServer[107]: Found 1 modes for display 0x00000000 [1, 0]
    22/11/13 8:51:11.953 am WindowServer[107]: Found 1 modes for display 0x00000000 [1, 0]
    22/11/13 8:51:11.972 am mds[60]: (Warning) Server: No stores registered for metascope "kMDQueryScopeComputer"
    22/11/13 8:51:11.989 am WindowServer[107]: WSMachineUsesNewStyleMirroring: true
    22/11/13 8:51:11.990 am WindowServer[107]: Display 0x042732c0: GL mask 0x1; bounds (0, 0)[1280 x 800], 16 modes available
    Main, Active, on-line, enabled, built-in, boot, Vendor 610, Model 9ccb, S/N 0, Unit 0, Rotation 0
    UUID 0x4f159f59a71d63aefce94e26fc6d6edd
    22/11/13 8:51:11.990 am WindowServer[107]: Display 0x003f0040: GL mask 0x10; bounds (0, 0)[1920 x 1200], 2 modes available
    off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 4, Rotation 0
    UUID 0xffffffffffffffffffffffffffffffff
    22/11/13 8:51:11.990 am WindowServer[107]: 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 0xffffffffffffffffffffffffffffffff
    22/11/13 8:51:11.990 am WindowServer[107]: 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 0xffffffffffffffffffffffffffffffff
    22/11/13 8:51:11.990 am WindowServer[107]: 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 0xffffffffffffffffffffffffffffffff
    22/11/13 8:51:12.002 am WindowServer[107]: WSSetWindowTransform: Singular matrix
    22/11/13 8:51:12.002 am WindowServer[107]: WSSetWindowTransform: Singular matrix
    22/11/13 8:51:12.003 am WindowServer[107]: WSSetWindowTransform: Singular matrix
    22/11/13 8:51:12.018 am WindowServer[107]: Display 0x042732c0: GL mask 0x1; bounds (0, 0)[1280 x 800], 16 modes available
    Main, Active, on-line, enabled, built-in, boot, Vendor 610, Model 9ccb, S/N 0, Unit 0, Rotation 0
    UUID 0x4f159f59a71d63aefce94e26fc6d6edd
    22/11/13 8:51:12.019 am WindowServer[107]: Display 0x003f0040: GL mask 0x10; bounds (2304, 0)[1 x 1], 2 modes available
    off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 4, Rotation 0
    UUID 0xffffffffffffffffffffffffffffffff
    22/11/13 8:51:12.019 am WindowServer[107]: Display 0x003f003f: GL mask 0x8; bounds (2305, 0)[1 x 1], 1 modes available
    off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 3, Rotation 0
    UUID 0xffffffffffffffffffffffffffffffff
    22/11/13 8:51:12.019 am WindowServer[107]: Display 0x003f003e: GL mask 0x4; bounds (2306, 0)[1 x 1], 1 modes available
    off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 2, Rotation 0
    UUID 0xffffffffffffffffffffffffffffffff
    22/11/13 8:51:12.019 am WindowServer[107]: Display 0x003f003d: GL mask 0x2; bounds (2307, 0)[1 x 1], 1 modes available
    off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 1, Rotation 0
    UUID 0xffffffffffffffffffffffffffffffff
    22/11/13 8:51:12.019 am WindowServer[107]: CGXPerformInitialDisplayConfiguration
    22/11/13 8:51:12.019 am WindowServer[107]:   Display 0x042732c0: Unit 0; Vendor 0x610 Model 0x9ccb S/N 0 Dimensions 11.26 x 7.05; online enabled built-in, Bounds (0,0)[1280 x 800], Rotation 0, Resolution 1
    22/11/13 8:51:12.020 am WindowServer[107]:   Display 0x003f0040: Unit 4; 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
    22/11/13 8:51:12.020 am WindowServer[107]:   Display 0x003f003f: Unit 3; 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
    22/11/13 8:51:12.020 am WindowServer[107]:   Display 0x003f003e: Unit 2; 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
    22/11/13 8:51:12.021 am WindowServer[107]:   Display 0x003f003d: Unit 1; Vendor 0xffffffff Model 0xffffffff S/N -1 Dimensions 0.00 x 0.00; offline enabled, Bounds (2307,0)[1 x 1], Rotation 0, Resolution 1
    22/11/13 8:51:12.027 am mds[60]: (Warning) Server: No stores registered for metascope "kMDQueryScopeComputer"
    22/11/13 8:51:12.033 am mds[60]: (Warning) Server: No stores registered for metascope "kMDQueryScopeComputer"
    22/11/13 8:51:12.058 am systemkeychain[91]: done file: /var/run/systemkeychaincheck.done
    22/11/13 8:51:12.061 am mDNSResponder[61]: mDNSPlatformSendUDP: sendto(8) failed to send packet on InterfaceID 0000000000000001   lo0/4 to 224.0.0.251:5353 skt 8 error -1 errno 51 (Network is unreachable) 5028210070 MessageCount is 2
    22/11/13 8:51:12.068 am mtmfs[58]: MTM fs Mount server failed to start because of error -1
    22/11/13 8:51:12.080 am WindowServer[107]: GLCompositor: GL renderer id 0x01024400, GL mask 0x0000001f, accelerator 0x000048bb, unit 0, caps QEX|MIPMAP, vram 1024 MB
    22/11/13 8:51:12.081 am WindowServer[107]: GLCompositor: GL renderer id 0x01024400, GL mask 0x0000001f, texture max 16384, viewport max {16384, 16384}, extensions FPRG|NPOT|GLSL|FLOAT
    22/11/13 8:51:12.081 am WindowServer[107]: GLCompositor enabled for tile size [256 x 256]
    22/11/13 8:51:12.081 am WindowServer[107]: CGXGLInitMipMap: mip map mode is on
    22/11/13 8:51:12.093 am loginwindow[64]: **DMPROXY** Found `/System/Library/CoreServices/DMProxy'.
    22/11/13 8:51:12.185 am networkd[119]: networkd.119 built Aug 24 2013 22:08:46
    22/11/13 8:51:12.199 am locationd[66]: NBB-Could not get UDID for stable refill timing, falling back on random
    22/11/13 8:51:12.229 am airportd[85]: airportdProcessDLILEvent: en1 attached (down)
    22/11/13 8:51:12.232 am locationd[66]: Location icon should now be in state 'Inactive'
    22/11/13 8:51:12.000 am kernel[0]: createVirtIf(): ifRole = 1
    22/11/13 8:51:12.000 am kernel[0]: in func createVirtualInterface ifRole = 1
    22/11/13 8:51:12.000 am kernel[0]: AirPort_Brcm4331_P2PInterface::init name <p2p0> role 1
    22/11/13 8:51:12.000 am kernel[0]: AirPort_Brcm4331_P2PInterface::init() <p2p> role 1
    22/11/13 8:51:12.000 am kernel[0]: Created virtif 0xffffff8044e81400 p2p0
    22/11/13 8:51:12.254 am WindowServer[107]: Display 0x042732c0: Unit 0; ColorProfile { 2, "Color LCD"}; TransferTable (256, 12)
    22/11/13 8:51:12.333 am launchctl[122]: com.apple.findmymacmessenger: Already loaded
    22/11/13 8:51:12.378 am mDNSResponder[61]: mDNSPlatformSendUDP: sendto(8) failed to send packet on InterfaceID 0000000000000001   lo0/4 to 224.0.0.251:5353 skt 8 error -1 errno 51 (Network is unreachable) 5028210387 MessageCount is 3
    22/11/13 8:51:12.000 am kernel[0]: AirPort: Link Down on en1. Reason 8 (Disassociated because station leaving).
    22/11/13 8:51:12.418 am com.apple.SecurityServer[17]: Session 100004 created
    22/11/13 8:51:12.497 am loginwindow[64]: Setting the initial value of the magsave brightness level 1
    22/11/13 8:51:12.552 am loginwindow[64]: Login Window Started Security Agent
    22/11/13 8:51:12.565 am configd[21]: dhcp_arp_router: en1 SSID unavailable
    22/11/13 8:51:12.565 am configd[21]: [bootp_transmit.c:213] bootp_transmit(): bpf_write(en1) failed: Network is down (50)
    22/11/13 8:51:12.566 am configd[21]: DHCP en1: INIT-REBOOT transmit failed
    22/11/13 8:51:12.606 am configd[21]: network changed: DNS*
    22/11/13 8:51:12.607 am configd[21]: setting hostname to "Gareths-MacBook-Pro.local"
    22/11/13 8:51:12.000 am kernel[0]: hfs: mounted DATA on device disk1s3
    22/11/13 8:51:12.809 am SecurityAgent[140]: This is the first run
    22/11/13 8:51:12.809 am SecurityAgent[140]: MacBuddy was run = 0
    22/11/13 8:51:12.833 am WindowServer[107]: MPAccessSurfaceForDisplayDevice: Set up page flip mode on display 0x042732c0 device: 0x7fa22341bd70  isBackBuffered: 1 numComp: 3 numDisp: 3
    22/11/13 8:51:12.834 am WindowServer[107]: _CGXGLDisplayContextForDisplayDevice: acquired display context (0x7fa22341bd70) - enabling OpenGL
    22/11/13 8:51:12.840 am UserEventAgent[124]: Failed to copy info dictionary for bundle /System/Library/UserEventPlugins/alfUIplugin.plugin
    22/11/13 8:51:12.000 am kernel[0]: NTFS driver 3.11 [Flags: R/W].
    22/11/13 8:51:12.929 am SecurityAgent[140]: User info context values set for gareth
    22/11/13 8:51:13.000 am kernel[0]: hfs: mounted Recovery HD on device disk0s3
    22/11/13 8:51:13.236 am mds[60]: (Normal) Volume: volume:0x7f8bb2053800 ********** Bootstrapped Creating a default store:0 SpotLoc:(null) SpotVerLoc:(null) occlude:0 /Volumes/Recovery HD
    22/11/13 8:51:13.290 am fseventsd[70]: Logging disabled completely for device:1: /Volumes/Recovery HD
    22/11/13 8:51:13.386 am loginwindow[64]: Login Window - Returned from Security Agent
    22/11/13 8:51:13.428 am loginwindow[64]: USER_PROCESS: 64 console
    22/11/13 8:51:13.000 am kernel[0]: nspace-handler-set-snapshot-time: 1385081475
    22/11/13 8:51:13.441 am com.apple.mtmd[59]: Set snapshot time: 2013-11-22 08:51:15 +0800 (current time: 2013-11-22 08:51:13 +0800)
    22/11/13 8:51:13.000 am kernel[0]: AppleKeyStore:Sending lock change 0
    22/11/13 8:51:13.000 am kernel[0]: hfs: unmount initiated on Recovery HD on device disk0s3
    22/11/13 8:51:13.608 am mtmfs[58]: MTM fs Mount server retrying ...
    22/11/13 8:51:13.608 am mtmfs[58]: MTM fs Mount server failed to start because of error -1
    22/11/13 8:51:13.626 am com.apple.launchd.peruser.501[158]: Background: Aqua: Registering new GUI session.
    22/11/13 8:51:13.664 am com.apple.launchd.peruser.501[158]: (com.apple.cmfsyncagent) Ignored this key: UserName
    22/11/13 8:51:13.665 am com.apple.launchd.peruser.501[158]: (com.apple.EscrowSecurityAlert) Unknown key: seatbelt-profiles
    22/11/13 8:51:13.666 am com.apple.launchd.peruser.501[158]: (com.apple.ReportCrash) Falling back to default Mach exception handler. Could not find: com.apple.ReportCrash.Self
    22/11/13 8:51:13.671 am launchctl[161]: com.apple.pluginkit.pkd: Already loaded
    22/11/13 8:51:13.672 am launchctl[161]: com.apple.sbd: Already loaded
    22/11/13 8:51:13.000 am kernel[0]: NTFS volume name BOOTCAMP, version 3.1.
    22/11/13 8:51:13.706 am distnoted[163]: # distnote server agent  absolute time: 42.115652323   civil time: Fri Nov 22 08:51:13 2013   pid: 163 uid: 501  root: no
    22/11/13 8:51:13.000 am kernel[0]: en1: 802.11d country code set to 'HK'.
    22/11/13 8:51:13.000 am kernel[0]: en1: Supported channels 1 2 3 4 5 6 7 8 9 10 11 12 13 36 40 44 48 52 56 60 64 100 104 108 112 116 120 124 128 132 136 140 149 153 157 161 165
    22/11/13 8:51:13.934 am com.apple.SecurityServer[17]: Session 100006 created
    22/11/13 8:51:13.976 am mds[60]: (Warning) Server: No stores registered for metascope "kMDQueryScopeComputerIndexed"
    22/11/13 8:51:14.003 am WindowServer[107]: **DMPROXY** (2) Found `/System/Library/CoreServices/DMProxy'.
    22/11/13 8:51:14.101 am WindowServer[107]: **DMPROXY** (2) Found `/System/Library/CoreServices/DMProxy'.
    22/11/13 8:51:14.118 am mds[60]: (Normal) Volume: volume:0x7f8bb2833800 ********** Bootstrapped Creating a default store:1 SpotLoc:(null) SpotVerLoc:(null) occlude:0 /Volumes/BOOTCAMP
    22/11/13 8:51:14.394 am WindowServer[107]: Display 0x042732c0: Unit 0; ColorProfile { 2, "Color LCD"}; TransferTable (256, 12)
    22/11/13 8:51:14.435 am WindowServer[107]: Display 0x042732c0: Unit 0; ColorProfile { 2, "Color LCD"}; TransferTable (256, 12)
    22/11/13 8:51:14.690 am com.apple.audio.DriverHelper[184]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class AMDRadeonX4000_AMDAccelDevice.
    22/11/13 8:51:14.691 am com.apple.audio.DriverHelper[184]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class AMDRadeonX4000_AMDAccelSharedUserClient.
    22/11/13 8:51:14.691 am com.apple.audio.DriverHelper[184]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class AMDSIVideoContext.
    22/11/13 8:51:14.691 am com.apple.audio.DriverHelper[184]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IGAccelDevice.
    22/11/13 8:51:14.691 am com.apple.audio.DriverHelper[184]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IGAccelSharedUserClient.
    22/11/13 8:51:14.691 am com.apple.audio.DriverHelper[184]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IGAccelVideoContextMain.
    22/11/13 8:51:14.691 am com.apple.audio.DriverHelper[184]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IGAccelVideoContextMedia.
    22/11/13 8:51:14.691 am com.apple.audio.DriverHelper[184]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IGAccelVideoContextVEBox.
    22/11/13 8:51:14.692 am com.apple.audio.DriverHelper[184]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IOHIDParamUserClient.
    22/11/13 8:51:14.692 am com.apple.audio.DriverHelper[184]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IOSurfaceRootUserClient.
    22/11/13 8:51:14.692 am com.apple.audio.DriverHelper[184]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class Gen6DVDContext.
    22/11/13 8:51:14.692 am com.apple.audio.DriverHelper[184]: The plug-in named AirPlay.driver requires extending the sandbox for the mach service named com.apple.AirPlayXPCHelper.
    22/11/13 8:51:14.810 am com.apple.audio.DriverHelper[184]: The plug-in named BluetoothAudioPlugIn.driver requires extending the sandbox for the IOKit user-client class IOBluetoothDeviceUserClient.
    22/11/13 8:51:14.810 am com.apple.audio.DriverHelper[184]: The plug-in named BluetoothAudioPlugIn.driver requires extending the sandbox for the mach service named com.apple.blued.
    22/11/13 8:51:14.811 am com.apple.audio.DriverHelper[184]: The plug-in named BluetoothAudioPlugIn.driver requires extending the sandbox for the mach service named com.apple.bluetoothaudiod.
    22/11/13 8:51:14.895 am coreaudiod[173]: 2013-11-22 08:51:14.894059 AM [AirPlay] AirPlay: Performing audio format change for 4 (AP Out) to PCM,  44100 Hz, 16-bit, Stereo
    22/11/13 8:51:14.984 am mds[60]: (Warning) Server: No stores registered for metascope "kMDQueryScopeComputer"
    22/11/13 8:51:15.108 am mtmfs[58]: MTM fs Mount server retrying ...
    22/11/13 8:51:15.109 am mtmfs[58]: MTM fs Mount server failed to start because of error -1
    22/11/13 8:51:15.131 am sharingd[190]: Starting Up...
    22/11/13 8:51:15.244 am com.apple.IconServicesAgent[194]: IconServicesAgent launched.
    22/11/13 8:51:15.554 am SystemUIServer[169]: Cannot find executable for CFBundle 0x7fb3f8551950 </System/Library/CoreServices/Menu Extras/Clock.menu> (not loaded)
    22/11/13 8:51:15.635 am SystemUIServer[169]: Cannot find executable for CFBundle 0x7fb3f854dd30 </System/Library/CoreServices/Menu Extras/Battery.menu> (not loaded)
    22/11/13 8:51:15.636 am SystemUIServer[169]: Cannot find executable for CFBundle 0x7fb3f851a2a0 </System/Library/CoreServices/Menu Extras/Volume.menu> (not loaded)
    22/11/13 8:51:15.788 am UserEventAgent[162]: Failed to copy info dictionary for bundle /System/Library/UserEventPlugins/alfUIplugin.plugin
    22/11/13 8:51:15.847 am WindowServer[107]: Display 0x042732c0: Unit 0; ColorProfile { 2, "Color LCD"}; TransferTable (256, 12)
    22/11/13 8:51:15.880 am revisiond[53]: objc[53]: Class GSLockToken is implemented in both /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/Supp ort/revisiond and /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/Gene rationalStorage. One of the two will be used. Which one is undefined.
    22/11/13 8:51:16.000 am kernel[0]: CODE SIGNING: cs_invalid_page(0x1000): p=218[GoogleSoftwareUp] final status 0x0, allow (remove VALID)ing page
    22/11/13 8:51:16.140 am SystemUIServer[169]: *** WARNING: -[NSImage compositeToPoint:operation:fraction:] is deprecated in MacOSX 10.8 and later. Please use -[NSImage drawAtPoint:fromRect:operation:fraction:] instead.
    22/11/13 8:51:16.140 am SystemUIServer[169]: *** WARNING: -[NSImage compositeToPoint:fromRect:operation:fraction:] is deprecated in MacOSX 10.8 and later. Please use -[NSImage drawAtPoint:fromRect:operation:fraction:] instead.
    22/11/13 8:51:16.609 am mtmfs[58]: MTM fs Mount server retrying ...
    22/11/13 8:51:16.610 am mtmfs[58]: MTM fs Mount server failed to start because of error -1
    22/11/13 8:51:16.887 am com.apple.SecurityServer[17]: Session 100009 created
    22/11/13 8:51:16.896 am accountsd[229]: assertion failed: 13A603: liblaunch.dylib + 25164 [FCBF0A02-0B06-3F97-9248-5062A9DEB32C]: 0x25
    22/11/13 8:51:17.009 am xpcproxy[232]: assertion failed: 13A603: xpcproxy + 3438 [EE7817B0-1FA1-3603-B88A-BD5E595DA86F]: 0x2
    22/11/13 8:51:17.037 am PlexHelper[217]: PlexHelper 0.7 starting up...
    22/11/13 8:51:17.079 am com.apple.launchd.peruser.501[158]: (com.apple.mrt.uiagent[205]) Exited with code: 255
    22/11/13 8:51:17.223 am apsd[83]: Unexpected connection from logged out uid 501
    22/11/13 8:51:17.392 am xpcproxy[235]: assertion failed: 13A603: xpcproxy + 3438 [EE7817B0-1FA1-3603-B88A-BD5E595DA86F]: 0x2
    22/11/13 8:51:17.960 am com.apple.time[162]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    22/11/13 8:51:17.966 am com.apple.time[162]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    22/11/13 8:51:18.110 am mtmfs[58]: MTM fs Mount server retrying ...
    22/11/13 8:51:18.144 am com.apple.dock.extra[195]: <NSXPCConnection: 0x7ff2a363a550>: received an undecodable message (no exported object to receive message). Dropping message.
    22/11/13 8:51:18.245 am com.apple.SecurityServer[17]: Session 100012 created
    22/11/13 8:51:18.252 am mtmfs[58]: MTM fs Mount server failed to start because of error -1
    22/11/13 8:51:18.504 am WiFiKeychainProxy[201]: [NO client logger] <Aug 30 2013 23:40:46> WIFICLOUDSYNC WiFiCloudSyncEngineCreate: created...
    22/11/13 8:51:18.505 am WiFiKeychainProxy[201]: [NO client logger] <Aug 30 2013 23:40:46> WIFICLOUDSYNC WiFiCloudSyncEngineRegisterCallbacks: WiFiCloudSyncEngineCallbacks version - 0, bundle id - com.apple.wifi.WiFiKeychainProxy
    22/11/13 8:51:18.558 am accountsd[229]: /SourceCache/Accounts/Accounts-336.9/ACDAuthenticationPluginManager.m - -[ACDAuthenticationPluginManager credentialForAccount:client:handler:] - 230 - The authentication plugin for account "[email protected]" (F14ADF42-657D-4C7F-B172-209A645CFA51) could not be found!
    22/11/13 8:51:18.558 am accountsd[229]: /SourceCache/Accounts/Accounts-336.9/ACDAccountStore.m - __62-[ACDAccountStore credentialForAccountWithIdentifier:handler:]_block_invoke389 - 857 - No plugin provides credentials for account [email protected]. Falling back to legacy behavior.
    22/11/13 8:51:18.891 am com.apple.NotesMigratorService[242]: Joined Aqua audit session
    22/11/13 8:51:18.000 am kernel[0]: MacAuthEvent en1   Auth result for: f8:1a:67:be:21:7a  MAC AUTH succeeded
    22/11/13 8:51:18.000 am kernel[0]: wlEvent: en1 en1 Link UP virtIf = 0
    22/11/13 8:51:18.000 am kernel[0]: AirPort: Link Up on en1
    22/11/13 8:51:18.000 am kernel[0]: en1: BSSID changed to f8:1a:67:be:21:7a
    22/11/13 8:51:18.000 am kernel[0]: AirPort: RSN handshake complete on en1
    22/11/13 8:51:19.112 am com.apple.internetaccounts[235]: com.apple.internetaccounts(235,0x1165e5000) malloc: *** error for object 0x9000000000000006: pointer being freed was not allocated
    *** set a breakpoint in malloc_error_break to debug
    22/11/13 8:51:19.210 am com.apple.iCloudHelper[232]: AOSKit ERROR: Config request failed, url=https://setup.icloud.com/configurations/init, requestHeaders=
        "Accept-Language" = "en-us";
        "X-Mme-Client-Info" = "<MacBookPro9,2> <Mac OS X;10.9;13A603> <com.apple.AOSKit/176>";
        "X-Mme-Country" = HK;
        "X-Mme-Nac-Version" = 11A457;
        "X-Mme-Timezone" = HKT;
    error=Error Domain=kCFErrorDomainCFNetwork Code=-1009 "The Internet connection appears to be offline." UserInfo=0x7fc5b0c3a1f0 {NSErrorFailingURLStringKey=https://setup.icloud.com/configurations/init, NSLocalizedDescription=The Internet connection appears to be offline., NSErrorFailingURLKey=https://setup.icloud.com/configurations/init}, httpStatusCode=-1, responseHeaders=
    (null)
    22/11/13 8:51:19.253 am mds[60]: (Warning) Server: No stores registered for metascope "kMDQueryScopeComputer"
    22/11/13 8:51:19.284 am mds[60]: (Warning) Server: No stores registered for metascope "kMDQueryScopeComputer"
    22/11/13 8:51:19.286 am mds[60]: (Warning) Server: No stores registered for metascope "kMDQueryScopeComputer"
    22/11/13 8:51:19.307 am gamed[227]: CKSoftwareMap: Registering with Daemon
    22/11/13 8:51:19.383 am com.apple.time[162]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    22/11/13 8:51:19.000 am kernel[0]: flow_divert_kctl_disconnect (0): disconnecting group 1
    22/11/13 8:51:19.610 am AddressBookSourceSync[225]: [CardDAVPlugin-ERROR] -getPrincipalInfo:[_controller supportsRequestCompressionAtURL:https://gareth%[email protected]/1021024264/principal///gareth%[email protected]/1021024264/principal/] Error Domain=NSURLErrorDomain Code=-1009 "The Internet connection appears to be offline." UserInfo=0x7feb9bd74760 {NSUnderlyingError=0x7feb9bf4cf60 "The Internet connection appears to be offline.", NSErrorFailingURLStringKey=https://gareth%[email protected]/1021024264/principal///gareth%[email protected]/1021024264/principal/, NSErrorFailingURLKey=https://gareth%[email protected]/1021024264/principal///gareth%[email protected]/1021024264/principal/, NSLocalizedDescription=The Internet connection appears to be offline.}
    22/11/13 8:51:19.752 am mtmfs[58]: MTM fs Mount server retrying ...
    22/11/13 8:51:19.752 am mtmfs[58]: MTM fs Mount server failed to start because of too many retries
    22/11/13 8:51:19.752 am mtmfs[58]: MTM fs Mount server failed, last error -1
    22/11/13 8:51:19.761 am com.apple.launchd[1]: (com.apple.mtmfs[58]) Exited with code: 99
    22/11/13 8:51:19.761 am com.apple.launchd[1]: (com.apple.mtmfs) Throttling respawn: Will start in 2 seconds
    22/11/13 8:51:19.786 am com.apple.iCloudHelper[232]: AOSKit ERROR: Config request failed, url=https://setup.icloud.com/configurations/init, requestHeaders=
        "Accept-Language" = "en-us";
        "X-Mme-Client-Info" = "<MacBookPro9,2> <Mac OS X;10.9;13A603> <com.apple.AOSKit/176>";
        "X-Mme-Country" = HK;
        "X-Mme-Nac-Version" = 11A457;
        "X-Mme-Timezone" = HKT;
    error=Error Domain=kCFErrorDomainCFNetwork Code=-1009 "The Internet connection appears to be offline." UserInfo=0x7fc5b0e02510 {NSErrorFailingURLStringKey=https://setup.icloud.com/configurations/init, NSLocalizedDescription=The Internet connection appears to be offline., NSErrorFailingURLKey=https://setup.icloud.com/configurations/init}, httpStatusCode=-1, responseHeaders=
    (null)
    22/11/13 8:51:19.790 am com.apple.iCloudHelper[232]: AOSKit ERROR: Setup request failed, appleID=1021024264, url=(null), requestHeaders=
    (null),
    error=Error Domain=AOSErrorDomain Code=1000 "The operation couldn’t be completed. (AOSErrorDomain error 1000.)" UserInfo=0x7fc5b0c3b950 {HttpStatusCode=0, DialogInfo={
        DialogType = Unknown;
    }}, httpStatusCode=0, responseHeaders=
    (null),
    responseBody=
    (null)
    22/11/13 8:51:19.856 am ReportCrash[244]: DebugSymbols was unable to start a spotlight query: spotlight is not responding or disabled.
    22/11/13 8:51:20.335 am airportd[85]: _doAutoJoin: Already associated to “Hawking”. Bailing on auto-join.
    22/11/13 8:51:20.461 am mds[60]: (Warning) Server: No stores registered for metascope "kMDQueryScopeComputer"
    22/11/13 8:51:20.498 am mds[60]: (Warning) Server: No stores registered for metascope "kMDQueryScopeComputer"
    22/11/13 8:51:21.221 am Dropbox[223]: PyObjCPointer created: at 0xaf3fc88 of type {OpaqueJSContext=}
    22/11/13 8:51:21.279 am mds[60]: (Warning) Server: No stores registered for metascope "kMDQueryScopeComputer"
    22/11/13 8:51:21.854 am mtmfs[254]: MTM fs Mount server failed to start because of error -1
    22/11/13 8:51:22.929 am syncdefaultsd[224]: *** remoteObjectProxyWithErrorHandler failed: Error Domain=NSCocoaErrorDomain Code=4097 "Couldn’t communicate with a helper application."; {
    22/11/13 8:51:22.931 am CalendarAgent[213]: *** remoteObjectProxyWithErrorHandler failed: Error Domain=NSCocoaErrorDomain Code=4097 "Couldn’t communicate with a helper application."; {
    22/11/13 8:51:22.932 am CalendarAgent[213]: *** remoteObjectProxyWithErrorHandler failed: Error Domain=NSCocoaErrorDomain Code=4097 "Couldn’t communicate with a helper application."; {
    22/11/13 8:51:22.936 am com.apple.launchd[1]: (com.apple.internetaccounts[235]) Job appears to have crashed: Abort trap: 6
    22/11/13 8:51:23.191 am ReportCrash[244]: Saved crash report for com.apple.internetaccounts[235] version 1.0 (1) to /Library/Logs/DiagnosticReports/com.apple.internetaccounts_2013-11-22-085123_Ga reths-MacBook-Pro.crash
    22/11/13 8:51:23.402 am mtmfs[254]: MTM fs Mount server retrying ...
    22/11/13 8:51:23.402 am mtmfs[254]: MTM fs Mount server failed to start because of error -1
    22/11/13 8:51:23.674 am mds_stores[114]: (Error) SecureStore: Access token 6 changed uid from -1 to 501
    22/11/13 8:51:24.971 am mtmfs[254]: MTM fs Mount server retrying ...
    22/11/13 8:51:24.972 am mtmfs[254]: MTM fs Mount server failed to start because of error -1
    22/11/13 8:51:26.529 am mtmfs[254]: MTM fs Mount server retrying ...
    22/11/13 8:51:26.529 am mtmfs[254]: MTM fs Mount server failed to start because of error -1
    22/11/13 8:51:26.698 am parentalcontrolsd[266]: StartObservingFSEvents [849:] -- *** StartObservingFSEvents started event stream
    22/11/13 8:51:26.821 am awacsd[81]: Exiting
    22/11/13 8:51:28.094 am mtmfs[254]: MTM fs Mount server retrying ...
    22/11/13 8:51:28.095 am mtmfs[254]: MTM fs Mount server failed to start because of error -1
    22/11/13 8:51:29.149 am AddressBookSourceSync[225]: [CardDAVPlugin-ERROR] -getPrincipalInfo:[_controller supportsRequestCompressionAtURL:https://gareth%[email protected]/1021024264/principal///gareth%[email protected]/1021024264/principal/] Error Domain=NSURLErrorDomain Code=-1009 "The Internet connection appears to be offline." UserInfo=0x7feb9be40570 {NSUnderlyingError=0x7feb9bf34660 "The Internet connection appears to be offline.", NSErrorFailingURLStringKey=https://gareth%[email protected]/1021024264/principal///gareth%[email protected]/1021024264/principal/, NSErrorFailingURLKey=https://gareth%[email protected]/1021024264/principal///gareth%[email protected]/1021024264/principal/, NSLocalizedDescription=The Internet connection appears to be offline.}
    22/11/13 8:51:29.668 am mtmfs[254]: MTM fs Mount server retrying ...
    22/11/13 8:51:29.669 am mtmfs[254]: MTM fs Mount server failed to start because of too many retries
    22/11/13 8:51:29.669 am mtmfs[254]: MTM fs Mount server failed, last error -1
    22/11/13 8:51:29.671 am com.apple.launchd[1]: (com.apple.mtmfs[254]) Exited with code: 99
    22/11/13 8:51:29.671 am com.apple.launchd[1]: (com.apple.mtmfs) Throttling respawn: Will start in 3 seconds
    22/11/13 8:51:30.316 am com.apple.IconServicesAgent[194]: main Failed to composit image for binding VariantBinding [0x211] flags: 0x8 binding: FileInfoBinding [0x111] - extension: jpg, UTI: public.jpeg, fileType: ????.
    22/11/13 8:51:30.317 am quicklookd[193]: Warning: Cache image returned by the server has size range covering all valid image sizes. Binding: VariantBinding [0xe03] flags: 0x8 binding: FileInfoBinding [0xd03] - extension: jpg, UTI: public.jpeg, fileType: ???? request size:16 scale: 1
    22/11/13 8:51:31.251 am com.apple.InputMethodKit.UserDictionary[273]: -[PFUbiquitySwitchboardEntryMetadata setUseLocalStorage:](760): CoreData: Ubiquity:  gareth~BC4B5F87-774E-5569-BE83-2926411DBD09:UserDictionary
    Using local storage: 1
    22/11/13 8:51:31.461 am com.apple.InputMethodKit.UserDictionary[273]: -[PFUbiquitySwitchboardEntryMetadata setUseLocalStorage:](760): CoreData: Ubiquity:  gareth~BC4B5F87-774E-5569-BE83-2926411DBD09:UserDictionary
    Using local storage: 0
    22/11/13 8:51:32.416 am com.apple.SecurityServer[17]: Session 100016 created
    22/11/13 8:51:32.810 am mtmfs[275]: MTM fs Mount server failed to start because of error -1
    22/11/13 8:51:33.957 am com.apple.IconServicesAgent[194]: main Failed to composit image for binding VariantBinding [0x115] flags: 0x8 binding: FileInfoBinding [0x215] - extension: mp3, UTI: public.mp3, fileType: MPG3.
    22/11/13 8:51:33.957 am quicklookd[193]: Warning: Cache image returned by the server has size range covering all valid image sizes. Binding: VariantBinding [0x1403] flags: 0x8 binding: FileInfoBinding [0x1303] - extension: mp3, UTI: public.mp3, fileType: MPG3 request size:16 scale: 1
    22/11/13 8:51:34.043 am configd[21]: network changed: DNS* Proxy
    22/11/13 8:51:34.043 am UserEventAgent[14]: Captive: [CNInfoNetworkActive:1655] en1: SSID 'Hawking' making interface primary (protected network)
    22/11/13 8:51:34.045 am UserEventAgent[14]: Captive: CNPluginHandler en1: Evaluating
    22/11/13 8:51:34.047 am UserEventAgent[14]: Captive: en1: Probing 'Hawking'
    22/11/13 8:51:34.058 am configd[21]: network changed: v4(en1!:192.168.1.107) DNS+ Proxy+ SMB
    22/11/13 8:51:34.077 am com.apple.IconServicesAgent[194]: main Failed to composit image for binding VariantBinding [0x217] flags: 0x8 binding: FileInfoBinding [0x117] - extension: ai, UTI: com.adobe.illustrator.ai-image, fileType: PDF .
    22/11/13 8:51:34.078 am quicklookd[193]: Warning: Cache image returned by the server has size range covering all valid image sizes. Binding: VariantBinding [0x1603] flags: 0x8 binding: FileInfoBinding [0x1503] - extension: ai, UTI: com.adobe.illustrator.ai-image, fileType: PDF  request size:16 scale: 1
    22/11/13 8:51:34.086 am configd[21]: setting hostname to "gareths-mbp"
    22/11/13 8:51:34.104 am UserEventAgent[14]: Captive: CNPluginHandler en1: Authenticated
    22/11/13 8:51:34.314 am com.apple.time[162]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    22/11/13 8:51:34.355 am ntpd[109]: proto: precision = 1.000 usec
    22/11/13 8:51:34.370 am mtmfs[275]: MTM fs Mount server retrying ...
    22/11/13 8:51:34.845 am com.apple.IconServicesAgent[194]: main Failed to composit image for binding VariantBinding [0x21b] flags: 0x8 binding: FileInfoBinding [0x119] - extension: m4a, UTI: com.apple.m4a-audio, fileType: ????.
    22/11/13 8:51:34.845 am quicklookd[193]: Warning: Cache image returned by the server has size range covering all valid image sizes. Binding: VariantBinding [0x1803] flags: 0x8 binding: FileInfoBinding [0x1703] - extension: m4a, UTI: com.apple.m4a-audio, fileType: ???? request size:16 scale: 1
    22/11/13 8:51:37.294 am com.apple.IconServicesAgent[194]: main Failed to composit image for binding VariantBinding [0x11b] flags: 0x8 binding: FileInfoBinding [0x21d] - extension: mp4, UTI: public.mpeg-4, fileType: ????.
    22/11/13 8:51:37.295 am quicklookd[193]: Warning: Cache image returned by the server has size range covering all valid image sizes. Binding: VariantBinding [0x1a03] flags: 0x8 binding: FileInfoBinding [0x1903] - extension: mp4, UTI: public.mpeg-4, fileType: ???? request size:16 scale: 1
    22/11/13 8:51:37.307 am com.apple.IconServicesAgent[194]: main Failed to composit image for binding VariantBinding [0x21f] flags: 0x8 binding: FileInfoBinding [0x11d] - extension: pptx, UTI: org.openxmlformats.presentationml.presentation, fileType: ????.
    22/11/13 8:51:37.308 am quicklookd[193]: Warning: Cache image returned by the server has size range covering all valid image sizes. Binding: VariantBinding [0x1c03] flags: 0x8 binding: FileInfoBinding [0x1b03] - extension: pptx, UTI: org.openxmlformats.presentationml.presentation, fileType: ???? request size:16 scale: 1
    22/11/13 8:51:37.581 am syncdefaultsd[224]: [AOSAccounts] : IAAppProvider::CopyAccountUIDForUser Timed out waiting
    22/11/13 8:51:37.000 am kernel[0]: fsevents: watcher dbfseventsd (pid: 288) - Using /dev/fsevents directly is unsupported.  Migrate to FSEventsFramework
    22/11/13 8:51:39.328 am digest-service[86]: digest-request: uid=0
    22/11/13 8:51:39.328 am digest-service[86]: digest-request: init request
    22/11/13 8:51:39.335 am digest-service[86]: digest-request: init return domain: MACBOOKPRO-BFDB server: GARETHS-MBP indomain was: <NULL>
    22/11/13 8:51:39.360 am com.apple.IconServicesAgent[194]: main Failed to composit image for binding VariantBinding [0x223] flags: 0x8 binding: FileInfoBinding [0x11f] - extension: ppt, UTI: com.microsoft.powerpoint.ppt, fileType: ????.
    22/11/13 8:51:39.360 am quicklookd[193]: Warning: Cache image returned by the server has size range covering all valid image sizes. Binding: VariantBinding [0x1e03] flags: 0x8 binding: FileInfoBinding [0x1d03] - extension: ppt, UTI: com.microsoft.powerpoint.ppt, fileType: ???? request size:16 scale: 1
    22/11/13 8:51:39.380 am digest-service[86]: digest-request: uid=0
    22/11/13 8:51:39.380 am digest-service[86]: digest-request: init request
    22/11/13 8:51:39.385 am digest-service[86]: digest-request: init return domain: GARETHS-MBP server: GARETHS-MBP indomain was: <NULL>
    22/11/13 8:51:39.585 am mtmfs[275]: mount failed for /Volumes/MobileBackups
    22/11/13 8:51:39.588 am com.apple.launchd[1]: (com.apple.mtmfs[275]) Exited with code: 22
    22/11/13 8:51:39.588 am com.apple.launchd[1]: (com.apple.mtmfs) Throttling respawn: Will start in 4 seconds
    22/11/13 8:51:41.759 am Dropbox[223]: ICARegisterForEventNotification-Has been deprecated since 10.5.  Calls to this function in the future may crash this application.  Please move to ImageCaptureCore
    22/11/13 8:51:45.429 am Google Chrome[308]: Internals of CFAllocator not known; out-of-memory failures via CFAllocator will not result in termination. http://crbug.com/45650
    22/11/13 8:51:45.000 am kernel[0]: CODE SIGNING: cs_invalid_page(0x1000): p=310[ksadmin] final status 0x0, allow (remove VALID)ing page
    22/11/13 8:51:45.000 am kernel[0]: CODE SIGNING: cs_invalid_page(0x1000): p=312[ksadmin] final status 0x0, allow (remove VALID)ing page
    22/11/13 8:51:45.719 am Google Chrome Helper[311]: Internals of CFAllocator not known; out-of-memory failures via CFAllocator will not result in termination. http://crbug.com/45650
    22/11/13 8:51:45.924 am Google Chrome Helper[313]: Internals of CFAllocator not known; out-of-memory failures via CFAllocator will not result in termination. http://crbug.com/45650
    22/11/13 8:51:46.092 am Google Chrome Helper[313]: Process unable to create connection because the sandbox denied the right to lookup com.apple.coreservices.launchservicesd and so this process cannot talk to launchservicesd. : LSXPCClient.cp #426 ___ZN26LSClientToServerConnection21setupServerConnectionEiPK14__CFDictionary_bl ock_invoke() q=com.apple.main-thread
    22/11/13 8:51:46.093 am Google Chrome Helper[313]: Process unable to create connection because the sandbox denied the right to lookup com.apple.coreservices.launchservicesd and so this process cannot talk to launchservicesd.
    22/11/13 8:51:46.112 am Google Chrome Helper[313]: CGSLookupServerRootPort: Failed to look up the port for "com.apple.windowserver.active" (1100)
    22/11/13 8:51:46.147 am Google Chrome Helper[314]: Internals of CFAllocator not known; out-of-memory failures via CFAllocator will not result in termination. http://crbug.com/45650
    22/11/13 8:51:46.349 am Google Chrome Helper[314]: Process unable to create connection because the sandbox denied the right to lookup com.apple.coreservices.launchservicesd and so this process cannot talk to launchservicesd. : LSXPCClient.cp #426 ___ZN26LSClientToServerConnection21setupServerConnectionEiPK14__CFDictionary_bl ock_invoke() q=com.apple.main-thread
    22/11/13 8:51:46.349 am Google Chrome Helper[314]: Process unable to create connection because the sandbox denied the right to lookup com.apple.coreservices.launchservicesd and so this process cannot talk to launchservicesd.
    22/11/13 8:51:46.361 am Google Chrome Helper[314]: CGSLookupServerRootPort: Failed to look up the port for "com.apple.windowserver.active" (1100)
    22/11/13 8:51:46.542 am Google Chrome Helper[315]: Internals of CFAllocator not known; out-of-memory failures via CFAllocator will not result in termination. http://crbug.com/45650
    22/11/13 8:51:46.597 am Google Chrome Helper[316]: Internals of CFAllocator not known; out-of-memory failures via CFAllocator will not result in termination. http://crbug.com/45650
    22/11/13 8:51:46.677 am Google Chrome Helper[317]: Internals of CFAllocator not known; out-of-memory failures via CFAllocator will not result in termination. http://crbug.com/45650
    22/11/13 8:51:46.682 am Google Chrome Helper[315]: Process unable to create connection because the sandbox denied the right to lookup com.apple.coreservices.launchservicesd and so this process cannot talk to launchservicesd. : LSXPCClient.cp #426 ___ZN26LSClientToServerConnection21setupServerConnectionEiPK14__CFDictionary_bl ock_invoke() q=com.apple.main-thread
    22/11/13 8:51:46.683 am Google Chrome Helper[315]: Process unable to create connection because the sandbox denied the right to lookup com.apple.coreservices.launchservicesd and so this process cannot talk to launchservicesd.
    22/11/13 8:51:46.694 am Google Chrome Helper[315]: CGSLookupServerRootPort: Failed to look up the port for "com.apple.windowserver.active" (1100)
    22/11/13 8:51:46.732 am Google Chrome Helper[316]: Process unable to create connection because the sandbox denied the right to lookup com.apple.coreservices.launchservicesd and so this process cannot talk to launchservicesd. : LSXPCClient.cp #426 ___ZN26LSClientToServerConnection21setupServerConnectionEiPK14__CFDictionary_bl ock_invoke() q=com.apple.main-thread
    22/11/13 8:51:46.732 am Google Chrome Helper[316]: Process unable to create connection because the sandbox denied the right to lookup com.apple.coreservices.launchservicesd and so this process cannot talk to launchservicesd.
    22/11/13 8:51:46.744 am Google Chrome Helper[316]: CGSLookupServerRootPort: Failed to look up the port for "com.apple.windowserver.active" (1100)
    22/11/13 8:51:46.823 am Google Chrome Helper EH[318]: Internals of CFAllocator not known; out-of-memory failures via CFAllocator will not result in termination. http://crbug.com/45650
    22/11/13 8:51:46.826 am Google Chrome Helper[317]: Process unable to create connection because the sandbox denied the right to lookup com.apple.coreservices.launchservicesd and so this process cannot talk to launchservicesd. : LSXPCClient.cp #426 ___ZN26LSClientToServerConnection21setupServerConnectionEiPK14__CFDictionary_bl ock_invoke() q=com.apple.main-thread
    22/11/13 8:51:46.826 am Google Chrome Helper[317]: Process unable to create connection because the sandbox denied the right to lookup com.apple.coreservices.launchservicesd and so this process cannot talk to launchservicesd.
    22/11/13 8:51:46.837 am Google Chrome Helper[317]: CGSLookupServerRootPort: Failed to look up the port for "com.apple.windowserver.active" (1100)
    22/11/13 8:51:47.060 am Google Chrome Helper[319]: Internals of CFAllocator not known; out-of-memory failures via CFAllocator will not result in termination. http://crbug.com/45650
    22/11/13 8:51:47.083 am xpcproxy[320]: assertion failed: 13A603: xpcproxy + 3438 [EE7817B0-1FA1-3603-B88A-BD5E595DA86F]: 0x2
    22/11/13 8:51:47.241 am Google Chrome Helper[319]: Process unable to create connection because the sandbox denied the right to lookup com.apple.coreservices.launchservicesd and so this process cannot talk to launchservicesd. : LSXPCClient.cp #426 ___ZN26LSClientToServerConnection21setupServerConnectionEiPK14__CFDictionary_bl ock_invoke() q=com.apple.main-thread
    22/11/13 8:51:47.241 am Google Chrome Helper[319]: Process unable to create connection because the sandbox denied the right to lookup com.apple.coreservices.launchservicesd and so this process cannot talk to launchservicesd.
    22/11/13 8:51:47.252 am Google Chrome Helper[319]: CGSLookupServerRootPort: Failed to look up the port for "com.apple.windowserver.active" (1100)
    22/11/13 8:51:47.566 am com.apple.NotesMigratorService[242]: Joined Aqua audit session
    22/11/13 8:51:47.599 am com.apple.time[162]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    22/11/13 8:51:47.719 am icbaccountsd[267]: -[ICBLocalDictionary writeLocalMapping:]: Status: Writing out local mapping to disk
    22/11/13 8:51:47.719 am icbaccountsd[267]: -[ICBLocalDictionary writeLocalMapping:]: Status: Ending writing out local mapping to disk
    22/11/13 8:51:47.719 am icbaccountsd[267]: -[ICBRemoteDictionary writeDevices]: Status: Writing out of devices
    22/11/13 8:51:47.720 am icbaccountsd[267]: -[ICBRemoteDictionary writeDevices]: Status: Ending writing out of device
    22/11/13 8:51:48.003 am Google Chrome Helper[321]: Internals of CFAllocator not known; out-of-memory failures via CFAllocator will not result in termination. http://crbug.com/45650
    22/11/13 8:51:48.135 am fontd[187]: BUG in libdispatch client: dispatch_mig_server: mach_msg() failed (ipc/send) invalid memory - 0x1000000c
    22/11/13 8:51:48.135 am Google Chrome Helper[314]: CoreText CopyFontsForRequest received mig IPC error (FFFFFECC) from font server
    22/11/13 8:51:48.135 am Google Chrome Helper[314]: CoreText CopyFontsForRequest received mig IPC error (FFFFFECC) from font server
    22/11/13 8:51:48.137 am Google Chrome Helper[314]: CoreText CopyFontsForRequest received mig IPC error (FFFFFECC) from font server
    22/11/13 8:51:48.137 am Google Chrome Helper[314]: CoreText CopyFontsForRequest received mig IPC error (FFFFFECC) from font server
    22/11/13 8:51:48.147 am Google Chrome Helper[314]: CoreText CopyFontsForRequest received mig IPC error (FFFFFECC) from font server
    22/11/13 8:51:48.148 am Google Chrome Helper[314]: CoreText CopyFontsForRequest received mig IPC error (FFFFFECC) from font server
    22/11/13 8:51:48.152 am Google Chrome Helper[314]: CoreText CopyFontsForRequest received mig IPC error (FFFFFECC) from font server
    22/11/13 8:51:48.152 am Google Chrome Helper[314]: CoreText CopyFontsForRequest received mig IPC error (FFFFFECC) from font server
    22/11/13 8:

    The progress bar usually means your Mac is booting into the Safe Boot startup, Safe Mode.
    Do you see "Safe Boot" in the upper right hand corner of the screen.

  • Problem with a progress bar for downloading attachment

    I display the progress bar for downloading attachments and it works fine … but when I am downloading some attachments I get the exception message:
    Exception in thread "main" com.sun.mail.util.DecodingException: BASE64Decoder: Error in encoded stream: needed 4 valid base64 characters but only got 1 before EOF, the 10 most recent characters were: "Q3w5ilxj2P"
    I found the explanation:
    Certain IMAP servers do not implement the IMAP Partial FETCH
    functionality properly. This problem typically manifests as corrupt
    email attachments when downloading large messages from the IMAP
    server. To workaround this server bug, set the
         "mail.imap.partialfetch"
    property to false. You'll have to set this property in the Properties
    object that you provide to your Session.
    http://java.sun.com/products/javamail/NOTES113.txt
    So I turned off partial fetch:
    Properties props = System.getProperties();
    props.setProperty("mail.store.protocol", "imaps");
    props.setProperty("mail.imaps.partialfetch", "false");
    Session session = Session.getDefaultInstance(props, null);
    Store store = session.getStore("imaps");
    store.connect("imap.gmail.com", "<username>","<password>");this solved the problem ….however the method getInputStream() from the Part class blocks the thread until the attachment is completely downloaded and it is impossible to get the information about the number of bytes which have been already downloaded from mailbox.
    Without this information it is impossible to display the progress bar. So is there a way to obtain this information and display the progress bar?
    Edited by: 911161 on 2012-01-31 10:55

    Try the answer I provided to your post on stackoverflow.com:
    http://stackoverflow.com/questions/9086700/how-to-displaly-progress-bar-for-downloading-attachment

  • Exchange 2010 SP3 UR8v2 - Outlook 2010 Sluggishness when sending an email - Green progress bar - I'm clueless

    Hi All,
    Really scratching my head on this one.
    Prior and Post UR8v2 patching, some folks were experiencing an issue with their Outlook in which they'd try to send an email and then the dreaded green progress bar shows up.
    Further issues today are Outlook 2010 pop-ups with the following:
    Certificate pop-up (our OWA Cert) with the "IP Address" instead of something like "webmail.contoso.com." 
    Outlook pop-up with "Allow this website to configure
    [email protected] server settings?"  The autodiscover link contained the IP Address instead of the "webmail.contoso.com"
    We have a 3 node CAS Array and a Cisco ASA that is serving up a VIP for "webmail.contoso.com."
    I'm not even sure where to being.  We are patching the CAS Boxes tonight.  The folks that have had issues were all on different databases.  I cannot seem to find a common ground.
    Any thoughts you have I'd be very grateful for,
    Mr Mister

    Creating new mail profiles didn't resolve the issue.  The issue would remain.  It's impressive how complex the environments can be nowadays...Unified Messaging, Airwatch & Activesync, Cisco Unity, Symantec Vaulting, AV, Lync, Symprex Mail Signatures,
    etc.
    We don't use cached profiles due to issues experienced over the years with Calendaring items going wonky.
    I dug into using ExMon.exe to try and view what was going on.  Didn't really see much that stuck out.
    Two of the CAS boxes had mail.que files that were around 1.3GB.  I did resolve that last Friday and I'm not really certain if that was the fix(in addition, I saw MS15-009 get deployed from Desktop).  I'm no longer receiving tickets regarding slowdown
    and it's near impossible to receive correspondence back from the Users.
    I also contacted Microsoft Support and we had plans to try the following:
    Add host file entry (C:Windows/System32/drivers/etc) for “mycasarray.domain.org” - pointing to ‘IP’ of any one CAS server (CAS1/ CAS2/ CAS3), individually on certain selected 2 or 3 internal client PCs to by-pass load balancer
    Note the exact time of issue with the user name and Outlook version
    Try sending multiple emails without any signature
    Check if able to send multiple emails in OWA without any delay or issue
    Try sending emails without any signature
    Try adding signature to Outlook email and check Outlook’s connection status to confirm if Outlook disconnected
    Try launching Outlook using switch ‘Outlook /safe’
    Check if any event getting triggered from Outlook source at time of issue in affected client PC (Application and System event logs)
    I'm wondering...is it plausible that a mail.que file larger than 1GB could've caused issues?  There were no space issues on the CAS boxes.
    Thanks,
    Mr Mister

  • Progress bar shows multiple messages when sending one.

    When I send a single email in Mail, the progress bar will often show "Sending 2 of 2 messages". Is it bundling and holding messages or sending multiples? I'm not sending to multiple addresses, unless my own and the recipient counts as two. Any explanation?

    are you using an IMAP account? if so it's probably just mail syncing your sent mailbox with the server.

  • Blue Progress Bar Doesn't Finish

    Greetings!
    For the past three weeks, Safari has been tempermental in downloading web pages. The blue progress bar will get maybe 1/3 across and stop. No twirling ball, no freeze-up, I can stop and refresh...eventually it works. Sometimes there is no problem at all.
    It seems to be affecting IE and Firefox as well. Mail has also seem to be having trouble sending messages periodically.
    I've cleared the cache, history, favicons...so maybe it's something from outside of Safari??
    Also, no Internet Regulating programs and I have a cable modem connection.
    Any help is greatly appreciated.
    Thanks!
    -Marty
    Dual 2 GHz PowerPC G5   Mac OS X (10.4.3)  

    I've been having similar problems - thought it was just me.

  • Help needed please, with Iphone stuck with apple picture and progress bar after software update attempted

    Help needed please, everytime I try to update the software version on my iphone it comes up with a message saying it could not be completed and is now frozen with the apple picture and progress bar on it. Do I unplug it and hope the macbook pro sees it again, I also stupidly did not back up before starting the download which I realise I will have to go back to the previous back up. This keeps happening, everytime I do this type of update, I'm starting to think I should just give up on updating my software on the Iphone. I thought it was happening because I was using a window based computer to do the updates, this time I used my Macbook Pro. Please somebody help

    ljm17 wrote:
    ...This keeps happening, everytime I do this type of update, I...
    Then you should know what you need to do... If you don't remember...
    See Here  >  http://support.apple.com/kb/HT1808

  • Problem installating Snow Leopard on old Macbook Pro with Intel Core 2 Duo. After creating partition on internal hard disk (Extended Journaled), installation starts but stops at half of the progress bar. Screen asking Restart appears.

    Hello:
    I have tried installing Snow Leopard via the installation disc on a Macbook Pro (2007) with an Intel Core 2 Duo, but I the installation has failed more than 5 times.
    I have first formatted and partitioned the internal hard disk with Mac Os Extended Journal format.
    Once the installation starts, it starts without a problem unti lthe progress bar gest until half completed then a screen asking for a Computer Restart shows up.
    It asks to press the power button for some time until it the computer shuts down and then, press again to turn it on.
    Once turned on, the installation disc gets readed, the installation screen appears again and asks again to start the whole installation process form the beginning.

    Then you have a Hardware Problem.
    Your system is Crashing part way through the install and Re-Booting because of the crash.
    Could be the drive itself or it could be some other hardware part in your system. Like the RAM.
    To check if it is the internal drive connect an External drive to the system by USB and do the install on that external. If the install completes then it more then likely the drive is bad. If it crashes again then it is more then likely some other piece of hardware in your system.

  • After updating to the latest version of Firefox on my Mac there is no progress bar for the page load. I really miss this feature and can't seem to find a way to obtain it.

    The page load progress bar that was on the lower right of the window is no longer there. After updating to the latest version of Firefox on my Mac there is no progress bar for the page load. I really miss this feature and can't seem to find a way to obtain it. The tab has a circular progress wheel but this is useless for determining a stuck or slow loading page.
    PLEASE NOTE: I am typing this in from a Windows based work computer but am asking about my Apple MacBook Pro that i use at home.

    Firefox 4 saves the previous session automatically, so there is no longer need for the dialog asking if you want to save the current session.<br />
    You can use "Firefox > History > Restore Previous Session" to get the previous session at any time.<br />
    There is also a "Restore Previous Session" button on the default <b>about:home</b> Home page.<br />
    Another possibility is to use:
    * [http://kb.mozillazine.org/Menu_differences Firefox (Tools) > Options] > General > Startup: "When Firefox Starts": "Show my windows and tabs from last time"

Maybe you are looking for

  • Navigation Attribute is not getting displayed as in Masterdata Table

    Hi All, I have an infoobject "YDOCUMENT" compoundedd with "S_ORD_ITEM". Also i have added few attribute (Reason for rejection and Order Status) for the same. This infoobject is getting updated through data load from Sales Order Item level DSO and it

  • IPhoto 6.0.6 Hangs Every Time

    Every time I try to open iphoto (6.0.6) it crashes. It gets to "loading photos..." then disappears and I then get the "application quit unexpectedly" dialog box. It's been doing this ever since I first got the mac (mini, 1.66 Intel core duo, 512MB, O

  • Output of int value to char

    hi, I have written the following code class LiteralTest      public static void main(String[] args)           System.out.println("Hello World!");           int true1=100;           float flt = 17.2345678f;           short sh = (int)500;           cha

  • Audio stopped after rendering

    After I render my project when it went to play back the sound had gone, you can still see the audio levels and you can here the sound if you watch the clips in the import section but there is no sound on the actual project. I have checked that it is

  • How do I remove/manage a custom color swatch?

    My color window is getting overly crowded with custom color swatches. How do I remove a custom color swatch?