Using POP3, possible downloading mails without the attachment?

Hello,
I am constructing an email client, with limited system resources, using JavaMail and pop3. I can only download mails that are about 8kb. So if an email has a large attachment I can not download it. I am however still interested in what the textual body of the email says. I know that the header information can be downloaded without downloading the whole email but can the textual body be downloaded without downloading the attachment?

Hi,
As far as I know, you are unable to do this with the standard POP transport protocol since the attachement is actually a part of the body (encoded, multi-part), so there is no specific way for the server to know where the text body ends and the attachement body starts (most servers are mail content ignorant).
I suppose you could try to intercept the incoming TCP data and cut the communication short the moment you intercept a part seperator (the attachements normaly are at the end of the message .. yet this is not guaranteed as far as the RFC is concerned).
play around with:
com.sun.mail.pop3.POP3Message.getContentStream()
hope this helps a little.
frgd,
J.

Similar Messages

  • Looking to run windows on my MBPro through Bootcamp or Parallels, but would like to use a downloaded Windows 7, is it possible to install without the Windows Disc?

    Looking to run windows on my MBPro through Bootcamp or Parallels, but would like to use a downloaded Windows 7, is it possible to install without the Windows Disc?
    Need to set up a workstation on my MBPro that will only run on Windows. Im willing to use Bootcamp or Parallels to see what works best. Need to get this set up this week to enable working from home on my MB - rural and hoping to buy Windows 7 online - am I able to get windows working through either bootcamp or Parallels without the actual Windows disc? Bootcamp set up guide calls for a disc.

    Welcome to Apple Support Communities
    First, the answer to your question is yes, it IS possible to install Windows in Parallels without a disc, using an .iso image file.
    Boot Camp since OS X 10.8 also installs Windows without a disc: https://discussions.apple.com/thread/4889551?tstart=0
    Parallels has complete documentation, series of forums, and a knowledgebase. You can also download the current release of Parallels 9 and try it for free for a few weeks before you decide to purchase it.
    The Parallels Desktop for Mac product page: http://www.parallels.com/products/desktop/
    The Desktop for Mac forums: http://forum.parallels.com/forumdisplay.php?58-Parallels-Desktop-for-Mac
    Documentation: http://www.parallels.com/support/desktop-virtualization/desktop/#c12970
    The Knowledgebase for Desktop for Mac: http://kb.parallels.com
    The primary difference between a Boot Camp installation and a Parallels installation is that in the Boot Camp installation, you're installing Windows into a separate partition on your internal mass storage device (hard drive or SSD) and then rebooting your Mac directly into Windows.
    In Parallels, you're always running OS X on the Mac and Parallels is running a Windows virtual machine.
    Not to get too technical here, but it is also possible for Parallels to run an installed Windows Boot Camp partition as a virtual machine. If you're evaluating system performance with a trial copy, that might be the way to go, because you only have to install Windows once on Boot Camp as a dual-boot system, then install Parallels Desktop and run the Boot Camp partition as the virtual machine.
    There is a performance difference between the two, with the Boot Camp Windows installation being faster, but without the convenience of running both Mac and Windows applications simultaneously offered by Parallels. Sometimes that convenience outweighs a performance hit.
    I can't give you more Mavericks and Parallels 9 specifics, because I'm currently running Windows 7 with Parallels 7 on OS X 10.8.5. Parallels 7 will not run on OS X 10.9 Mavericks.
    I've been using Parallels (to run a few old rarely-used WIndows applications with features that would require a steep learning curve and major expense to purchase and learn a similar Mac app) occasionally since Parallels 3 and Windows XP. With each new release of OS X, each new release of Parallels, and each new Windows release, there are ALWAYS 'early adopter' bugs that get worked out over time.
    Message was edited by: kostby

  • How to send image file through mail without   any attachment

    Plz tell  me how to send image file through mail without any attachment  ( i mean not converting  that image into pdf or any format )  i want to send that text or image  through mail .

    Hi Sandeep,
    I think you can setup the type of email in Shared office Settings in transaction S016.
    There is an option called <Preset document classes>
    You choose this pushbutton to branch to the maintenance screen for the document classes that are directly displayed to users in the Business Workplace for selection when they use the Create function. The name under which the documents are displayed can also be maintained.
    http://help.sap.com/saphelp_nw70/helpdata/en/6c/69c30f418d11d1896e0000e8322d00/content.htm
    Haven't tried it though.
    Regards,
    Siddhesh

  • Only 274 mails are coming when using pop3 with java mail

    Only 274 mails are coming from GMAIL when using pop3 with java mail. but there are more than 3000 mails.
    I'm not getting the reason, code is given below:
    public static void main(String[] args) {
            // SUBSTITUTE YOUR ISP's POP3 SERVER HERE!!!
    //        String host = "pop.bizmail.yahoo.com";
    //        final String user = "[email protected]";
    //        final String password = "xxx";
            String host = "pop.gmail.com";
            final String user = "gauravjlj";
            final String password = "xxx";
            String subjectSubstringToSearch = "Test E-Mail through Java";
            try {
                 Properties prop = new Properties();
                prop.setProperty("mail.pop3.socketFactory.class",
                                            "javax.net.ssl.SSLSocketFactory");
                prop.setProperty("mail.pop3.socketFactory.fallback", "false");
                prop.setProperty("mail.pop3.port", "995");
                prop.setProperty("mail.pop3.socketFactory.port", "995");
                prop.put("mail.pop3.host", host);
                prop.put("mail.store.protocol", "pop3");
                Session session = Session.getDefaultInstance(prop);
                Store store = session.getStore();
                System.out.println("your ID is : "+ user);
                System.out.println("Connecting...");
                store.connect(host, user, password);
                System.out.println("Connected...");
                // Get "INBOX"
                Folder fldr = store.getFolder("INBOX");
                fldr.open(Folder.READ_ONLY);
                int count = fldr.getMessageCount();
                System.out.println(count  + " total messages");
                // Message numebers start at 1
                for(int i = 1; i <= count; i++) {
                                            // Get  a message by its sequence number
                    Message m = fldr.getMessage(i);
                    // Get some headers
                    Date date = m.getSentDate();
                    Address [] from = m.getFrom();
                    String subj = m.getSubject();
                    String mimeType = m.getContentType();
                    System.out.println(date + "\t" + from[0] + "\t" +
                                        subj + "\t" + mimeType);
                // Search for e-mails by some subject substring
                String pattern = subjectSubstringToSearch;
                SubjectTerm st = new SubjectTerm(pattern);
                // Get some message references
                Message [] found = fldr.search(st);
                System.out.println(found.length +
                                    " messages matched Subject pattern \"" +
                                    pattern + "\"");
                for (int i = 0; i < found.length; i++) {
                    Message m = found;
    // Get some headers
    Date date = m.getSentDate();
    Address [] from = m.getFrom();
    String subj = m.getSubject();
    String mimeType = m.getContentType();
    System.out.println(date + "\t" + from[0] + "\t" +
    subj + "\t" + mimeType);
    Object o = m.getContent();
    if (o instanceof String) {
    System.out.println("**This is a String Message**");
    System.out.println((String)o);
    else if (o instanceof Multipart) {
    System.out.print("**This is a Multipart Message. ");
    Multipart mp = (Multipart)o;
    int count3 = mp.getCount();
    System.out.println("It has " + count3 +
    " BodyParts in it**");
    for (int j = 0; j < count3; j++) {
    // Part are numbered starting at 0
    BodyPart b = mp.getBodyPart(j);
    String mimeType2 = b.getContentType();
    System.out.println( "BodyPart " + (j + 1) +
    " is of MimeType " + mimeType);
    Object o2 = b.getContent();
    if (o2 instanceof String) {
    System.out.println("**This is a String BodyPart**");
    System.out.println((String)o2);
    else if (o2 instanceof Multipart) {
    System.out.print(
    "**This BodyPart is a nested Multipart. ");
    Multipart mp2 = (Multipart)o2;
    int count2 = mp2.getCount();
    System.out.println("It has " + count2 +
    "further BodyParts in it**");
    else if (o2 instanceof InputStream) {
    System.out.println(
    "**This is an InputStream BodyPart**");
    } //End of for
    else if (o instanceof InputStream) {
    System.out.println("**This is an InputStream message**");
    InputStream is = (InputStream)o;
    // Assumes character content (not binary images)
    int c;
    while ((c = is.read()) != -1) {
    System.out.write(c);
    // Uncomment to set "delete" flag on the message
    //m.setFlag(Flags.Flag.DELETED,true);
    } //End of for
    // "true" actually deletes flagged messages from folder
    fldr.close(true);
    store.close();
    catch (MessagingException mex) {
    // Prints all nested (chained) exceptions as well
    mex.printStackTrace();
    catch (IOException ioex) {
    ioex.printStackTrace();
    Please tell me.
    Thanks                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

    Is it possible that GMail only allows access to untagged emails via POP3? Or only to emails from the last x days?
    POP3 is the older email retrieval protocol (IMAP4 is the more current one) and only has very limited support for folders (or anything but a single inbox, really). It's quite common that POP3 only allows access to a subset of all emails stored by a provider.

  • How can one send email-sized photo files as attachments in Mail, without the photos appearing within the email?s

    How can one send email-sized photo files as attachments in Apple Mail, without the photos appearing in the body of the email?  If it can be done, it's not at all obvious, at least not to me.  Thanks for any help you can provide.

    The "View as icon" option shrinks the photo to an icon in the sender's Apple Mail, but how it appears to the recipient varies dependingy on what e-mail client he/she uses.
    Using Apple Mail 5.0 (the Lion version) at both ends, the sender can use the "View as icon" option to shrink his view of the photo to an icon, but the recipient also using Apple Mail 5.0 still sees the full photo in line with the message text. The recipient can then use the "View as icon" option to shrink it to an icon, but I don't think that's not what jackofarabia is looking for.
    As far as I know there is no way in the current Apple Mail to do what jackofarabia wants. There should be, but there isn't.

  • Is there a way I can use my external hard drive without the files being transferred on to my computer? as like like my iTunes music being on my hard drive without them being copied onto my computers hard drive ?

    is there a way I can use my external hard drive without the files being transferred on to my computer? as like like my iTunes music being on my hard drive without them being copied onto my computers hard drive ? because i dont have that much memory and i wanted my external hard drive to be the source for my music files and not my computer.

    Many users keep their iTunes libraries on external drives. You just have to remember to connect and power up the drive before launching iTunes.
    iTunes for Mac: Moving your iTunes Media folder:
      http://support.apple.com/kb/HT1449 

  • Is it possible for Mail on the Macbook to Mirror your Hotmail account.

    Is it possible for Mail on the Macbook to Mirror your Hotmail account,
    so that if I read or delete an email in Mail on Mac it will do the same in Hotmail? 
    Sorry if this has been asked before I'm new to Apple.

    No, the email address is the "username" for the Sync account, you need a different email address for each Sync account that you setup.

  • How can I download Lion without the app store?

    My friend bought his Macbook pro summer 2009 so whatever operating system that it came with (10.5 lepord I believe) did not download the app store when it updated. Now he wants to put lion on his macbook pro. Is there a way to download it without the app store? If not, how can he get the app store?
    Any help would be great!

    Yes, you need to upgrade to Snow Leopard before upgrading to Lion. You can purchase Snow Lion from the online Apple Store, a brick-and-mortar Apple Store, or from Amazon.
    Then you will have the App Store application and you can upgrade to Lion.
    Clinton

  • App Store requires 10.9 but I cannot download Mavericks without the App Store.  HELP!

    I did a fresh install of 10.6 and the upgrades got me to 10.6.8 but the included App Store from the upgrades requires 10.9.  I cannot download Mavericks without the App Store.  How do I find an old version of App Store or install Mavericks without the App Store?  HELP!

    Click the Apple  top left in your screen.
    From the drop down menu click:  About This Mac
    Double check to make sure you see: v10.6.8
    Make sure your Mac can run Mavericks >  OS X Mavericks: System Requirements
    Read prior to upgrading to Mavericks >  Upgrading to 10.7 and above, don't forget Rosetta!

  • Can't download mail from the server icloud account

    My icloud mail account will not download messages. I'm unable to access my inbox.
    The message displayed when I push to download is can not connect to server.

    Does your ISP offer a separate account for additional email addresses or are additional email addresses what is called an "alias" account or address to the primary account?
    A separate account for an additional email address with the same provider has its own user name.
    An "alias" account or email address to a primary account shares the same user name and password as the primary account.
    You can created separate accounts in Mail with the same provider which has the same incoming mail server and you can use the same password for both accounts as long as each account has its own user name which is usually the portion of the email address in front of the @ sign and with some providers it is the entire email address.
    I have set up the 2 email accounts within Mail, but when
    trying to edit and save the "Advanced" preferences for my
    2nd email account, I get an error message saying something
    to the effect: " [email protected] is already being
    used by another account".
    This error message indicates the additional email account you created in Mail shares the same user name and password as the primary/existing account which you cannot create as a separate account in Mail.
    If so, there is a way to access an alias account or address to a primary account without creating it as a separate account.
    If so, do not delete the additional account created yet.

  • Downloading iOS without iPhone attached AND on another computer

    This is a double-barreled question ...
    Can iOS updates be downloaded without the iPhone attached?
    And can they be at least downloaded on a computer that's not married to the iPhone?? And then transferred to the marital home for installation???
    Sounds all very improper, but ...
    All advice gratefully received.
    Michael

    Hi,
    Can iOS updates be downloaded without the iPhone attached?
    No.
    And can they be at least downloaded on a computer that's not married to the iPhone??
    No.
    Bottom line is the iPhone must be connected to a computer and synced using your iTunes account. When you get that far, launch iTunes then from the menu bar click Store / Authorize This Computer.
    Then sync the iPhone using iTunes.
    If this is a Windows based computer, you may need to disable anti virus software and turn off the Firewall first before syncing.
    Carolyn
    Message was edited by: Carolyn

  • Could n't download Mail with large attachment ( 15MB)

    Hi,
    We have an Archive Agent application which downloads mails from GroupWise server 6.5. We are using Javamail API for downloading messages and using IMAP. Everything works excellent except when it finds mail with attachment more than 15MB. It stops there at message.writeTo(OutPutFile) where I am trying to write into an eml file.
    And also it creates eml file of 0kb with no sender, no subject, no receiver information.
    Please any one can help me how to solve this issue.
    Thanks
    Valli

    I've seen several IMAP bugs in GroupWise - make sure you have all
    the latest patches.
    Try setting the mail.imap.partialfetch property to "false".
    If none of that helps, please send the protocol trace to [email protected]
    and we'll help you figure out what's wrong.

  • I have a MBP from 2008 (before unibody) and when i try to use apps such as Mail and the Mac App Store, they crash when i click on the links (to purchase something). I found it only happened after i updated to 10.7.4. can some1 please tell me what i can do

    Hi everyone, I have a macbook pro from 2008 which is the model before they became unibody. I have been having trouble using some of the built-in apps ever since i updated to 10.7.4. I cant use mail or the Mac App store becuase when i go to click on a link to purchase something in the Mac App Store of create a new email in Mail, the app just crashes. I am then asked to reopen the app and i try to do the same thing again and they same thing happens. Its really painful as i want to download applications and access my mail on my mac. Could you guys please get back to me on with somethings that i could try to get these apps working again.
    Thanks

    Hi Richard,
    these are the things for when mail quits
    here are the things that come from the console app
    I also copied the words that came in the window when an app quits
    Process:         Mail [2229]
    Path:            /Applications/Mail.app/Contents/MacOS/Mail
    Identifier:      com.apple.mail
    Version:         5.2 (1278)
    Build Info:      Mail-1278000000000000~1
    Code Type:       X86-64 (Native)
    Parent Process:  launchd [109]
    Date/Time:       2012-07-23 18:38:28.318 +0800
    OS Version:      Mac OS X 10.7.4 (11E53)
    Report Version:  9
    Interval Since Last Report:          159173 sec
    Crashes Since Last Report:           3
    Per-App Interval Since Last Report:  61 sec
    Per-App Crashes Since Last Report:   2
    Anonymous UUID:                      903F8ACA-456A-4BFE-ACC9-1D5C31F6FF48
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_BAD_ACCESS (SIGBUS)
    Exception Codes: KERN_PROTECTION_FAILURE at 0x00007fff7b534568
    VM Regions Near 0x7fff7b534568:
        __DATA                 00007fff7b4c1000-00007fff7b4c4000 [   12K] rw-/rwx SM=COW  /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    --> __DATA                 00007fff7b4c4000-00007fff7b571000 [  692K] rw-/rwx SM=COW  /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
        __DATA                 00007fff7b571000-00007fff7b57d000 [   48K] rw-/rwx SM=COW  /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
    Application Specific Information:
    objc[2229]: garbage collection is OFF
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   ???                                     0x00007fff7b534568 OBJC_CLASS_$_NSProcessInfo + 0
    1   com.apple.mail                          0x0000000104401fe2 0x104365000 + 643042
    2   com.apple.mail                          0x0000000104401f1a 0x104365000 + 642842
    3   com.apple.AppKit                        0x00007fff8b2682ce -[NSWindow sendEvent:] + 2088
    4   com.apple.mail                          0x000000010442b9f9 0x104365000 + 813561
    5   com.apple.AppKit                        0x00007fff8b202a55 -[NSApplication sendEvent:] + 5593
    6   com.apple.mail                          0x00000001043e4d1b 0x104365000 + 523547
    7   com.apple.AppKit                        0x00007fff8b1990c6 -[NSApplication run] + 555
    8   com.apple.AppKit                        0x00007fff8b415244 NSApplicationMain + 867
    9   com.apple.mail                          0x000000010443d52c 0x104365000 + 886060
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib                  0x00007fff89dca7e6 kevent + 10
    1   libdispatch.dylib                       0x00007fff924e278a _dispatch_mgr_invoke + 923
    2   libdispatch.dylib                       0x00007fff924e131a _dispatch_mgr_thread + 54
    Thread 2:: -[LibraryIMAPStore openSynchronously]  Dispatch queue: com.apple.root.default-overcommit-priority
    0   libsystem_kernel.dylib                  0x00007fff89dca7e6 kevent + 10
    1   libsystem_info.dylib                    0x00007fff96c1cfe5 _mdns_search + 1537
    2   libsystem_info.dylib                    0x00007fff96c1d8b7 mdns_addrinfo + 615
    3   libsystem_info.dylib                    0x00007fff96c1e151 search_addrinfo + 152
    4   libsystem_info.dylib                    0x00007fff96c21a1c si_addrinfo + 1614
    5   libsystem_info.dylib                    0x00007fff96c19795 getaddrinfo + 166
    6   com.apple.SystemConfiguration           0x00007fff90d9c061 __SCNetworkReachabilityGetFlags + 2037
    7   com.apple.SystemConfiguration           0x00007fff90d9b841 SCNetworkReachabilityGetFlags + 163
    8   com.apple.MessageFramework              0x00007fff925ae764 -[NetworkController isHostReachable:] + 141
    9   com.apple.MessageFramework              0x00007fff925addc6 -[_NSSocket connectToHost:withPort:protocol:] + 188
    10  com.apple.MessageFramework              0x00007fff925ad24d -[Connection _connectUsingHostname:onPort:securityLayerType:clientIdentity:accountClass:] + 747
    11  com.apple.MessageFramework              0x00007fff925acdf6 -[Connection _connectUsingAccount:securityLayerType:] + 224
    12  com.apple.MessageFramework              0x00007fff925aca52 -[Connection connectAndSetSecurityLayerUsingAccount:] + 181
    13  com.apple.MessageFramework              0x00007fff925ac91d -[Connection connectUsingAccount:] + 80
    14  com.apple.MessageFramework              0x00007fff925ac19d -[IMAPAccount _connectAndAuthenticate:] + 476
    15  com.apple.MessageFramework              0x00007fff925aac42 -[IMAPAccount _recoverFromConnectionlessState] + 136
    16  com.apple.MessageFramework              0x00007fff925aa8bd -[IMAPAccount _getPotentialGatewayForMailbox:options:createdNewConnection:needsSelect:] + 159
    17  com.apple.MessageFramework              0x00007fff925aa612 -[IMAPAccount _gatewayForMailboxUid:name:options:] + 166
    18  com.apple.MessageFramework              0x00007fff925aa4ec -[IMAPAccount gatewayForStore:options:] + 126
    19  com.apple.MessageFramework              0x00007fff925aa32f -[LibraryIMAPStore _gatewayCreateIfNeeded:options:] + 131
    20  com.apple.MessageFramework              0x00007fff925a50e5 -[LibraryIMAPStore openSynchronouslyUpdatingMetadata:withOptions:] + 283
    21  com.apple.CoreFoundation                0x00007fff8a367efc __invoking___ + 140
    22  com.apple.CoreFoundation                0x00007fff8a367d94 -[NSInvocation invoke] + 132
    23  com.apple.MessageFramework              0x00007fff92590f68 -[MonitoredInvocation invoke] + 196
    24  com.apple.MessageFramework              0x00007fff9256da79 -[ThrowingInvocationOperation main] + 33
    25  com.apple.MessageFramework              0x00007fff9256da1f -[_MFInvocationOperation main] + 449
    26  com.apple.Foundation                    0x00007fff9584a6b4 -[__NSOperationInternal start] + 705
    27  com.apple.Foundation                    0x00007fff9585d912 ____NSOQSchedule_block_invoke_2 + 124
    28  libdispatch.dylib                       0x00007fff924e0a86 _dispatch_call_block_and_release + 18
    29  libdispatch.dylib                       0x00007fff924e1965 _dispatch_worker_thread2 + 255
    30  libsystem_c.dylib                       0x00007fff89e243da _pthread_wqthread + 316
    31  libsystem_c.dylib                       0x00007fff89e25b85 start_wqthread + 13
    Thread 3:: -[LibraryIMAPStore openSynchronously]  Dispatch queue: com.apple.root.default-overcommit-priority
    0   libsystem_kernel.dylib                  0x00007fff89dca7e6 kevent + 10
    1   libsystem_info.dylib                    0x00007fff96c1cfe5 _mdns_search + 1537
    2   libsystem_info.dylib                    0x00007fff96c1d8b7 mdns_addrinfo + 615
    3   libsystem_info.dylib                    0x00007fff96c1e151 search_addrinfo + 152
    4   libsystem_info.dylib                    0x00007fff96c21a1c si_addrinfo + 1614
    5   libsystem_info.dylib                    0x00007fff96c19795 getaddrinfo + 166
    6   com.apple.SystemConfiguration           0x00007fff90d9c061 __SCNetworkReachabilityGetFlags + 2037
    7   com.apple.SystemConfiguration           0x00007fff90d9b841 SCNetworkReachabilityGetFlags + 163
    8   com.apple.MessageFramework              0x00007fff925ae764 -[NetworkController isHostReachable:] + 141
    9   com.apple.MessageFramework              0x00007fff925addc6 -[_NSSocket connectToHost:withPort:protocol:] + 188
    10  com.apple.MessageFramework              0x00007fff925ad24d -[Connection _connectUsingHostname:onPort:securityLayerType:clientIdentity:accountClass:] + 747
    11  com.apple.MessageFramework              0x00007fff925acdf6 -[Connection _connectUsingAccount:securityLayerType:] + 224
    12  com.apple.MessageFramework              0x00007fff925aca52 -[Connection connectAndSetSecurityLayerUsingAccount:] + 181
    13  com.apple.MessageFramework              0x00007fff925ac91d -[Connection connectUsingAccount:] + 80
    14  com.apple.MessageFramework              0x00007fff925ac19d -[IMAPAccount _connectAndAuthenticate:] + 476
    15  com.apple.MessageFramework              0x00007fff925aac42 -[IMAPAccount _recoverFromConnectionlessState] + 136
    16  com.apple.MessageFramework              0x00007fff925aa8bd -[IMAPAccount _getPotentialGatewayForMailbox:options:createdNewConnection:needsSelect:] + 159
    17  com.apple.MessageFramework              0x00007fff925aa612 -[IMAPAccount _gatewayForMailboxUid:name:options:] + 166
    18  com.apple.MessageFramework              0x00007fff925aa4ec -[IMAPAccount gatewayForStore:options:] + 126
    19  com.apple.MessageFramework              0x00007fff925aa32f -[LibraryIMAPStore _gatewayCreateIfNeeded:options:] + 131
    20  com.apple.MessageFramework              0x00007fff925a50e5 -[LibraryIMAPStore openSynchronouslyUpdatingMetadata:withOptions:] + 283
    21  com.apple.CoreFoundation                0x00007fff8a367efc __invoking___ + 140
    22  com.apple.CoreFoundation                0x00007fff8a367d94 -[NSInvocation invoke] + 132
    23  com.apple.MessageFramework              0x00007fff92590f68 -[MonitoredInvocation invoke] + 196
    24  com.apple.MessageFramework              0x00007fff9256da79 -[ThrowingInvocationOperation main] + 33
    25  com.apple.MessageFramework              0x00007fff9256da1f -[_MFInvocationOperation main] + 449
    26  com.apple.Foundation                    0x00007fff9584a6b4 -[__NSOperationInternal start] + 705
    27  com.apple.Foundation                    0x00007fff9585d912 ____NSOQSchedule_block_invoke_2 + 124
    28  libdispatch.dylib                       0x00007fff924e0a86 _dispatch_call_block_and_release + 18
    29  libdispatch.dylib                       0x00007fff924e1965 _dispatch_worker_thread2 + 255
    30  libsystem_c.dylib                       0x00007fff89e243da _pthread_wqthread + 316
    31  libsystem_c.dylib                       0x00007fff89e25b85 start_wqthread + 13
    Thread 4:
    0   libsystem_kernel.dylib                  0x00007fff89dc9e42 __semwait_signal + 10
    1   libsystem_c.dylib                       0x00007fff89dd8dea nanosleep + 164
    2   libsystem_c.dylib                       0x00007fff89dd8bb5 usleep + 53
    3   com.apple.AOSKit                        0x00007fff8f4ba0b8 -[AOSRequest sendSynchronously] + 56
    4   com.apple.AOSKit                        0x00007fff8f4b3736 -[AOSThreadManager AOSKPersistMailAliases:] + 1173
    5   com.apple.Foundation                    0x00007fff9585c72a -[NSThread main] + 68
    6   com.apple.Foundation                    0x00007fff9585c6a2 __NSThread__main__ + 1575
    7   libsystem_c.dylib                       0x00007fff89e228bf _pthread_start + 335
    8   libsystem_c.dylib                       0x00007fff89e25b75 thread_start + 13
    Thread 5:
    0   libsystem_kernel.dylib                  0x00007fff89dc867a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff89dc7d71 mach_msg + 73
    2   com.apple.CoreFoundation                0x00007fff8a30250c __CFRunLoopServiceMachPort + 188
    3   com.apple.CoreFoundation                0x00007fff8a30ac74 __CFRunLoopRun + 1204
    4   com.apple.CoreFoundation                0x00007fff8a30a486 CFRunLoopRunSpecific + 230
    5   com.apple.CoreFoundation                0x00007fff8a31a19f CFRunLoopRun + 95
    6   com.apple.AOSKit                        0x00007fff8f4ba031 -[AOSRequest _runRequestThread] + 306
    7   com.apple.Foundation                    0x00007fff9585c72a -[NSThread main] + 68
    8   com.apple.Foundation                    0x00007fff9585c6a2 __NSThread__main__ + 1575
    9   libsystem_c.dylib                       0x00007fff89e228bf _pthread_start + 335
    10  libsystem_c.dylib                       0x00007fff89e25b75 thread_start + 13
    Thread 6:
    0   libsystem_kernel.dylib                  0x00007fff89dc867a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff89dc7d71 mach_msg + 73
    2   com.apple.CoreFoundation                0x00007fff8a30250c __CFRunLoopServiceMachPort + 188
    3   com.apple.CoreFoundation                0x00007fff8a30ac74 __CFRunLoopRun + 1204
    4   com.apple.CoreFoundation                0x00007fff8a30a486 CFRunLoopRunSpecific + 230
    5   com.apple.Foundation                    0x00007fff9580df7b -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 267
    6   com.apple.Foundation                    0x00007fff9580de67 -[NSRunLoop(NSRunLoop) run] + 62
    7   com.apple.MessageFramework              0x00007fff9258e2dd -[RSSInterchange _runManager] + 1345
    8   com.apple.Foundation                    0x00007fff9585c72a -[NSThread main] + 68
    9   com.apple.Foundation                    0x00007fff9585c6a2 __NSThread__main__ + 1575
    10  libsystem_c.dylib                       0x00007fff89e228bf _pthread_start + 335
    11  libsystem_c.dylib                       0x00007fff89e25b75 thread_start + 13
    Thread 7:
    0   libsystem_kernel.dylib                  0x00007fff89dc867a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff89dc7d71 mach_msg + 73
    2   com.apple.CoreFoundation                0x00007fff8a30250c __CFRunLoopServiceMachPort + 188
    3   com.apple.CoreFoundation                0x00007fff8a30ac74 __CFRunLoopRun + 1204
    4   com.apple.CoreFoundation                0x00007fff8a30a486 CFRunLoopRunSpecific + 230
    5   com.apple.Foundation                    0x00007fff9580df7b -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 267
    6   com.apple.Foundation                    0x00007fff9580de67 -[NSRunLoop(NSRunLoop) run] + 62
    7   com.apple.MessageFramework              0x00007fff925adaa9 +[_NSSocket _runIOThread] + 80
    8   com.apple.Foundation                    0x00007fff9585c72a -[NSThread main] + 68
    9   com.apple.Foundation                    0x00007fff9585c6a2 __NSThread__main__ + 1575
    10  libsystem_c.dylib                       0x00007fff89e228bf _pthread_start + 335
    11  libsystem_c.dylib                       0x00007fff89e25b75 thread_start + 13
    Thread 8:: -[IMAPAccount fetchSynchronouslyIsAuto:]  Dispatch queue: com.apple.root.default-overcommit-priority
    0   libsystem_kernel.dylib                  0x00007fff89dc9bf2 __psynch_mutexwait + 10
    1   libsystem_c.dylib                       0x00007fff89e211a1 pthread_mutex_lock + 545
    2   com.apple.Foundation                    0x00007fff9580c1ee -[NSLock lock] + 163
    3   com.apple.MessageFramework              0x00007fff925aa5ec -[IMAPAccount _gatewayForMailboxUid:name:options:] + 128
    4   com.apple.MessageFramework              0x00007fff925aa4ec -[IMAPAccount gatewayForStore:options:] + 126
    5   com.apple.MessageFramework              0x00007fff925aa32f -[LibraryIMAPStore _gatewayCreateIfNeeded:options:] + 131
    6   com.apple.MessageFramework              0x00007fff925a50e5 -[LibraryIMAPStore openSynchronouslyUpdatingMetadata:withOptions:] + 283
    7   com.apple.MessageFramework              0x00007fff925f73be -[LibraryIMAPStore _fetchForCheckingNewMail:] + 51
    8   com.apple.MessageFramework              0x00007fff925f6dfa -[IMAPAccount fetchSynchronouslyIsAuto:] + 144
    9   com.apple.CoreFoundation                0x00007fff8a367efc __invoking___ + 140
    10  com.apple.CoreFoundation                0x00007fff8a367d94 -[NSInvocation invoke] + 132
    11  com.apple.MessageFramework              0x00007fff92590f68 -[MonitoredInvocation invoke] + 196
    12  com.apple.MessageFramework              0x00007fff9256da79 -[ThrowingInvocationOperation main] + 33
    13  com.apple.MessageFramework              0x00007fff9256da1f -[_MFInvocationOperation main] + 449
    14  com.apple.Foundation                    0x00007fff9584a6b4 -[__NSOperationInternal start] + 705
    15  com.apple.Foundation                    0x00007fff9585d912 ____NSOQSchedule_block_invoke_2 + 124
    16  libdispatch.dylib                       0x00007fff924e0a86 _dispatch_call_block_and_release + 18
    17  libdispatch.dylib                       0x00007fff924e1965 _dispatch_worker_thread2 + 255
    18  libsystem_c.dylib                       0x00007fff89e243da _pthread_wqthread + 316
    19  libsystem_c.dylib                       0x00007fff89e25b85 start_wqthread + 13
    Thread 9:: -[MFAosImapAccount fetchSynchronouslyIsAuto:]  Dispatch queue: com.apple.root.default-overcommit-priority
    0   libsystem_kernel.dylib                  0x00007fff89dc9bf2 __psynch_mutexwait + 10
    1   libsystem_c.dylib                       0x00007fff89e211a1 pthread_mutex_lock + 545
    2   com.apple.Foundation                    0x00007fff9580c1ee -[NSLock lock] + 163
    3   com.apple.MessageFramework              0x00007fff925aa5ec -[IMAPAccount _gatewayForMailboxUid:name:options:] + 128
    4   com.apple.MessageFramework              0x00007fff925aa4ec -[IMAPAccount gatewayForStore:options:] + 126
    5   com.apple.MessageFramework              0x00007fff925aa32f -[LibraryIMAPStore _gatewayCreateIfNeeded:options:] + 131
    6   com.apple.MessageFramework              0x00007fff925a50e5 -[LibraryIMAPStore openSynchronouslyUpdatingMetadata:withOptions:] + 283
    7   com.apple.MessageFramework              0x00007fff925f73be -[LibraryIMAPStore _fetchForCheckingNewMail:] + 51
    8   com.apple.MessageFramework              0x00007fff925f6dfa -[IMAPAccount fetchSynchronouslyIsAuto:] + 144
    9   com.apple.CoreFoundation                0x00007fff8a367efc __invoking___ + 140
    10  com.apple.CoreFoundation                0x00007fff8a367d94 -[NSInvocation invoke] + 132
    11  com.apple.MessageFramework              0x00007fff92590f68 -[MonitoredInvocation invoke] + 196
    12  com.apple.MessageFramework              0x00007fff9256da79 -[ThrowingInvocationOperation main] + 33
    13  com.apple.MessageFramework              0x00007fff9256da1f -[_MFInvocationOperation main] + 449
    14  com.apple.Foundation                    0x00007fff9584a6b4 -[__NSOperationInternal start] + 705
    15  com.apple.Foundation                    0x00007fff9585d912 ____NSOQSchedule_block_invoke_2 + 124
    16  libdispatch.dylib                       0x00007fff924e0a86 _dispatch_call_block_and_release + 18
    17  libdispatch.dylib                       0x00007fff924e1965 _dispatch_worker_thread2 + 255
    18  libsystem_c.dylib                       0x00007fff89e243da _pthread_wqthread + 316
    19  libsystem_c.dylib                       0x00007fff89e25b85 start_wqthread + 13
    Thread 10:: -[LibraryIMAPStore openSynchronously]  Dispatch queue: com.apple.root.default-overcommit-priority
    0   libsystem_kernel.dylib                  0x00007fff89dc9bf2 __psynch_mutexwait + 10
    1   libsystem_c.dylib                       0x00007fff89e211a1 pthread_mutex_lock + 545
    2   com.apple.Foundation                    0x00007fff9580c1ee -[NSLock lock] + 163
    3   com.apple.MessageFramework              0x00007fff925aa5ec -[IMAPAccount _gatewayForMailboxUid:name:options:] + 128
    4   com.apple.MessageFramework              0x00007fff925aa4ec -[IMAPAccount gatewayForStore:options:] + 126
    5   com.apple.MessageFramework              0x00007fff925aa32f -[LibraryIMAPStore _gatewayCreateIfNeeded:options:] + 131
    6   com.apple.MessageFramework              0x00007fff925a50e5 -[LibraryIMAPStore openSynchronouslyUpdatingMetadata:withOptions:] + 283
    7   com.apple.CoreFoundation                0x00007fff8a367efc __invoking___ + 140
    8   com.apple.CoreFoundation                0x00007fff8a367d94 -[NSInvocation invoke] + 132
    9   com.apple.MessageFramework              0x00007fff92590f68 -[MonitoredInvocation invoke] + 196
    10  com.apple.MessageFramework              0x00007fff9256da79 -[ThrowingInvocationOperation main] + 33
    11  com.apple.MessageFramework              0x00007fff9256da1f -[_MFInvocationOperation main] + 449
    12  com.apple.Foundation                    0x00007fff9584a6b4 -[__NSOperationInternal start] + 705
    13  com.apple.Foundation                    0x00007fff9585d912 ____NSOQSchedule_block_invoke_2 + 124
    14  libdispatch.dylib                       0x00007fff924e0a86 _dispatch_call_block_and_release + 18
    15  libdispatch.dylib                       0x00007fff924e1965 _dispatch_worker_thread2 + 255
    16  libsystem_c.dylib                       0x00007fff89e243da _pthread_wqthread + 316
    17  libsystem_c.dylib                       0x00007fff89e25b85 start_wqthread + 13
    Thread 11:: -[LibraryIMAPStore openSynchronously]  Dispatch queue: com.apple.root.default-overcommit-priority
    0   libsystem_kernel.dylib                  0x00007fff89dc9bf2 __psynch_mutexwait + 10
    1   libsystem_c.dylib                       0x00007fff89e211a1 pthread_mutex_lock + 545
    2   com.apple.Foundation                    0x00007fff9580c1ee -[NSLock lock] + 163
    3   com.apple.MessageFramework              0x00007fff925aa5ec -[IMAPAccount _gatewayForMailboxUid:name:options:] + 128
    4   com.apple.MessageFramework              0x00007fff925aa4ec -[IMAPAccount gatewayForStore:options:] + 126
    5   com.apple.MessageFramework              0x00007fff925aa32f -[LibraryIMAPStore _gatewayCreateIfNeeded:options:] + 131
    6   com.apple.MessageFramework              0x00007fff925a50e5 -[LibraryIMAPStore openSynchronouslyUpdatingMetadata:withOptions:] + 283
    7   com.apple.CoreFoundation                0x00007fff8a367efc __invoking___ + 140
    8   com.apple.CoreFoundation                0x00007fff8a367d94 -[NSInvocation invoke] + 132
    9   com.apple.MessageFramework              0x00007fff92590f68 -[MonitoredInvocation invoke] + 196
    10  com.apple.MessageFramework              0x00007fff9256da79 -[ThrowingInvocationOperation main] + 33
    11  com.apple.MessageFramework              0x00007fff9256da1f -[_MFInvocationOperation main] + 449
    12  com.apple.Foundation                    0x00007fff9584a6b4 -[__NSOperationInternal start] + 705
    13  com.apple.Foundation                    0x00007fff9585d912 ____NSOQSchedule_block_invoke_2 + 124
    14  libdispatch.dylib                       0x00007fff924e0a86 _dispatch_call_block_and_release + 18
    15  libdispatch.dylib                       0x00007fff924e1965 _dispatch_worker_thread2 + 255
    16  libsystem_c.dylib                       0x00007fff89e243da _pthread_wqthread + 316
    17  libsystem_c.dylib                       0x00007fff89e25b85 start_wqthread + 13
    Thread 12:: CVDisplayLink
    0   libsystem_kernel.dylib                  0x00007fff89dc9bca __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff89e26274 _pthread_cond_wait + 840
    2   com.apple.CoreVideo                     0x00007fff91ca56c8 CVDisplayLink::runIOThread() + 710
    3   com.apple.CoreVideo                     0x00007fff91ca53e9 _ZL13startIOThreadPv + 148
    4   libsystem_c.dylib                       0x00007fff89e228bf _pthread_start + 335
    5   libsystem_c.dylib                       0x00007fff89e25b75 thread_start + 13
    Thread 13:: WebCore: LocalStorage
    0   libsystem_kernel.dylib                  0x00007fff89dc9bca __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff89e26274 _pthread_cond_wait + 840
    2   com.apple.JavaScriptCore                0x00007fff9099bde0 ***::ThreadCondition::timedWait(***::Mutex&, double) + 64
    3   com.apple.WebCore                       0x00007fff8d4eb76a ***::MessageQueue<WebCore::LocalStorageTask>::waitForMessage() + 132
    4   com.apple.WebCore                       0x00007fff8d4eb6c3 WebCore::LocalStorageThread::threadEntryPoint() + 99
    5   com.apple.WebCore                       0x00007fff8d4eb60b WebCore::LocalStorageThread::threadEntryPointCallback(void*) + 9
    6   libsystem_c.dylib                       0x00007fff89e228bf _pthread_start + 335
    7   libsystem_c.dylib                       0x00007fff89e25b75 thread_start + 13
    Thread 14:: com.apple.NSURLConnectionLoader
    0   libsystem_kernel.dylib                  0x00007fff89dc867a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff89dc7d71 mach_msg + 73
    2   com.apple.CoreFoundation                0x00007fff8a30250c __CFRunLoopServiceMachPort + 188
    3   com.apple.CoreFoundation                0x00007fff8a30ac74 __CFRunLoopRun + 1204
    4   com.apple.CoreFoundation                0x00007fff8a30a486 CFRunLoopRunSpecific + 230
    5   com.apple.Foundation                    0x00007fff95867fd7 +[NSURLConnection(NSURLConnectionReallyInternal) _resourceLoadLoop:] + 335
    6   com.apple.Foundation                    0x00007fff9585c72a -[NSThread main] + 68
    7   com.apple.Foundation                    0x00007fff9585c6a2 __NSThread__main__ + 1575
    8   libsystem_c.dylib                       0x00007fff89e228bf _pthread_start + 335
    9   libsystem_c.dylib                       0x00007fff89e25b75 thread_start + 13
    Thread 15:: JavaScriptCore::Marking
    0   libsystem_kernel.dylib                  0x00007fff89dc9bca __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff89e26274 _pthread_cond_wait + 840
    2   com.apple.JavaScriptCore                0x00007fff90c127ed JSC::SlotVisitor::drainFromShared(JSC::SlotVisitor::SharedDrainMode) + 493
    3   com.apple.JavaScriptCore                0x00007fff90c12a40 JSC::MarkStackThreadSharedData::markingThreadMain() + 272
    4   com.apple.JavaScriptCore                0x00007fff90c12ae9 JSC::MarkStackThreadSharedData::markingThreadStartFunc(void*) + 9
    5   libsystem_c.dylib                       0x00007fff89e228bf _pthread_start + 335
    6   libsystem_c.dylib                       0x00007fff89e25b75 thread_start + 13
    Thread 16:: JavaScriptCore::BlockFree
    0   libsystem_kernel.dylib                  0x00007fff89dc9bca __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff89e26274 _pthread_cond_wait + 840
    2   com.apple.JavaScriptCore                0x00007fff9099be37 ***::ThreadCondition::timedWait(***::Mutex&, double) + 151
    3   com.apple.JavaScriptCore                0x00007fff90c1b12c JSC::Heap::blockFreeingThreadMain() + 300
    4   com.apple.JavaScriptCore                0x00007fff90c1b169 JSC::Heap::blockFreeingThreadStartFunc(void*) + 9
    5   libsystem_c.dylib                       0x00007fff89e228bf _pthread_start + 335
    6   libsystem_c.dylib                       0x00007fff89e25b75 thread_start + 13
    Thread 17:: -[POPAccount fetchSynchronouslyIsAuto:]  Dispatch queue: com.apple.root.default-overcommit-priority
    0   libsystem_kernel.dylib                  0x00007fff89dca7e6 kevent + 10
    1   libsystem_info.dylib                    0x00007fff96c1cfe5 _mdns_search + 1537
    2   libsystem_info.dylib                    0x00007fff96c1d8b7 mdns_addrinfo + 615
    3   libsystem_info.dylib                    0x00007fff96c1e151 search_addrinfo + 152
    4   libsystem_info.dylib                    0x00007fff96c21a1c si_addrinfo + 1614
    5   libsystem_info.dylib                    0x00007fff96c19795 getaddrinfo + 166
    6   com.apple.SystemConfiguration           0x00007fff90d9c061 __SCNetworkReachabilityGetFlags + 2037
    7   com.apple.SystemConfiguration           0x00007fff90d9b841 SCNetworkReachabilityGetFlags + 163
    8   com.apple.MessageFramework              0x00007fff925ae764 -[NetworkController isHostReachable:] + 141
    9   com.apple.MessageFramework              0x00007fff925addc6 -[_NSSocket connectToHost:withPort:protocol:] + 188
    10  com.apple.MessageFramework              0x00007fff925ad24d -[Connection _connectUsingHostname:onPort:securityLayerType:clientIdentity:accountClass:] + 747
    11  com.apple.MessageFramework              0x00007fff925acdf6 -[Connection _connectUsingAccount:securityLayerType:] + 224
    12  com.apple.MessageFramework              0x00007fff925aca52 -[Connection connectAndSetSecurityLayerUsingAccount:] + 181
    13  com.apple.MessageFramework              0x00007fff925ac91d -[Connection connectUsingAccount:] + 80
    14  com.apple.MessageFramework              0x00007fff9264d87e -[Account _connectAndAuthenticate:] + 147
    15  com.apple.MessageFramework              0x00007fff9264dc5b -[Account authenticatedConnection] + 86
    16  com.apple.MessageFramework              0x00007fff92787f17 -[POP3FetchStore _authenticatedConnection] + 51
    17  com.apple.MessageFramework              0x00007fff9278831d -[POP3FetchStore fetchSynchronously] + 367
    18  com.apple.MessageFramework              0x00007fff9278a832 -[POPAccount fetchSynchronously] + 154
    19  com.apple.CoreFoundation                0x00007fff8a367efc __invoking___ + 140
    20  com.apple.CoreFoundation                0x00007fff8a367d94 -[NSInvocation invoke] + 132
    21  com.apple.MessageFramework              0x00007fff92590f68 -[MonitoredInvocation invoke] + 196
    22  com.apple.MessageFramework              0x00007fff9256da79 -[ThrowingInvocationOperation main] + 33
    23  com.apple.MessageFramework              0x00007fff9256da1f -[_MFInvocationOperation main] + 449
    24  com.apple.Foundation                    0x00007fff9584a6b4 -[__NSOperationInternal start] + 705
    25  com.apple.Foundation                    0x00007fff9585d912 ____NSOQSchedule_block_invoke_2 + 124
    26  libdispatch.dylib                       0x00007fff924e0a86 _dispatch_call_block_and_release + 18
    27  libdispatch.dylib                       0x00007fff924e1965 _dispatch_worker_thread2 + 255
    28  libsystem_c.dylib                       0x00007fff89e243da _pthread_wqthread + 316
    29  libsystem_c.dylib                       0x00007fff89e25b85 start_wqthread + 13
    Thread 18:: -[MFAosImapAccount _synchronizeAccountWithServerWithUserInput:]  Dispatch queue: com.apple.root.default-overcommit-priority
    0   libsystem_kernel.dylib                  0x00007fff89dc9bf2 __psynch_mutexwait + 10
    1   libsystem_c.dylib                       0x00007fff89e211a1 pthread_mutex_lock + 545
    2   com.apple.Foundation                    0x00007fff9580c1ee -[NSLock lock] + 163
    3   com.apple.MessageFramework              0x00007fff925aa5ec -[IMAPAccount _gatewayForMailboxUid:name:options:] + 128
    4   com.apple.MessageFramework              0x00007fff925aa4ec -[IMAPAccount gatewayForStore:options:] + 126
    5   com.apple.MessageFramework              0x00007fff92604bc3 -[IMAPAccount _listingForMailboxUid:listAllChildren:onlySubscribed:withUserInput:] + 96
    6   com.apple.MessageFramework              0x00007fff92604739 -[IMAPAccount _listingForMailboxUid:listAllChildren:withUserInput:] + 80
    7   com.apple.MessageFramework              0x00007fff9260468a -[IMAPAccount _synchronizeMailboxListWithUserInput:] + 67
    8   com.apple.MessageFramework              0x00007fff925fc2ee -[RemoteStoreAccount _synchronizeAccountWithServerWithUserInput:] + 329
    9   com.apple.MessageFramework              0x00007fff925fbf8a -[IMAPAccount _synchronizeAccountWithServerWithUserInput:] + 43
    10  com.apple.CoreFoundation                0x00007fff8a367efc __invoking___ + 140
    11  com.apple.CoreFoundation                0x00007fff8a367d94 -[NSInvocation invoke] + 132
    12  com.apple.MessageFramework              0x00007fff92590f68 -[MonitoredInvocation invoke] + 196
    13  com.apple.MessageFramework              0x00007fff9256da79 -[ThrowingInvocationOperation main] + 33
    14  com.apple.MessageFramework              0x00007fff9256da1f -[_MFInvocationOperation main] + 449
    15  com.apple.Foundation                    0x00007fff9584a6b4 -[__NSOperationInternal start] + 705
    16  com.apple.Foundation                    0x00007fff9585d912 ____NSOQSchedule_block_invoke_2 + 124
    17  libdispatch.dylib                       0x00007fff924e0a86 _dispatch_call_block_and_release + 18
    18  libdispatch.dylib                       0x00007fff924e1965 _dispatch_worker_thread2 + 255
    19  libsystem_c.dylib                       0x00007fff89e243da _pthread_wqthread + 316
    20  libsystem_c.dylib                       0x00007fff89e25b85 start_wqthread + 13
    Thread 19:: -[IMAPAccount _synchronizeAccountWithServerWithUserInput:]  Dispatch queue: com.apple.root.default-overcommit-priority
    0   libsystem_kernel.dylib                  0x00007fff89dc9bf2 __psynch_mutexwait + 10
    1   libsystem_c.dylib                       0x00007fff89e211a1 pthread_mutex_lock + 545
    2   com.apple.Foundation                    0x00007fff9580c1ee -[NSLock lock] + 163
    3   com.apple.MessageFramework              0x00007fff925aa5ec -[IMAPAccount _gatewayForMailboxUid:name:options:] + 128
    4   com.apple.MessageFramework              0x00007fff925aa4ec -[IMAPAccount gatewayForStore:options:] + 126
    5   com.apple.MessageFramework              0x00007fff92604bc3 -[IMAPAccount _listingForMailboxUid:listAllChildren:onlySubscribed:withUserInput:] + 96
    6   com.apple.MessageFramework              0x00007fff92604739 -[IMAPAccount _listingForMailboxUid:listAllChildren:withUserInput:] + 80
    7   com.apple.MessageFramework              0x00007fff9260468a -[IMAPAccount _synchronizeMailboxListWithUserInput:] + 67
    8   com.apple.MessageFramework              0x00007fff925fc2ee -[RemoteStoreAccount _synchronizeAccountWithServerWithUserInput:] + 329
    9   com.apple.MessageFramework              0x00007fff925fbf8a -[IMAPAccount _synchronizeAccountWithServerWithUserInput:] + 43
    10  com.apple.CoreFoundation                0x00007fff8a367efc __invoking___ + 140
    11  com.apple.CoreFoundation                0x00007fff8a367d94 -[NSInvocation invoke] + 132
    12  com.apple.MessageFramework              0x00007fff92590f68 -[MonitoredInvocation invoke] + 196
    13  com.apple.MessageFramework              0x00007fff9256da79 -[ThrowingInvocationOperation main] + 33
    14  com.apple.MessageFramework              0x00007fff9256da1f -[_MFInvocationOperation main] + 449
    15  com.apple.Foundation                    0x00007fff9584a6b4 -[__NSOperationInternal start] + 705
    16  com.apple.Foundation                    0x00007fff9585d912 ____NSOQSchedule_block_invoke_2 + 124
    17  libdispatch.dylib                       0x00007fff924e0a86 _dispatch_call_block_and_release + 18
    18  libdispatch.dylib                       0x00007fff924e1965 _dispatch_worker_thread2 + 255
    19  libsystem_c.dylib                       0x00007fff89e243da _pthread_wqthread + 316
    20  libsystem_c.dylib                       0x00007fff89e25b85 start_wqthread + 13
    Thread 20:
    0   libsystem_kernel.dylib                  0x00007fff89dca192 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff89e24594 _pthread_wqthread + 758
    2   libsystem_c.dylib                       0x00007fff89e25b85 start_wqthread + 13
    Thread 21:
    0   libsystem_kernel.dylib                  0x00007fff89dc9e42 __semwait_signal + 10
    1   libsystem_c.dylib                       0x00007fff89dd8dea nanosleep + 164
    2   libsystem_c.dylib                       0x00007fff89dd8bb5 usleep + 53
    3   com.apple.AOSKit                        0x00007fff8f4ba0b8 -[AOSRequest sendSynchronously] + 56
    4   com.apple.AOSKit                        0x00007fff8f4bfa68 -[AOSConfig setupInfo] + 237
    5   com.apple.AOSKit                        0x00007fff8f4bf3e6 +[AOSConfig validationURLWithAppleID:andCurrentClient:] + 57
    6   com.apple.AOSKit                        0x00007fff8f4b6b9c -[AOSThreadManager AOSKPersistAccountData:] + 1416
    7   com.apple.Foundation                    0x00007fff9585c72a -[NSThread main] + 68
    8   com.apple.Foundation                    0x00007fff9585c6a2 __NSThread__main__ + 1575
    9   libsystem_c.dylib                       0x00007fff89e228bf _pthread_start + 335
    10  libsystem_c.dylib                       0x00007fff89e25b75 thread_start + 13
    Thread 22:
    0   libsystem_kernel.dylib                  0x00007fff89dc867a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff89dc7d71 mach_msg + 73
    2   com.apple.CoreFoundation                0x00007fff8a30250c __CFRunLoopServiceMachPort + 188
    3   com.apple.CoreFoundation                0x00007fff8a30ac74 __CFRunLoopRun + 1204
    4   com.apple.CoreFoundation                0x00007fff8a30a486 CFRunLoopRunSpecific + 230
    5   com.apple.CoreFoundation                0x00007fff8a31a19f CFRunLoopRun + 95
    6   com.apple.AOSKit                        0x00007fff8f4ba031 -[AOSRequest _runRequestThread] + 306
    7   com.apple.Foundation                    0x00007fff9585c72a -[NSThread main] + 68
    8   com.apple.Foundation                    0x00007fff9585c6a2 __NSThread__main__ + 1575
    9   libsystem_c.dylib                       0x00007fff89e228bf _pthread_start + 335
    10  libsystem_c.dylib                       0x00007fff89e25b75 thread_start + 13
    Thread 23:: com.apple.appkit-heartbeat
    0   libsystem_kernel.dylib                  0x00007fff89dc9e42 __semwait_signal + 10
    1   libsystem_c.dylib                       0x00007fff89dd8dea nanosleep + 164
    2   libsystem_c.dylib                       0x00007fff89dd8bb5 usleep + 53
    3   com.apple.AppKit                        0x00007fff8b3d14d3 -[NSUIHeartBeat _heartBeatThread:] + 1727
    4   com.apple.Foundation                    0x00007fff9585c72a -[NSThread main] + 68
    5   com.apple.Foundation                    0x00007fff9585c6a2 __NSThread__main__ + 1575
    6   libsystem_c.dylib                       0x00007fff89e228bf _pthread_start + 335
    7   libsystem_c.dylib                       0x00007fff89e25b75 thread_start + 13
    Thread 24:
    0   libsystem_kernel.dylib                  0x00007fff89dca192 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff89e24594 _pthread_wqthread + 758
    2   libsystem_c.dylib                       0x00007fff89e25b85 start_wqthread + 13
    Thread 25:
    0   libsystem_kernel.dylib                  0x00007fff89dca192 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff89e24594 _pthread_wqthread + 758
    2   libsystem_c.dylib                       0x00007fff89e25b85 start_wqthread + 13
    Thread 26:
    0   libsystem_kernel.dylib                

  • Using Brio with VB but without the Brio VB API

    Hi there. We're currently attempting to integrate our product (a website) with Brio. For the time being it's only being done for a demo to gauge whether are customers are interested in the functionality or not, so it may or may not actually happen for the version proper. Because of this our company is unwilling to invest in the API just yet, but still wants the work done (the usual developer's conundrum). I'd like to know is it possible to call into Brio, generate a report and embed the results on a webpage without using the VB API supplied by Hyperion? Does anyone know how to do this? It's being done for a demo, so efficiency and performance aren't yet relevant - just more or less a hacked version that can act as a proof of concept. I'm personally new to Brio, so I don't really know how to go about it. Do we need to get the VB API immediately, or can we wait 'til we know we need to write a version that we can sell.Basically, the task is to pass a customer ID into a .bqy file when the user selects an option from a dropdown, and display the results in a frame on the webpage.Any thoughts?

    This kind of questions are sometimes posted. To use GPIB from .NET managed environment, the easiet way is use VISA COM software. The VISA COM software is available on every PC which installs NI-VISA 3.0. I posted a C# example using VISA COM at the following post. Basically the approach is the same for VB.NET and VC++.NET.
    http://exchange.ni.com/servlet/ProcessRequest?RHIVEID=101&RPAGEID=135&HOID=50650000000800000047A30000&USEARCHCONTEXT_CATEGORY_0=_26_%24_13_&USEARCHCONTEXT_CATEGORY_S=0&UCATEGORY_0=_26_%24_13_&UCATEGORY_S=0
    Makoto

  • When using iphoto to e-mail photos the resulting e-mail doesn't show up in sent folder of mail.

    There seems to be a an incompatibility within iphoto when you share images from within Iphoto using Apple Mail. The e-mail seems to send fine but when you try to go back and look for it in the sent folder of mail, it isn't there....
    Also, when the recipient of the e-mail with the photos replies to your e-mail, the resulting reply that you receive in Apple Mail is not viewable. It shows up in the list of e-mails, but can not be opened...
    Anyone else seeing these issues?

    Nope - have not seen that complaint here are all
    Just to verify - you are using Apple Mail?  It does not sound like it. You set it in the iPhoto preferences. If you are using the default iPhoto mail rather than Apple mail then there is no sent folder and people on PCs may have trouble viewing the photos
    If you are using Apple mail try exporting a photo and attaching it and try doing one using the Mail media browser and see - as far as mail is concerned there is no difference between starting the mail from iPhoto and starting it from mail
    LN

Maybe you are looking for

  • How to insert a pdf or jpeg image into a blob column of a table

    How to insert a pdf or jpeg image into a blob column of a table

  • Save Data on Preview

    Dear all, Does anybody knows if is possible to save data entered by user on Interactive Form (In preview - ABAP Program) ? I know we can "Save as" another file. If was a Web Dynpro application I think it will be possible because the PDF Data will be

  • Problem with starting my phone back up

    Hello I'll shortly sum up the problems with my blackberry curve 9360. My phone is 4 months old I bought it in a Belgian shop. I havn't had many problems with it before, I barely added any apps besides 2 free youtube players one about a month ago and

  • Getting music back after pc crash

    I lost everything on my computer and didn't have any of my itunes backed up, except for on my video ipod. Is there any way to transfer my music from my ipod back to itunes? So far I can't figure it out.

  • CS5.5 crashes when importing Project

    So I am pretty new to the world of editing and this is my first project. I have a PC and amd using windows 7 OS. I shot the footage in 1920x1080 at 24 fps however I did not set the project settings accordingly, so I am having difficulties rendering o