Mail Application Help

On the 4th I sent out an attachment of pictures to another email address and ever since I've been getting that same email sent back to me and put in my "recovery" folder? I tried sending myself an email to check to see if everything is running good and I get it but a day later and it gets put in my "trash" folder? It's a gmail account that I've set it up with and I can get on line through Google and get all the email sent to it right away...nothing shows when I log in on the Mail application on my Macbook???
Anyone know what I can do? Chris

Mac OS X v10.6 Snow Leopard > Mail and Address Book
http://discussions.apple.com/forum.jspa?forumID=1338

Similar Messages

  • I want to create Automatic mailing application, help!.

    hi all,
    i m given an assignment to develop an automatic mailing application.
    i this app. each newly registered user is being sent an email to email addr specified by him. this mail will be an acknowlegement to his registration.
    email to be sent is an dynamic jsp file.
    plz give any idea hw to do that.
    thanx

    import java.util.*;
    import javax.mail.*;
    import javax.mail.internet.*;
    import javax.activation.*;
    // Send a simple, single part, text/plain e-mail
    public class TestEmail {
    public static void main(String[] args) {
    // SUBSTITUTE YOUR EMAIL ADDRESSES HERE!!!
    String to = "";
    String from = "";
    // SUBSTITUTE YOUR ISP'S MAIL SERVER HERE!!!
    //Straing host = "smtp.yourisp.net";
    String host = "smtp";
    // Create properties, get Session
    Properties props = new Properties();
    // If using static Transport.send(),
    // need to specify which host to send it to
    props.put("mail.smtp.host", host);
    // To see what is going on behind the scene
    props.put("mail.debug", "true");
    Session session = Session.getInstance(props);
    try {
    // Instantiatee a message
    Message msg = new MimeMessage(session);
    //Set message attributes
    msg.setFrom(new InternetAddress(from));
    InternetAddress[] address = {new InternetAddress(to)};
    msg.setRecipients(Message.RecipientType.TO, address);
    msg.setSubject("Test E-Mail through Java");
    msg.setSentDate(new Date());
    // Setting message as text content
    //msg.setText("This is a test Mail from Java");
    // Setting message as html content
    msg.setContent("<div style='background-color:blue'>This is the test HTML content</div>","text/html;charset=\"UTF-8\"");
    //Send the message
    Transport.send(msg);
    catch (MessagingException mex) {
    // Prints all nested (chained) exceptions as well
    mex.printStackTrace();
    }//End of class

  • My Mail application is rejecting my password even though I'm putting it in correctly. Mail is working fine on my iPad and iPhone but not my iMac so it must be something to do with the Mail settings on my desktop. My software is up to date.  Can you help?

    I have an iMac, operating system 10.7.4 with up to date software. My mail application is rejecting my password even though I know I am putting it in correctly. I have an ipad and iphone and the mail application is working fine on them. On my desktop however I cannot receive or send mail. I think it must be something to do with the settings but cannot work out what. I have contacted BT who provides my email and internet. As I have another email address with them that is working correctly they believe it is a problem with mail rather than with them. Please can you help?

    OK Vicky, good clues...
    See if this helps...
    Open Keychain Access in Utilities, use Keychain First Aid under the Keychain Menu item, then either check the Password under that item, change it, or delete it and start over. See if there are duplicates, should be one for Incoming & one for Outgoing.
    Resetting your keychain in Mac OS X...
    If Keychain First Aid finds an issue that it cannot repair, or if you do not know your keychain password, you may need to reset your keychain.
    http://support.apple.com/kb/TS1544

  • The mail application on my I-Mac dates all mail, whether sent or received, as 5th (of whatever month it is). The computer clock is working, so it's not that. And the time seems to be right. I have no problem with my MacBook. Can anyone help, please?

    The mail application on my I-Mac dates all emails, in or out, as 5th (of whatever month it is). It seems to get the time right.
    The computer clock is fine. I have no problem with my MacBook - just with the I-Mac. Any ideas, please?

    OK Vicky, good clues...
    See if this helps...
    Open Keychain Access in Utilities, use Keychain First Aid under the Keychain Menu item, then either check the Password under that item, change it, or delete it and start over. See if there are duplicates, should be one for Incoming & one for Outgoing.
    Resetting your keychain in Mac OS X...
    If Keychain First Aid finds an issue that it cannot repair, or if you do not know your keychain password, you may need to reset your keychain.
    http://support.apple.com/kb/TS1544

  • Help, I set up AOL on my Mac Mail Application, now the mail is gone on AOL.

    Howdy there fellow Mac supporters I was lucky enough to get some help setting up an IMAP account on my i-macs Mail Application today from this forum's wisdom and it worked fine.
    Now, come to find out, all the mail is now on my i-mac but is no longer on AOL. Can I return it to it's AOL home? Can't the INBOUND mail reside in both places? They do with my .mac account.
    Please help, this is more for my wife that uses another mac in the house and doesn't have the mail application set up on that computer, she uses AOL, go figure....

    Hey Ernie,
    I am sorry about the delay. Not only did I have to rush to Eagle Rock and pick up one of LA's premier pizza's for my family but I wanted to give your suggestion some thought time.
    I changed the set up in Preferences->imap.cs.com and it didn't make any noticable difference so I left it changed.
    What I did do, is go to AOL and check the 'Old' email and selected it as KEEP AS NEW...what happened is all the old/saved mail was returned to the AOL 'inbox' and turned from read mail on the imail application to new mail, hence returned from the dead.
    Thanks for the time and effort in getting me a response and giving me some direction. Your a great asset to us floundering mac lovers that get lost or confused along the way.
    Have a great weekend. I hope we 'meet' again because you are a great mac genius to know.
    Regards.
    Eric

  • JSP Send Mail Application, plz help

    Hi,
    I have written a jsp send mail application, but it is giving error that NoSuchProviderException. What to do? Plz help. I m sending the code as below:
    <%@ page import="java.util.*, javax.mail.*,javax.mail.internet.*" %>
    <html>
    <head>
    <title>E-Mail Us</title>
    </head>
    <body bgcolor="white" text="#003399" >
    <%
    if(request.getMethod().equals("POST") )
    boolean status = true;
    String mailServer ="SMTP_HOST";
    String fnm = request.getParameter("fnm");
    String lnm = request.getParameter("lnm");
    String facility = request.getParameter("facility");
    String subject = request.getParameter("select");
    String fromEmail = "[email protected]";
    String toEmail = "[email protected]";
    String bccEmail = "[email protected]";
    String contact =request.getParameter("select2");
    String way =request.getParameter("way");
    String messageEnter = request.getParameter("message");
    try
    Properties props = new Properties();
         props.put("mail.smtp.host", mailServer);
    props.put("mail.smtp.auth", "true");
    Session s = Session.getInstance(props,null);
    MimeMessage message = new MimeMessage(s);
    InternetAddress from = new InternetAddress(fromEmail);
    message.setFrom(from);
    InternetAddress to = new InternetAddress(toEmail);
         InternetAddress bcc = new InternetAddress(bccEmail);
         message.addRecipient(Message.RecipientType.TO, to);
    message.addRecipient(Message.RecipientType.BCC, bcc);
    message.setSubject(subject);
         message.setSentDate(new Date());
    message.setText(messageEnter);
         message.setText(way);
         message.setText(contact);
         message.setText(facility);
         message.setText(fnm);
         message.setText(lnm);
         Transport transport = s.getTransport(mailServer);
    transport.connect(mailServer, "USER", "PASSWORD");
    transport.sendMessage(message, message.getAllRecipients());
    transport.close();
    catch(NullPointerException n)
    System.out.println(n.getMessage() );
         out.println(n.getMessage());
    out.println("<br><br><br><br><center><b>"+"ERROR!!!"+"</b></center>");//you need to enter a message"+"</b></center>");
         out.println("<br><br><center><b>"+"You need to Enter a message"+"</b></center>");
    status = false;
    catch (Exception e)
    System.out.println(e.getMessage() );
         out.println("<br><br><br><br><center><b>"+"ERROR!!!"+"</b></center>");
    out.println("<br><br><center><b>"+"Your Message to " + toEmail +" and "+ bccEmail+ " failed, reason is: " + e);
    status = false;
    if (status == true)
    out.println("<br><br><center><b>"+"Your message to " + toEmail +" and "+ bccEmail+ " was sent successfully!"+"</b></center>");
    else
    %>
    <center>
    <h1>Contact Us</h1>
    <form method="post" name="mail" action="mail.jsp">
    <table border="0">
    <tr>
    <td><b>First Name :</b></td>
    <td><input type="text" name="fnm" size=24></td>
    </tr>
    <tr>
    <td><b>Last Name :</b></td>
    <td><input type="text" name="lnm" size=24></td>
    </tr>
    <tr>
    <td><b>Facility :</b></td>
    <td><input type="text" name="facility" size=24></td>
    </tr>
    <tr>
    <td><b>Subject :</b></td>
    <td> <select name="select">
              <option>-------------------------------</option>
    <option>Missing File</option>
    <option>Correction Issue</option>
    <option>Refer Us</option>
    <option>Miscellaneous</option>
    </select></td>
    </tr>
    <p>
    <tr>
    <td><b>Comments :</b></td>
    <td><textarea name="message" rows = "10" cols="50"></textarea></td>
    </tr>
    <tr>
    <td><b>Best way to contact :</b></td>
    <td>
    <select name="select2">
              <option>--------------</option>
              <option>Phone</option>
    <option>Email</option>
    <option>Fax</option>
    </select>
    <input type="text" name="way" size=24></td>
    </tr>
    </table>
    <p>
    <font face="Helvetica"><input type="submit"
    value="Submit" name="Command">
    </font>
    </form></center>
    <%
    %>
    </body>
    </html>

    Ur messaging server will not be up..
    regards
    shanu

  • HT1222 I updated my iphone 4 with ios 7.1.1 and now there is no sound with any text, any mail, application updates, no vibre call sound....its just vibrate i checked all settings plz help

    I updated my iphone 4 with ios 7.1.1 and now there is no sound with any text, any mail, application updates, no vibre call sound....its just vibrate i checked all settings plz help

    i have the same problem.and i found out, if my iphone vibrates,there is a new message, but its not shown.
    if i restart my iphone after these vibrations, the new messages appear.very strange.
    i hope Apple will fix this problem soon.

  • Downloaded yosemite and mail application not responding? will not open can any one help?

    downloaded yosemite and mail application not responding? will not open can any one help?

    Restart the machine in Safe Mode and attempt to open each app. Also please explain exactly how you are attempting to open the apps. For example, "When I click the Safari icon on the Dock it bounces but does not open." To start in Safe Mode hold down the Shift key when you hear the startup tone unitl a progress bar appears.

  • Mail application crashing on start-up (HELP)

    I have been encountering serious mail application issues over the past few days, which have escalated to a crash every time the application is run. When mail is opened, it will begin to load, indicating that it is "updating number of attachments for message 579 of 6660' then it will hang for a few seconds and unexpectedly quit.
    Can someone please help me with this?

    Try here for pp support:
    http://www.microsoft.com/mac/support

  • Mail application unexpectedly quits over and over after Mac os Lion (version 10.7) upgrade. help?

    Hello,
    After installing Mac OS Lion, I launched my Mac Mail app and it ran a Mac Mail update which said it was necessary to proceed to view my emial, etc. However, my mail app unexpectedly quits time after time giving me the option to restore windows or dont restore windows.
    below is a copy of the first few lines of the error message:
    Process:         Mail [250]
    Path:            /Applications/Mail.app/Contents/MacOS/Mail
    Identifier:      com.apple.mail
    Version:         5.0 (1244.2)
    Build Info:      Mail-1244002000000000~1
    Code Type:       X86-64 (Native)
    Parent Process:  launchd [116]
    Date/Time:       2011-07-21 21:49:05.665 -0400
    OS Version:      Mac OS X 10.7 (11A511)
    Report Version:  9
    Interval Since Last Report:          8854 sec
    Crashes Since Last Report:           28
    Per-App Interval Since Last Report:  344 sec
    Per-App Crashes Since Last Report:   24
    Anonymous UUID:                      07742E09-7385-4C56-B526-1BD056CB17EE
    Crashed Thread:  9
    Exception Type:  EXC_CRASH (SIGABRT)
    Exception Codes: 0x0000000000000000, 0x0000000000000000
    Application Specific Information:
    objc[250]: garbage collection is OFF
    *** error for object 0x7f9701984ac0: pointer being freed was not allocated

    I keep having problems with Apple Mail crashes in the middle of using it with OSx Lion. So Frustrating.
    Here is the error I keep getting:
    Process:         Mail [7302]
    Path:            /Applications/Mail.app/Contents/MacOS/Mail
    Identifier:      com.apple.mail
    Version:         5.0 (1244.2)
    Build Info:      Mail-1244002000000000~1
    Code Type:       X86-64 (Native)
    Parent Process:  launchd [120]
    Date/Time:       2011-08-03 23:03:14.258 -0700
    OS Version:      Mac OS X 10.7 (11A511)
    Report Version:  9
    Interval Since Last Report:          155933 sec
    Crashes Since Last Report:           8
    Per-App Interval Since Last Report:  162948 sec
    Per-App Crashes Since Last Report:   8
    Anonymous UUID:                      99DAEE5A-43FD-4E8A-8399-48C149DA2C02
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes: 0x000000000000000d, 0x0000000000000000
    VM Regions Near 0:
    -->
        __TEXT                 000000010568e000-0000000105a3f000 [ 3780K] r-x/rwx SM=COW  /Applications/Mail.app/Contents/MacOS/Mail
    Application Specific Information:
    objc_msgSend() selector name: release
    objc[7302]: garbage collection is OFF
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   libobjc.A.dylib                         0x00007fff94225e90 objc_msgSend + 16
    1   libsystem_blocks.dylib                  0x00007fff8cb36174 _Block_release + 181
    2   com.apple.CoreFoundation                0x00007fff8f332800 CFRelease + 176
    3   com.apple.CoreFoundation                0x00007fff8f35ad20 -[__NSArrayM dealloc] + 304
    4   com.apple.Foundation                    0x00007fff901dc914 -[NSBlockOperation dealloc] + 36
    5   libobjc.A.dylib                         0x00007fff9422b03c (anonymous namespace)::AutoreleasePoolPage::pop(void*) + 434
    6   com.apple.CoreFoundation                0x00007fff8f35b6a5 _CFAutoreleasePoolPop + 37
    7   com.apple.Foundation                    0x00007fff9015f0d7 -[NSAutoreleasePool drain] + 154
    8   com.apple.AppKit                        0x00007fff9359147a -[NSApplication run] + 627
    9   com.apple.AppKit                        0x00007fff9380f52a NSApplicationMain + 867
    10  com.apple.mail                          0x0000000105766c34 0x10568e000 + 887860
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib                  0x00007fff8cf8e7e6 kevent + 10
    1   libdispatch.dylib                       0x00007fff92d7a60e _dispatch_mgr_invoke + 923
    2   libdispatch.dylib                       0x00007fff92d7919e _dispatch_mgr_thread + 54
    Thread 2:
    0   libsystem_kernel.dylib                  0x00007fff8cf8c67a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff8cf8bd71 mach_msg + 73
    2   com.apple.CoreFoundation                0x00007fff8f35a29c __CFRunLoopServiceMachPort + 188
    3   com.apple.CoreFoundation                0x00007fff8f362a04 __CFRunLoopRun + 1204
    4   com.apple.CoreFoundation                0x00007fff8f362216 CFRunLoopRunSpecific + 230
    5   com.apple.Foundation                    0x00007fff90166983 -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 267
    6   com.apple.Foundation                    0x00007fff9016686f -[NSRunLoop(NSRunLoop) run] + 62
    7   com.apple.MessageFramework              0x00007fff8cfbb3b5 -[RSSInterchange _runManager] + 1345
    8   com.apple.Foundation                    0x00007fff901b51ea -[NSThread main] + 68
    9   com.apple.Foundation                    0x00007fff901b5162 __NSThread__main__ + 1575
    10  libsystem_c.dylib                       0x00007fff92dd48bf _pthread_start + 335
    11  libsystem_c.dylib                       0x00007fff92dd7b75 thread_start + 13
    Thread 3:: WebCore: LocalStorage
    0   libsystem_kernel.dylib                  0x00007fff8cf8dbca __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff92dd8274 _pthread_cond_wait + 840
    2   com.apple.JavaScriptCore                0x00007fff91bb7ba0 ***::ThreadCondition::timedWait(***::Mutex&, double) + 64
    3   com.apple.WebCore                       0x00007fff965ac2ba ***::MessageQueue<WebCore::LocalStorageTask>::waitForMessage() + 132
    4   com.apple.WebCore                       0x00007fff965ac213 WebCore::LocalStorageThread::threadEntryPoint() + 99
    5   com.apple.WebCore                       0x00007fff965ac15b WebCore::LocalStorageThread::threadEntryPointCallback(void*) + 9
    6   libsystem_c.dylib                       0x00007fff92dd48bf _pthread_start + 335
    7   libsystem_c.dylib                       0x00007fff92dd7b75 thread_start + 13
    Thread 4:
    0   libsystem_kernel.dylib                  0x00007fff8cf8c67a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff8cf8bd71 mach_msg + 73
    2   com.apple.CoreFoundation                0x00007fff8f35a29c __CFRunLoopServiceMachPort + 188
    3   com.apple.CoreFoundation                0x00007fff8f362a04 __CFRunLoopRun + 1204
    4   com.apple.CoreFoundation                0x00007fff8f362216 CFRunLoopRunSpecific + 230
    5   com.apple.Foundation                    0x00007fff90166983 -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 267
    6   com.apple.Foundation                    0x00007fff9016686f -[NSRunLoop(NSRunLoop) run] + 62
    7   com.apple.MessageFramework              0x00007fff8cfdab89 +[_NSSocket _runIOThread] + 80
    8   com.apple.Foundation                    0x00007fff901b51ea -[NSThread main] + 68
    9   com.apple.Foundation                    0x00007fff901b5162 __NSThread__main__ + 1575
    10  libsystem_c.dylib                       0x00007fff92dd48bf _pthread_start + 335
    11  libsystem_c.dylib                       0x00007fff92dd7b75 thread_start + 13
    Thread 5:: com.apple.CFSocket.private
    0   libsystem_kernel.dylib                  0x00007fff8cf8ddf2 __select + 10
    1   com.apple.CoreFoundation                0x00007fff8f3ab66b __CFSocketManager + 1355
    2   libsystem_c.dylib                       0x00007fff92dd48bf _pthread_start + 335
    3   libsystem_c.dylib                       0x00007fff92dd7b75 thread_start + 13
    Thread 6:: com.apple.NSURLConnectionLoader
    0   libsystem_kernel.dylib                  0x00007fff8cf8c67a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff8cf8bd71 mach_msg + 73
    2   com.apple.CoreFoundation                0x00007fff8f35a29c __CFRunLoopServiceMachPort + 188
    3   com.apple.CoreFoundation                0x00007fff8f362a04 __CFRunLoopRun + 1204
    4   com.apple.CoreFoundation                0x00007fff8f362216 CFRunLoopRunSpecific + 230
    5   com.apple.Foundation                    0x00007fff901c0a97 +[NSURLConnection(NSURLConnectionReallyInternal) _resourceLoadLoop:] + 335
    6   com.apple.Foundation                    0x00007fff901b51ea -[NSThread main] + 68
    7   com.apple.Foundation                    0x00007fff901b5162 __NSThread__main__ + 1575
    8   libsystem_c.dylib                       0x00007fff92dd48bf _pthread_start + 335
    9   libsystem_c.dylib                       0x00007fff92dd7b75 thread_start + 13
    Thread 7:: CVDisplayLink
    0   libsystem_kernel.dylib                  0x00007fff8cf8dbca __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff92dd8274 _pthread_cond_wait + 840
    2   com.apple.CoreVideo                     0x00007fff8f2f4b3a CVDisplayLink::runIOThread() + 710
    3   com.apple.CoreVideo                     0x00007fff8f2f485b _ZL13startIOThreadPv + 148
    4   libsystem_c.dylib                       0x00007fff92dd48bf _pthread_start + 335
    5   libsystem_c.dylib                       0x00007fff92dd7b75 thread_start + 13
    Thread 8:
    0   libsystem_kernel.dylib                  0x00007fff8cf8e192 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff92dd6594 _pthread_wqthread + 758
    2   libsystem_c.dylib                       0x00007fff92dd7b85 start_wqthread + 13
    Thread 9:
    0   libsystem_kernel.dylib                  0x00007fff8cf8e192 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff92dd6594 _pthread_wqthread + 758
    2   libsystem_c.dylib                       0x00007fff92dd7b85 start_wqthread + 13
    Thread 10:
    0   libsystem_kernel.dylib                  0x00007fff8cf8e192 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff92dd6594 _pthread_wqthread + 758
    2   libsystem_c.dylib                       0x00007fff92dd7b85 start_wqthread + 13
    Thread 11:
    0   libsystem_kernel.dylib                  0x00007fff8cf8e192 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff92dd6594 _pthread_wqthread + 758
    2   libsystem_c.dylib                       0x00007fff92dd7b85 start_wqthread + 13
    Thread 12:
    0   libsystem_kernel.dylib                  0x00007fff8cf8e192 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff92dd6594 _pthread_wqthread + 758
    2   libsystem_c.dylib                       0x00007fff92dd7b85 start_wqthread + 13
    Thread 13:
    0   libsystem_kernel.dylib                  0x00007fff8cf8e192 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff92dd6594 _pthread_wqthread + 758
    2   libsystem_c.dylib                       0x00007fff92dd7b85 start_wqthread + 13
    Thread 0 crashed with X86 Thread State (64-bit):
      rax: 0x0000000000000003  rbx: 0x00007fd7721dbea0  rcx: 0x00007fd7731218b0  rdx: 0x00007fd7731d8fa0
      rdi: 0x00007fd7731218b0  rsi: 0x00007fff93e0bd88  rbp: 0x00007fff6528d610  rsp: 0x00007fff6528d5e0
       r8: 0x0000000000000009   r9: 0x00007fd772ab8920  r10: 0x00000000e4849b9e  r11: 0xa00007fd77310f11
      r12: 0x0000000000000001  r13: 0x00007fd7721dbea0  r14: 0x00007fd7721dbea8  r15: 0x0000000000000001
      rip: 0x00007fff94225e90  rfl: 0x0000000000010246  cr2: 0x0000000107007000
    Logical CPU: 1
    Binary Images:
           0x10568e000 -        0x105a3eff7  com.apple.mail (5.0 - 1244.2) <8D887218-56A8-3BB1-96BB-4305E158569E> /Applications/Mail.app/Contents/MacOS/Mail
           0x105efd000 -        0x105efdff1 +cl_kernels (??? - ???) <751C24E4-E3FD-4AB4-A867-E123017F9726> cl_kernels
           0x107337000 -        0x107337ff7  libVietnameseConverter.dylib (54.0.0 - compatibility 1.0.0) <03EDC405-10B5-3977-AB7F-CDC71A1109F9> /System/Library/CoreServices/Encodings/libVietnameseConverter.dylib
           0x108c4c000 -        0x108c4efff  apop.so (??? - ???) <B40CE86C-1757-3261-848C-F166F3D513EA> /usr/lib/sasl2/apop.so
           0x108c52000 -        0x108c54fff  libanonymous.2.so (??? - ???) <99136B94-8BE0-3563-9E2A-9C826971B6E9> /usr/lib/sasl2/libanonymous.2.so
           0x108c71000 -        0x108c7afff  digestmd5WebDAV.so (??? - ???) <8D39C8C0-ACCE-34D4-815A-87825A1A4492> /usr/lib/sasl2/digestmd5WebDAV.so
           0x108f9c000 -        0x108fb2fff  dhx.so (??? - ???) <9AB7809C-2651-3FCF-9357-8E1CDEAB6466> /usr/lib/sasl2/dhx.so
           0x108fbf000 -        0x108fc2fff  libcrammd5.2.so (??? - ???) <5EEE3304-D132-3C9B-A54D-C21D7C34DA28> /usr/lib/sasl2/libcrammd5.2.so
           0x108fc7000 -        0x108fd0fff  libdigestmd5.2.so (??? - ???) <6DD64225-CFFF-379B-A5BA-5409F777F307> /usr/lib/sasl2/libdigestmd5.2.so
           0x108fd5000 -        0x108fdafff  libgssapiv2.2.so (??? - ???) <DC1BA305-26FA-3CC7-8400-6A45521EF2A3> /usr/lib/sasl2/libgssapiv2.2.so
           0x108fdf000 -        0x108fe1fff  login.so (??? - ???) <48CD069F-68F5-32C4-BFAC-AC0EFB7B9489> /usr/lib/sasl2/login.so
           0x108fe5000 -        0x108feafff  libntlm.so (??? - ???) <1B9D16BE-D0DB-31A3-8B84-7830509B5ECA> /usr/lib/sasl2/libntlm.so
           0x108fef000 -        0x108ff6fff  libotp.2.so (??? - ???) <1DDBDDF7-3F84-3AF0-A878-9E64EEBE0ED5> /usr/lib/sasl2/libotp.2.so
           0x108fff000 -        0x109001fff  libplain.2.so (??? - ???) <C98A873A-4373-3E3A-8257-D9BB5F857C85> /usr/lib/sasl2/libplain.2.so
           0x109005000 -        0x109009fff  libpps.so (??? - ???) <26172BC5-1758-3BE6-9B8D-F254A727478A> /usr/lib/sasl2/libpps.so
           0x10900e000 -        0x109011ff7  mschapv2.so (??? - ???) <F62C8BE2-B2E4-3E36-AC52-B4E149AFC186> /usr/lib/sasl2/mschapv2.so
           0x109016000 -        0x109044fff  com.apple.DirectoryService.PasswordServerFramework (7.0 - 7.0) <2C10A1AC-CEFF-3215-A398-C75818082C8D> /System/Library/PrivateFrameworks/PasswordServer.framework/Versions/A/PasswordS erver
           0x109059000 -        0x10905cfff  shadow_auxprop.so (??? - ???) <DF9DE842-FBFA-368A-AA8C-E29CF334FF69> /usr/lib/sasl2/shadow_auxprop.so
           0x109061000 -        0x109063fff  smb_nt.so (??? - ???) <C6D59817-4DB8-34F9-BD71-2FDDA857CBA8> /usr/lib/sasl2/smb_nt.so
           0x109067000 -        0x10906afff  smb_ntlmv2.so (??? - ???) <A2FD1300-B742-32BE-B640-74732490CC94> /usr/lib/sasl2/smb_ntlmv2.so
           0x109428000 -        0x10942bff7  libCoreFSCache.dylib (??? - ???) <783C2402-CA3F-3D9B-B909-0F251145CF1D> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreFSCache .dylib
           0x10945e000 -        0x10945effd +cl_kernels (??? - ???) <C376FEB2-19C8-4B22-AB16-5A2A02B7DF15> cl_kernels
           0x109904000 -        0x10990afef  libcldcpuengine.dylib (1.50.61 - compatibility 1.0.0) <EAC03E33-595E-3829-8199-479FA5CD9987> /System/Library/Frameworks/OpenCL.framework/Libraries/libcldcpuengine.dylib
           0x109920000 -        0x1099b3ff7  unorm8_bgra.dylib (1.50.61 - compatibility 1.0.0) <3ED8B0D5-4A55-3E39-8490-B7BC1780F67B> /System/Library/Frameworks/OpenCL.framework/Libraries/ImageFormats/unorm8_bgra. dylib
           0x1099d6000 -        0x1099d7ff3 +cl_kernels (??? - ???) <80EDCB6E-D9EB-491D-A043-1B2A5EED0EBA> cl_kernels
           0x1099fb000 -        0x1099fbff1 +cl_kernels (??? - ???) <D878F8FB-431B-4650-B772-DB30FA77BF6E> cl_kernels
           0x1099fd000 -        0x109a8eff7  unorm8_rgba.dylib (1.50.61 - compatibility 1.0.0) <278541F2-18CC-3BE4-AD6B-24A3E983ACB5> /System/Library/Frameworks/OpenCL.framework/Libraries/ImageFormats/unorm8_rgba. dylib
           0x109ab2000 -        0x109ab3ffc +cl_kernels (??? - ???) <B3B422F0-0A20-4456-A5A4-408722265E1B> cl_kernels
           0x109f1a000 -        0x109f1bff3 +cl_kernels (??? - ???) <E5798350-4348-44EB-87D3-B1E2E0C3A1AA> cl_kernels
           0x109f29000 -        0x109f29ffd +cl_kernels (??? - ???) <5009916E-BF2B-4548-9C2C-0EF033D8EE46> cl_kernels
           0x109f2d000 -        0x109f2dff5 +cl_kernels (??? - ???) <DEDDC757-6B69-44BE-A2D9-6652DFD6F692> cl_kernels
           0x10a2dd000 -        0x10a2defff  ATSHI.dylib (??? - ???) <F13B3CE7-DFD5-3FB4-B56F-73F6348A80EE> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/ATSHI.dylib
           0x10a2e5000 -        0x10a2e5ff5 +cl_kernels (??? - ???) <D2641307-E4E2-45E4-A638-CF7CA04605E9> cl_kernels
           0x10a2e9000 -        0x10a2ecfff  libLatinSuppConverter.dylib (54.0.0 - compatibility 1.0.0) <7E087B67-5698-34B6-9F16-1E0C1C3FF0DD> /System/Library/CoreServices/Encodings/libLatinSuppConverter.dylib
           0x10a499000 -        0x10a49dfff  com.apple.audio.AudioIPCPlugIn (1.2.0 - 1.2.0) <1EAF877E-4F15-39F7-89FA-D362AA4DA9DE> /System/Library/Extensions/AudioIPCDriver.kext/Contents/Resources/AudioIPCPlugI n.bundle/Contents/MacOS/AudioIPCPlugIn
           0x10a4a2000 -        0x10a4a8fff  com.apple.audio.AppleHDAHALPlugIn (2.1.1 - 2.1.1f11) <A48CFDAF-9D81-3A14-8F67-9BAE253F73AE> /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bun dle/Contents/MacOS/AppleHDAHALPlugIn
           0x10a527000 -        0x10a52bff7  libFontRegistryUI.dylib (??? - ???) <F617D431-0BCD-3E1F-9BFC-599FDFAC99A0> /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ATS.framewo rk/Resources/libFontRegistryUI.dylib
           0x10a586000 -        0x10a589fff  com.apple.DirectoryServicesSource (1.1 - 1043) <B1B5FB51-29C4-3D13-AE52-D344C6EE11AE> /System/Library/Address Book Plug-Ins/DirectoryServices.sourcebundle/Contents/MacOS/DirectoryServices
           0x10ad0d000 -        0x10ad0ffff  com.apple.AddressBook.LocalSourceBundle (1.1 - 1043) <E6A2DAEA-2AE7-3759-A8E5-D354007FDD4B> /System/Library/Address Book Plug-Ins/LocalSource.sourcebundle/Contents/MacOS/LocalSource
           0x10b41a000 -        0x10b42cff7  com.apple.mail.WebPlugIn (5.0 - 1244.2) <E1E790AE-C261-3AB7-9A98-F6A7737158DB> /Applications/Mail.app/Contents/PlugIns/MailWebPlugIn.webplugin/Contents/MacOS/ MailWebPlugIn
           0x10c80b000 -        0x10c838ff7  com.apple.datadetectors.actions (3.0 - 172.0) <9CA54923-56C9-3DE1-A9ED-879CD6E73EFC> /System/Library/PrivateFrameworks/DataDetectors.framework/Versions/A/Resources/ Actions.datadetectors/Contents/MacOS/Actions
           0x10d038000 -        0x10d1d0ff7  GLEngine (??? - ???) <EE6CCAE3-1CA1-3C5E-A83C-BB56AB413AB3> /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
           0x10d203000 -        0x10d2fcfff  libGLProgrammability.dylib (??? - ???) <7B17211F-D04C-3916-8176-1930C24BA421> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
           0x10d322000 -        0x10d350ff7  GLRendererFloat (??? - ???) <AB59F7EA-62B1-3AA6-B940-47C0B6BC6DD9> /System/Library/Frameworks/OpenGL.framework/Resources/GLRendererFloat.bundle/GL RendererFloat
           0x10e8af000 -        0x10e8d3fff  com.apple.Mail.Syncer (5.0 - 1244.3) <142C325B-273B-3294-8942-D8E82B4A4362> /System/Library/Frameworks/Message.framework/Versions/B/Resources/Syncer.syncsc hema/Contents/MacOS/Syncer
           0x10e8e4000 -        0x10e8e9fff  com.apple.contacts.iaplugin (1.0 - 1043) <0AB8C3AC-AA1C-3D14-B8C5-6AD7E63FBB4F> /System/Library/InternetAccounts/AddressBook.iaplugin/Contents/MacOS/AddressBoo k
           0x10e8ef000 -        0x10e8f2fff  com.aol.iaplugin (1.0 - 1) <5EA7A690-6C76-3E54-9284-1FBAEAD932D0> /System/Library/InternetAccounts/AOL.iaplugin/Contents/MacOS/AOL
           0x10e8f8000 -        0x10e901fff  com.apple.exchange.iaplugin (1.0 - 1) <52AA2762-8A6F-3BC3-9009-618CAE6A7D78> /System/Library/InternetAccounts/Exchange.iaplugin/Contents/MacOS/Exchange
           0x10e90a000 -        0x10e90ffff  com.google.iaplugin (1.0 - 1) <2B3E8068-0911-3FA1-91CF-DDE0A754D110> /System/Library/InternetAccounts/Google.iaplugin/Contents/MacOS/Google
           0x10e916000 -        0x10e91dfff  com.apple.calendar.iaplugin (1.0 - 1127) <AEEF9F0F-F4D0-30DF-9F26-7BE714564033> /System/Library/InternetAccounts/iCal.iaplugin/Contents/MacOS/iCal
           0x10e924000 -        0x10e929fff  com.apple.chat.iaplugin (1.0 - 925) <E4F0E778-1136-3304-BBCD-348C01A17D67> /System/Library/InternetAccounts/iChat.iaplugin/Contents/MacOS/iChat
           0x10e92e000 -        0x10e935ff7  com.apple.mail.iaplugin (5.0 - 1244.3) <CDEC5E4E-F15F-369F-818A-335DDCBD7656> /System/Library/InternetAccounts/Mail.iaplugin/Contents/MacOS/Mail
           0x10e93c000 -        0x10e93ffff  com.apple.mobileme.iaplugin (1.0 - 1) <136AE107-5555-336C-95F6-E643106D6EEA> /System/Library/InternetAccounts/MobileMe.iaplugin/Contents/MacOS/MobileMe
           0x10e945000 -        0x10e94afff  com.apple.osxserver.iaplugin (1.0 - 1) <48C2AF83-8EA5-33BC-8337-33969031CDAB> /System/Library/InternetAccounts/OSXServer.iaplugin/Contents/MacOS/OSXServer
           0x10e951000 -        0x10e9d4ff7  com.apple.frameworks.server.foundation (10.7 - 184) <B6D7DCAD-0D14-3BA2-BCF6-BFCD900EC6C4> /System/Library/PrivateFrameworks/ServerFoundation.framework/Versions/A/ServerF oundation
           0x10ea33000 -        0x10ea45ff7  com.apple.PlatformHardwareManagement (2.0.1 - 2.0.1) <B55C63E6-0117-324B-B88A-18C5003D61FC> /System/Library/PrivateFrameworks/PlatformHardwareManagement.framework/Versions /A/PlatformHardwareManagement
           0x10ea52000 -        0x10ea8bfff  com.apple.frameworks.CoreDaemon (1.0 - 1.0) <267FFC79-8640-3290-A7D7-79E4D9390AA7> /System/Library/PrivateFrameworks/CoreDaemon.framework/Versions/B/CoreDaemon
           0x10ea9b000 -        0x10ea9ffff  com.yahoo.iaplugin (1.0 - 1) <AA2E0D99-9768-3E15-94FF-C9F3C11524C4> /System/Library/InternetAccounts/Yahoo.iaplugin/Contents/MacOS/Yahoo
           0x10eaa5000 -        0x10eaa8fff  com.apple.yahoo.syncframework (1.4 - 61) <F85D0D3C-B926-3945-8AEE-238128B0AACC> /System/Library/PrivateFrameworks/YahooSync.framework/Versions/A/YahooSync
           0x10ee13000 -        0x10ee18ff7  libgermantok.dylib (??? - ???) <BEE85384-A58E-3D6B-914B-74E5FF3155F3> /usr/lib/libgermantok.dylib
           0x1108cc000 -        0x110a15ff7  com.apple.audio.units.Components (1.7 - 1.7) <A68668EB-624D-3867-A392-5D2E026AF14A> /System/Library/Components/CoreAudio.component/Contents/MacOS/CoreAudio
           0x110b73000 -        0x110c06ff7  unorm8_argb.dylib (1.50.61 - compatibility 1.0.0) <D453434E-9E63-3D38-B59E-6B333A5373D6> /System/Library/Frameworks/OpenCL.framework/Libraries/ImageFormats/unorm8_argb. dylib
           0x113b43000 -        0x113cf7ff7  libCMaps.A.dylib (600.0.0 - compatibility 64.0.0) <A3C3542A-F11F-3E6F-BC36-5773FF687AEF> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCMaps.A.dylib
           0x200000000 -        0x20075ffff  com.apple.GeForceGLDriver (7.2.9 - 7.0.2) <5DB4B25D-E5DA-3EEB-A979-13FCBFA7958B> /System/Library/Extensions/GeForceGLDriver.bundle/Contents/MacOS/GeForceGLDrive r
        0x7fff6528e000 -     0x7fff652c2ac7  dyld (195.5 - ???) <4A6E2B28-C7A2-3528-ADB7-4076B9836041> /usr/lib/dyld
        0x7fff8b5ec000 -     0x7fff8b63ffff  com.apple.AppleVAFramework (5.0.14 - 5.0.14) <5FA4AED9-8E55-389C-9F5B-02FFE5BCBB75> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
        0x7fff8b671000 -     0x7fff8b674fff  com.apple.help (1.3.2 - 42) <AB67588E-7227-3993-927F-C9E6DAC507FD> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
        0x7fff8b675000 -     0x7fff8b6a8fff  com.apple.GSS (2.1 - 2.0) <A150154E-40D3-345B-A92D-3A023A55AC52> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
        0x7fff8b6a9000 -     0x7fff8b705ff7  com.apple.QuickLookFramework (3.0 - 489.1) <26470DFE-B3D7-3E05-A4D7-98B64FCB230B> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
        0x7fff8b706000 -     0x7fff8b707ff7  libremovefile.dylib (21.0.0 - compatibility 1.0.0) <C6C49FB7-1892-32E4-86B5-25AD165131AA> /usr/lib/system/libremovefile.dylib
        0x7fff8b71c000 -     0x7fff8b763ff7  com.apple.CoreMedia (1.0 - 705.35) <6BEC7E0A-BC2E-30DA-8E18-7AF6E8A7821F> /System/Library/Frameworks/CoreMedia.framework/Versions/A/CoreMedia
        0x7fff8b764000 -     0x7fff8b764fff  com.apple.audio.units.AudioUnit (1.7 - 1.7) <D75971EE-0D74-365A-8E52-46558EA49E87> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
        0x7fff8b765000 -     0x7fff8bb2bfff  com.apple.MediaToolbox (1.0 - 705.35) <EC6755D1-58BC-36F5-AB66-143D03A0AF8C> /System/Library/PrivateFrameworks/MediaToolbox.framework/Versions/A/MediaToolbo x
        0x7fff8bb2c000 -     0x7fff8bb68fff  libsystem_info.dylib (??? - ???) <BC49C624-1DAB-3A37-890F-6EFD46538424> /usr/lib/system/libsystem_info.dylib
        0x7fff8bba8000 -     0x7fff8bba9fff  libunc.dylib (24.0.0 - compatibility 1.0.0) <C67B3B14-866C-314F-87FF-8025BEC2CAAC> /usr/lib/system/libunc.dylib
        0x7fff8bbaa000 -     0x7fff8bbb8fff  com.apple.NetAuth (1.0 - 3.0) <F384FFFD-70F6-3B1C-A886-F5B446E456E7> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
        0x7fff8bbb9000 -     0x7fff8bd43fff  com.apple.WebKit (7534 - 7534.48.3) <03AC8252-B3A1-3A7C-9DAF-99CC9DC56D5D> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
        0x7fff8bd44000 -     0x7fff8bd49fff  com.apple.OpenDirectory (10.7 - 144) <E8AACF47-C423-3DCE-98F6-A811612B1B46> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
        0x7fff8bd8f000 -     0x7fff8bddafff  com.apple.SystemConfiguration (1.11 - 1.11) <0B02FEC4-C36E-32CB-8004-2214B6793AE8> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
        0x7fff8bddb000 -     0x7fff8c0f4fff  com.apple.CoreServices.CarbonCore (960.13 - 960.13) <398ABDD7-BB95-3C05-96D2-B54243FC4745> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
        0x7fff8c0f5000 -     0x7fff8c17aff7  com.apple.Heimdal (2.1 - 2.0) <E4CD970F-8DE8-31E4-9FC0-BDC97EB924D5> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
        0x7fff8c17b000 -     0x7fff8c494ff7  com.apple.AddressBook.framework (6.0 - 1043) <A6302279-FD1B-3BB7-8419-362425FC5568> /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
        0x7fff8c495000 -     0x7fff8c496fff  libDiagnosticMessagesClient.dylib (??? - ???) <3DCF577B-F126-302B-BCE2-4DB9A95B8598> /usr/lib/libDiagnosticMessagesClient.dylib
        0x7fff8c4c7000 -     0x7fff8c507fff  libtidy.A.dylib (??? - ???) <E500CDB9-C010-3B1A-B995-774EE64F39BE> /usr/lib/libtidy.A.dylib
        0x7fff8c508000 -     0x7fff8c51aff7  libz.1.dylib (1.2.5 - compatibility 1.0.0) <30CBEF15-4978-3DED-8629-7109880A19D4> /usr/lib/libz.1.dylib
        0x7fff8c532000 -     0x7fff8c58cfff  com.apple.HIServices (1.9 - ???) <8791E8AA-C034-330D-B2BA-5141154C21CD> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
        0x7fff8c5e2000 -     0x7fff8c8b9fff  com.apple.security (7.0 - 55010) <2418B583-D3BD-3BC5-8B07-8289C8A5B43B> /System/Library/Frameworks/Security.framework/Versions/A/Security
        0x7fff8c8ba000 -     0x7fff8c93cfff  com.apple.Metadata (10.7.0 - 627.9) <F293A9A7-9790-3629-BE81-D19C158C5EA4> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
        0x7fff8c93d000 -     0x7fff8c941ff7  com.apple.CommonPanels (1.2.5 - 94) <0BB2C436-C9D5-380B-86B5-E355A7711259> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
        0x7fff8c942000 -     0x7fff8c94dfff  com.apple.NSServerNotificationCenter (4.0 - 4.0) <67D1D43D-7641-3BCA-B2BF-10838B380100> /System/Library/Frameworks/ServerNotification.framework/Versions/A/ServerNotifi cation
        0x7fff8c94e000 -     0x7fff8c9a0ff7  libGLU.dylib (??? - ???) <C3CE8BA0-470F-3BCE-B17C-A31E70E035F2> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
        0x7fff8c9a1000 -     0x7fff8ca1dff7  com.apple.imcore (6.0 - 800) <0A4267B7-D92F-33DA-9B09-1995221A0831> /System/Library/PrivateFrameworks/IMCore.framework/Versions/A/IMCore
        0x7fff8ca1e000 -     0x7fff8ca27fff  com.apple.AOSNotification (1.3.0 - 472) <92432943-3181-35E9-815E-C292A0B7E1F1> /System/Library/PrivateFrameworks/AOSNotification.framework/Versions/A/AOSNotif ication
        0x7fff8ca28000 -     0x7fff8cb34fef  libcrypto.0.9.8.dylib (0.9.8 - compatibility 0.9.8) <3AD29F8D-E3BC-3F49-A438-2C8AAB71DC99> /usr/lib/libcrypto.0.9.8.dylib
        0x7fff8cb35000 -     0x7fff8cb36ff7  libsystem_blocks.dylib (53.0.0 - compatibility 1.0.0) <8BCA214A-8992-34B2-A8B9-B74DEACA1869> /usr/lib/system/libsystem_blocks.dylib
        0x7fff8cb37000 -     0x7fff8cb37fff  libkeymgr.dylib (23.0.0 - compatibility 1.0.0) <61EFED6A-A407-301E-B454-CD18314F0075> /usr/lib/system/libkeymgr.dylib
        0x7fff8cb38000 -     0x7fff8cbc5ff7  com.apple.iLifeMediaBrowser (2.6.0 - 502) <174E0D48-398B-362A-8A8F-7948CE30539E> /System/Library/PrivateFrameworks/iLifeMediaBrowser.framework/Versions/A/iLifeM ediaBrowser
        0x7fff8cbc6000 -     0x7fff8cbd1ff7  com.apple.speech.recognition.framework (4.0.19 - 4.0.19) <7ADAAF5B-1D78-32F2-9FFF-D2E3FBB41C2B> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
        0x7fff8cc2d000 -     0x7fff8cc6efff  com.apple.QD (3.12 - ???) <4F3C5629-97C7-3E55-AF3C-ACC524929DA2> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
        0x7fff8cc6f000 -     0x7fff8ccc0fff  com.apple.iCalendar (5.0 - 100) <68B0900B-9E7B-30E9-B575-C2F86E76863C> /System/Library/PrivateFrameworks/iCalendar.framework/Versions/A/iCalendar
        0x7fff8ccc3000 -     0x7fff8ccc9fff  libmacho.dylib (800.0.0 - compatibility 1.0.0) <D86F63EC-D2BD-32E0-8955-08B5EAFAD2CC> /usr/lib/system/libmacho.dylib
        0x7fff8ccca000 -     0x7fff8ccf7fff  com.apple.CalDAV (1.0 - 37) <CD51992D-3F34-32A1-A2E0-BCBF16E1B368> /System/Library/PrivateFrameworks/CalDAV.framework/Versions/A/CalDAV
        0x7fff8cd0b000 -     0x7fff8cd0efff  libCoreVMClient.dylib (??? - ???) <9E9F7B24-567C-3102-909C-219CF2B191FD> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
        0x7fff8cd0f000 -     0x7fff8cd3cfff  com.apple.quartzfilters (1.7.0 - 1.7.0) <ED846829-EBF1-3E2F-9EA6-D8743E5A4784> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
        0x7fff8cd3d000 -     0x7fff8cd6afe7  libSystem.B.dylib (159.0.0 - compatibility 1.0.0) <7B4D685D-939C-3ABE-8780-77A1889E0DE9> /usr/lib/libSystem.B.dylib
        0x7fff8cd9c000 -     0x7fff8cdb4fff  com.apple.iChat.InstantMessage (6.0 - 833) <DF9EAA84-8AE6-3BFD-AB21-7BDED2161564> /System/Library/Frameworks/InstantMessage.framework/Versions/A/InstantMessage
        0x7fff8cdb5000 -     0x7fff8cf76fe7  com.apple.CoreData (103 - 358.4) <8D8ABA2E-0161-334D-A7C9-79E5297E188B> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
        0x7fff8cf77000 -     0x7fff8cf97fff  libsystem_kernel.dylib (1699.22.73 - compatibility 1.0.0) <69F2F501-72D8-3B3B-8357-F4418B3E1348> /usr/lib/system/libsystem_kernel.dylib
        0x7fff8cf98000 -     0x7fff8d2effff  com.apple.MessageFramework (5.0 - 1244.3) <266F07DF-4440-3DB4-B059-5D23A57A8041> /System/Library/Frameworks/Message.framework/Versions/B/Message
        0x7fff8d433000 -     0x7fff8d5bdff7  com.apple.QTKit (7.7.1 - 2246) <C8A57DE8-A86A-34B6-B6BA-565EE3B6D140> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
        0x7fff8d5be000 -     0x7fff8d7defff  com.apple.CalendarStore (5.0 - 1127) <0E9BE7E8-4DBD-3C2F-97DE-CAC5AE0EE3AD> /System/Library/Frameworks/CalendarStore.framework/Versions/A/CalendarStore
        0x7fff8d826000 -     0x7fff8d82ffff  libnotify.dylib (80.0.0 - compatibility 1.0.0) <BD08553D-8088-38A8-8007-CF5C0B8F0404> /usr/lib/system/libnotify.dylib
        0x7fff8d830000 -     0x7fff8d878fff  com.apple.imfoundation (6.0 - 800) <267AA0CF-7F7E-387A-8A87-25696388215C> /System/Library/PrivateFrameworks/IMCore.framework/Versions/A/Frameworks/IMFoun dation.framework/Versions/A/IMFoundation
        0x7fff8d879000 -     0x7fff8d88efff  com.apple.speech.synthesis.framework (4.0.74 - 4.0.74) <C061ECBB-7061-3A43-8A18-90633F943295> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
        0x7fff8d88f000 -     0x7fff8d8bcff7  com.apple.opencl (1.50.62 - 1.50.62) <616ADE61-11D1-3816-A255-3F0F80F2EAC8> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
        0x7fff8d900000 -     0x7fff8d942ff7  libcommonCrypto.dylib (55010.0.0 - compatibility 1.0.0) <A5B9778E-11C3-3F61-B740-1F2114E967FB> /usr/lib/system/libcommonCrypto.dylib
        0x7fff8d943000 -     0x7fff8da58fff  com.apple.DesktopServices (1.6.0 - 1.6.0) <208D40FC-8BBE-330F-B999-18771BEA6895> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
        0x7fff8da59000 -     0x7fff8da76fff  libPng.dylib (??? - ???) <75DA9F95-C2A1-3534-9F8B-14CFFDE2A290> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
        0x7fff8dab2000 -     0x7fff8db36ff7  com.apple.ApplicationServices.ATS (5.0 - ???) <F10B1918-A06E-3ECF-85EF-05F0CF27187E> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
        0x7fff8db37000 -     0x7fff8db41ff7  com.apple.aps.framework (2.0 - 2.0) <4A15EAFC-937F-3448-B63C-5304AEB416DD> /System/Library/PrivateFrameworks/ApplePushService.framework/Versions/A/ApplePu shService
        0x7fff8e376000 -     0x7fff8e37bff7  libsystem_network.dylib (??? - ???) <4ABCEEF3-A3F9-3E06-9682-CE00F17138B7> /usr/lib/system/libsystem_network.dylib
        0x7fff8e37c000 -     0x7fff8e4d5ff7  com.apple.audio.toolbox.AudioToolbox (1.7 - 1.7) <296F10D0-A871-39C1-B8B2-9200AB12B5AF> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
        0x7fff8e4d6000 -     0x7fff8e4dcfff  libGFXShared.dylib (??? - ???) <DE6987C5-81AC-3AE6-84F0-138C9636D412> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
        0x7fff8e5a8000 -     0x7fff8ec769df  com.apple.CoreGraphics (1.600.0 - ???) <B3C42497-53F5-31BB-987E-D1E76746B0E4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
        0x7fff8ec77000 -     0x7fff8ec7aff7  com.apple.securityhi (4.0 - 1) <B37B8946-BBD4-36C1-ABC6-18EDBC573F03> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
        0x7fff8ec7b000 -     0x7fff8ec7bfff  com.apple.Cocoa (6.6 - ???) <021D4214-9C23-3CD8-AFB2-F331697A4508> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
        0x7fff8eca4000 -     0x7fff8ecacfff  libsystem_dnssd.dylib (??? - ???) <7749128E-D0C5-3832-861C-BC9913F774FA> /usr/lib/system/libsystem_dnssd.dylib
        0x7fff8ecad000 -     0x7fff8ecd1ff7  com.apple.Kerberos (1.0 - 1) <2FF2569B-F59A-371E-AF33-66297F512CB3> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
        0x7fff8ecd2000 -     0x7fff8ecdefff  com.apple.DirectoryService.Framework (10.7 - 144) <067ACB41-E9B7-3177-9EDE-C188D9B352DC> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
        0x7fff8edbf000 -     0x7fff8edd2ff7  libCRFSuite.dylib (??? - ???) <034D4DAA-63F0-35E4-BCEF-338DD7A453DD> /usr/lib/libCRFSuite.dylib
        0x7fff8edd3000 -     0x7fff8edd9ff7  libunwind.dylib (30.0.0 - compatibility 1.0.0) <1E9C6C8C-CBE8-3F4B-A5B5-E03E3AB53231> /usr/lib/system/libunwind.dylib
        0x7fff8edda000 -     0x7fff8ee2afff  com.apple.CoreMediaIO (201.0 - 3148) <66287EB0-61F1-3175-90DC-24BB29473C67> /System/Library/Frameworks/CoreMediaIO.framework/Versions/A/CoreMediaIO
        0x7fff8ee2b000 -     0x7fff8ee60fff  com.apple.securityinterface (5.0 - 55004) <790DDF7E-6BA9-36DD-B818-2322A712E1F5> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
        0x7fff8ee61000 -     0x7fff8f063fff  libicucore.A.dylib (46.1.0 - compatibility 1.0.0) <82DCB94B-3819-3CC3-BC16-2AACA7F64F8A> /usr/lib/libicucore.A.dylib
        0x7fff8f064000 -     0x7fff8f14bfff  com.apple.backup.framework (1.3 - 1.3) <C7F0B3B6-EAC1-3445-A705-E9F18A45D01D> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
        0x7fff8f14c000 -     0x7fff8f241fff  libiconv.2.dylib (7.0.0 - compatibility 7.0.0) <5C40E880-0706-378F-B864-3C2BD922D926> /usr/lib/libiconv.2.dylib
        0x7fff8f242000 -     0x7fff8f281ff7  libGLImage.dylib (??? - ???) <29F82AD9-45F0-3AC5-A4A4-B767EC555D82> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
        0x7fff8f282000 -     0x7fff8f2d5fff  libFontRegistry.dylib (??? - ???) <8FE14D77-1286-3619-A02E-0AC1A622596E> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
        0x7fff8f2d6000 -     0x7fff8f2e3ff7  libbz2.1.0.dylib (1.0.5 - compatibility 1.0.0) <8EDE3492-D916-37B2-A066-3E0F054411FD> /usr/lib/libbz2.1.0.dylib
        0x7fff8f2e4000 -     0x7fff8f2f2fff  com.apple.HelpData (2.1.0 - 68) <A2C4DDC9-2ECB-37C0-A2E3-D01168EE31F7> /System/Library/PrivateFrameworks/HelpData.framework/Versions/A/HelpData
        0x7fff8f2f3000 -     0x7fff8f31bff7  com.apple.CoreVideo (1.7 - 70.0) <59D5B407-CCB6-3406-8C55-C1B0168D7DC2> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
        0x7fff8f31c000 -     0x7fff8f323fff  libCGXCoreImage.A.dylib (600.0.0 - compatibility 64.0.0) <40374018-2832-3144-8114-CED417321C76> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXCoreImage.A.dylib
        0x7fff8f32a000 -     0x7fff8f4fdff7  com.apple.CoreFoundation (6.7 - 635) <57446B22-0778-3E07-9690-96AC705D57E8> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
        0x7fff8f4fe000 -     0x7fff8f502fff  libdyld.dylib (195.5.0 - compatibility 1.0.0) <F1903B7A-D3FF-3390-909A-B24E09BAD1A5> /usr/lib/system/libdyld.dylib
        0x7fff8f532000 -     0x7fff8f532fff  com.apple.Carbon (153 - 153) <895C2BF2-1666-3A59-A669-311B1F4F368B> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
        0x7fff8f533000 -     0x7fff8f547ff7  com.apple.LangAnalysis (1.7.0 - 1.7.0) <04C31EF0-912A-3004-A08F-CEC27030E0B2> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
        0x7fff8f548000 -     0x7fff8f555fff  com.apple.KerberosHelper (3.0 - 1.0) <040790B0-527E-337B-8E0D-CC4B4B36634B> /System/Library/PrivateFrameworks/KerberosHelper.framework/Versions/A/KerberosH elper
        0x7fff8f556000 -     0x7fff8f8a3ff7  com.apple.FinderKit (1.0 - 1) <906BCBF7-CBE6-36D2-A183-4980E73CA5EF> /System/Library/PrivateFrameworks/FinderKit.framework/Versions/A/FinderKit
        0x7fff8f8a4000 -     0x7fff8f8a8fff  libmathCommon.A.dylib (2026.0.0 - compatibility 1.0.0) <FF83AFF7-42B2-306E-90AF-D539C51A4542> /usr/lib/system/libmathCommon.A.dylib
        0x7fff8f8a9000 -     0x7fff8f8abff7  com.apple.IMServicePlugInSupport (1.0 - 1) <A566600F-3D38-3B98-91B5-421AE6D27192> /System/Library/Frameworks/IMServicePlugIn.framework/Versions/A/Frameworks/IMSe rvicePlugInSupport.framework/Versions/A/IMServicePlugInSupport
        0x7fff8f8f3000 -     0x7fff8f8fafff  com.apple.NetFS (4.0 - 4.0) <B9F41443-679A-31AD-B0EB-36557DAF782B> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
        0x7fff8f8fb000 -     0x7fff8f924fff  com.apple.datadetectors (3.0 - 172.0) <A63656A8-DDE4-3C52-98CF-8A3E42CB802D> /System/Library/PrivateFrameworks/DataDetectors.framework/Versions/A/DataDetect ors
        0x7fff8f999000 -     0x7fff8fa0eff7  libc++.1.dylib (19.0.0 - compatibility 1.0.0) <C0EFFF1B-0FEB-3F99-BE54-506B35B555A9> /usr/lib/libc++.1.dylib
        0x7fff8fa0f000 -     0x7fff8fa68fff  com.apple.Suggestions (1.0 - 84.0) <6B925EBB-CEEF-3134-8D25-2103F21DE624> /System/Library/PrivateFrameworks/Suggestions.framework/Versions/A/Suggestions
        0x7fff8fa69000 -     0x7fff8fa6bfff  com.apple.TrustEvaluationAgent (2.0 - 1) <80AFB5D8-5CC4-3A38-83B9-A7DF5820031A> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
        0x7fff8fa6c000 -     0x7fff8fa8bfff  libresolv.9.dylib (46.0.0 - compatibility 1.0.0) <33263568-E6F3-359C-A4FA-66AD1300F7D4> /usr/lib/libresolv.9.dylib
        0x7fff8fa8c000 -     0x7fff8fb8aff7  com.apple.QuickLookUIFramework (3.0 - 489.1) <A8A82434-D43D-3F12-9321-B2E8EC9B4B8E> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.f ramework/Versions/A/QuickLookUI
        0x7fff8fb8b000 -     0x7fff8ffa6fff  com.apple.SceneKit (2.0 - 124) <9E331DDE-BDF4-34C5-A8F9-E7F12ADBB785> /System/Library/PrivateFrameworks/SceneKit.framework/Versions/A/SceneKit
        0x7fff8ffa7000 -     0x7fff8fff5ff7  libauto.dylib (??? - ???) <F0004B88-CA01-37D0-A77F-6651C4EC7D8E> /usr/lib/libauto.dylib
        0x7fff8fff6000 -     0x7fff90057fff  com.apple.ExchangeWebServices (2.0 - 123) <EB227217-23C4-3EA0-A083-8DA900B74D35> /System/Library/PrivateFrameworks/ExchangeWebServices.framework/Versions/A/Exch angeWebServices
        0x7fff90058000 -     0x7fff9015aff7  libxml2.2.dylib (10.3.0 - compatibility 10.0.0) <D46F371D-6422-31B7-BCE0-D80713069E0E> /usr/lib/libxml2.2.dylib
        0x7fff9015b000 -     0x7fff9046dfff  com.apple.Foundation (6.7 - 833.1) <618D7923-3519-3C53-9CBD-CF3C7130CB32> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
        0x7fff9046e000 -     0x7fff904a3fff  libTrueTypeScaler.dylib (??? - ???) <DBF3758F-EA51-3009-840E-CA5B8B466F3C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libTrueTypeScaler.dylib
        0x7fff904a4000 -     0x7fff90518fff  com.apple.WhitePagesFramework (10.7.0 - 141.0) <6585161A-628F-3467-82A4-ECBF1FE7184D> /System/Library/PrivateFrameworks/WhitePages.framework/Versions/A/WhitePages
        0x7fff90519000 -     0x7fff9052bff7  libsasl2.2.dylib (3.15.0 - compatibility 3.0.0) <6245B497-784B-355C-98EF-2DC6B45BF05C> /usr/lib/libsasl2.2.dylib
        0x7fff906d5000 -     0x7fff906d8fff  com.apple.AppleSystemInfo (1.0 - 1) <598ADC13-C994-3579-A885-0D6658DDD564> /System/Library/PrivateFrameworks/AppleSystemInfo.framework/Versions/A/AppleSys temInfo
        0x7fff906d9000 -     0x7fff906d9fff  com.apple.CoreServices (53 - 53) <5946A0A6-393D-3087-86A0-4FFF6A305CC0> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
        0x7fff906da000 -     0x7fff9083dfff  com.apple.CFNetwork (520.0.13 - 520.0.13) <67E3BB43-2A22-3F5A-964E-391375B24CE0> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
        0x7fff9083e000 -     0x7fff90844ff7  com.apple.phonenumbers (1.0 - 47) <8CE13253-C65B-392F-B87F-D85A15D500D3> /System/Library/PrivateFrameworks/PhoneNumbers.framework/Versions/A/PhoneNumber s
        0x7fff90cd0000 -     0x7fff90ff3fff  com.apple.HIToolbox (1.7 - ???) <10FA3432-6638-39D9-8681-9E95298D239E> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
        0x7fff90ff4000 -     0x7fff91426fe7  com.apple.VideoToolbox (1.0 - 705.35) <B1B9F159-EEE2-38BB-A55E-CDB335A7A226> /System/Library/PrivateFrameworks/VideoToolbox.framework/Versions/A/VideoToolbo x
        0x7fff91427000 -     0x7fff91452fff  libpcre.0.dylib (1.1.0 - compatibility 1.0.0) <7D3CDB0A-840F-3856-8F84-B4A50E66431B> /usr/lib/libpcre.0.dylib
        0x7fff91453000 -     0x7fff914f7fef  com.apple.ink.framework (1.3.2 - 110) <F69DBD44-FEC8-3C14-8131-CC0245DBBD42> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
        0x7fff914f8000 -     0x7fff914ffff7  com.apple.CommerceCore (1.0 - 17) <AA783B87-48D4-3CA6-8FF6-0316396022F4> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/C ommerceCore.framework/Versions/A/CommerceCore
        0x7fff91500000 -     0x7fff91501fff  libsystem_sandbox.dylib (??? - ???) <8D14139B-B671-35F4-9E5A-023B4C523C38> /usr/lib/system/libsystem_sandbox.dylib
        0x7fff91502000 -     0x7fff9152bff7  com.apple.framework.Apple80211 (7.0 - 700.57) <0D7D7E08-377B-32F0-AD91-673F992B5CFF> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
        0x7fff9152c000 -     0x7fff91531fff  libpam.2.dylib (3.0.0 - compatibility 3.0.0) <D952F17B-200A-3A23-B9B2-7C1F7AC19189> /usr/lib/libpam.2.dylib
        0x7fff91532000 -     0x7fff9169dff7  com.apple.syncservices (6.0 - 673) <901673E1-85DF-307C-B9BB-167BAAC74B14> /System/Library/Frameworks/SyncServices.framework/Versions/A/SyncServices
        0x7fff9169e000 -     0x7fff916b0ff7  libbsm.0.dylib (??? - ???) <349BB16F-75FA-363F-8D98-7A9C3FA90A0D> /usr/lib/libbsm.0.dylib
        0x7fff916b1000 -     0x7fff916b6fff  libGIF.dylib (??? - ???) <21851808-BFD2-3141-8354-A419479726BF> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
        0x7fff916b7000 -     0x7fff91ae4fff  libLAPACK.dylib (??? - ???) <4F2E1055-2207-340B-BB45-E4F16171EE0D> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
        0x7fff91ae5000 -     0x7fff91b28ff7  libRIP.A.dylib (600.0.0 - compatibility 64.0.0) <2B1571E1-8E87-364E-BC36-C9C9B5D3EAC4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
        0x7fff91b29000 -     0x7fff91b71fff  com.apple.framework.CoreWLAN (2.0 - 200.46) <04AFD988-DDFB-330D-B042-C1EB2826A0CC> /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN
        0x7fff91b72000 -     0x7fff91bacfff  com.apple.DebugSymbols (2.1 - 85) <AEF473A5-25BF-3FB7-9A07-320D9CB85959> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbol s
        0x7fff91bad000 -     0x7fff91dbafff  com.apple.JavaScriptCore (7534 - 7534.48) <99B60407-592A-3DDC-A3D0-86578B92B3F8> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
        0x7fff91dcb000 -     0x7fff9255ffff  com.apple.CoreAUC (6.11.03 - 6.11.03) <5A56B2DC-A0A6-357B-ADF2-5714AFEBD926> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
        0x7fff92560000 -     0x7fff9258ffff  com.apple.DictionaryServices (1.2 - 158) <2CE51CD1-EE3D-3618-9507-E39A09C9BB8D> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
        0x7fff925d4000 -     0x7fff925fffff  com.apple.speech.LatentSemanticMappingFramework (2.8.10 - 2.8.10) <09D59AFB-6CCD-37E1-8A41-8C45217E7612> /System/Library/Frameworks/LatentSemanticMapping.framework/Versions/A/LatentSem anticMapping
        0x7fff92600000 -     0x7fff92606fff  IOSurface (??? - ???) <06FA3FDD-E6D5-391F-B60D-E98B169DAB1B> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
        0x7fff92607000 -     0x7fff92612fff  com.apple.DisplayServicesFW (2.5.0 - 302.1.2) <36377733-C737-3F36-A601-85D6188A2AAA> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
        0x7fff92613000 -     0x7fff92718ff7  libFontParser.dylib (??? - ???) <22AADE96-E54D-3918-9DFA-1967F8B21E54> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
        0x7fff92735000 -     0x7fff927fcff7  com.apple.ColorSync (4.7.0 - 4.7.0) <A29897D7-4B63-3BBB-B66C-710BE9CC01D8> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
        0x7fff927fd000 -     0x7fff92851ff7  com.apple.ScalableUserInterface (1.0 - 1) <1873D7BE-2272-31A1-8F85-F70C4D706B3B> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/ScalableU serInterface.framework/Versions/A/ScalableUserInterface
        0x7fff9285a000 -     0x7fff9293afff  com.apple.CoreServices.OSServices (478.25 - 478.25) <CA11FC11-2F93-3C8A-8077-A67F381A3EBE> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
        0x7fff9293d000 -     0x7fff929effff  com.apple.CoreText (4.0.0 - ???) <D7BD85FD-277A-3A97-B1AD-5EE14215237E> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
        0x7fff92aff000 -     0x7fff92b0cfff  libCSync.A.dylib (600.0.0 - compatibility 64.0.0) <931F40EB-CA75-3A90-AC97-4DB8E210BC76> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
        0x7fff92cf4000 -     0x7fff92d6fff7  com.apple.print.framework.PrintCore (7.0 - 366) <E663DF78-6729-332D-B763-ABB63A6BBB55> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
        0x7fff92d70000 -     0x7fff92d76fff  com.apple.DiskArbitration (2.4 - 2.4) <5185FEA6-92CA-3CAA-8442-BD71DBC64AFD> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
        0x7fff92d77000 -     0x7fff92d85fff  libdispatch.dylib (187.5.0 - compatibility 1.0.0) <698F8EFB-7075-3111-94E3-891156C88172> /usr/lib/system/libdispatch.dylib
        0x7fff92d86000 -     0x7fff92e63fef  libsystem_c.dylib (763.11.0 - compatibility 1.0.0) <1D61CA57-3C6D-30F7-89CB-CC6F0787B1DC> /usr/lib/system/libsystem_c.dylib
        0x7fff92e64000 -     0x7fff92e73fff  com.apple.opengl (1.7.4 - 1.7.4) <38AF4430-7E81-3C98-9330-21DCDA90507E> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
        0x7fff92e74000 -     0x7fff92ed4fff  libvDSP.dylib (325.3.0 - compatibility 1.0.0) <74B62E70-4189-3022-8FC9-1182EA7C6E34> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
        0x7fff92ed5000 -     0x7fff93523ff7  libclh.dylib (4.0.3 - 4.0.3) <C325AA07-5B58-399B-956A-898290177162> /System/Library/Extensions/GeForceGLDriver.bundle/Contents/MacOS/libclh.dylib
        0x7fff93524000 -     0x7fff9358bff7  com.apple.audio.CoreAudio (4.0.0 - 4.0.0) <0B715012-C8E8-386D-9C6C-90F72AE62A2F> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
        0x7fff9358c000 -     0x7fff94184fff  com.apple.AppKit (6.7 - 1138) <C8D2FDDA-B9D5-3948-A376-6B9B6F0596C6> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
        0x7fff94185000 -     0x7fff941aefff  com.apple.CoreServicesInternal (113.7 - 113.7) <ACAC98CD-5941-39DB-951A-2509DCCD22FD> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/Cor eServicesInternal
        0x7fff941af000 -     0x7fff941bdff7  libkxld.dylib (??? - ???) <65BE345D-6618-3D1A-9E2B-255E629646AA> /usr/lib/system/libkxld.dylib
        0x7fff941dd000 -     0x7fff9421bfff  com.apple.bom (11.0 - 183) <841FA160-A37A-368D-B14E-27AA9DD1AEDA> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
        0x7fff9421c000 -     0x7fff94300def  libobjc.A.dylib (228.0.0 - compatibility 1.0.0) <C5F2392D-B481-3A9D-91BE-3D039FFF4DEC> /usr/lib/libobjc.A.dylib
        0x7fff94303000 -     0x7fff943a5ff7  com.apple.securityfoundation (5.0 - 55005) <0D59908C-A61B-389E-AF37-741ACBBA6A94> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
        0x7fff943a6000 -     0x7fff943cffff  libJPEG.dylib (??? - ???) <3DBFEB41-4BF2-3502-872A-BB3738EE61B0> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
        0x7fff943d0000 -     0x7fff9440bfff  com.apple.LDAPFramework (3.0 - 120.1) <0C23534F-A8E7-3144-B2B2-50F9875101E2> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
        0x7fff9440c000 -     0x7fff9450ffff  libsqlite3.dylib (9.6.0 - compatibility 9.0.0) <ED5E84C6-646D-3B70-81D6-7AF957BEB217> /usr/lib/libsqlite3.dylib
        0x7fff94510000 -     0x7fff94586fff  com.apple.ISSupport (1.9.8 - 56) <2CEE7E6B-D841-36D8-BC9F-081B33F6E501> /System/Library/PrivateFrameworks/ISSupport.framework/Versions/A/ISSupport
        0x7fff94587000 -     0x7fff94801ff7  com.apple.imageKit (2.1 - 1.0) <03200568-184B-36E8-AFE9-04D1FACDC926> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
        0x7fff94802000 -     0x7fff9481cfff  com.apple.CoreMediaAuthoring (2.0 - 889) <99D8E4C6-DDD3-3B0C-BBFB-A513877F10F6> /System/Library/PrivateFrameworks/CoreMediaAuthoring.framework/Versions/A/CoreM ediaAuthoring
        0x7fff9481d000 -     0x7fff94840ff7  com.apple.RemoteViewServices (1.0 - 1) <EB549657-8EDC-312A-B8BE-DEC3E160AC3D> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/Remot eViewServices
        0x7fff9485e000 -     0x7fff94997fef  com.apple.vImage (5.0 - 5.0) <C45D2CBE-FA15-3D13-9E9D-A3BF57B84BBE> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
        0x7fff94998000 -     0x7fff94998fff  com.apple.Accelerate (1.7 - Accelerate 1.7) <3E4582EB-CFEF-34EA-9DA8-8421F1C3C77D> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
        0x7fff949d4000 -     0x7fff94a33fff  com.apple.coredav (1.0 - 106.1) <F89A9ED4-7824-3E3C-9FD4-3700C45187D5> /System/Library/PrivateFrameworks/CoreDAV.framework/Versions/A/CoreDAV
        0x7fff94a34000 -     0x7fff94a6dfe7  libssl.0.9.8.dylib (0.9.8 - compatibility 0.9.8) <D634E4B6-672F-3F68-8B6F-C5028151A5B4> /usr/lib/libssl.0.9.8.dylib
        0x7fff94a6e000 -     0x7fff94a78ff7  liblaunch.dylib (392.18.0 - compatibility 1.0.0) <39EF04F2-7F0C-3435-B785-BF283727FFBD> /usr/lib/system/liblaunch.dylib
        0x7fff94a8a000 -     0x7fff94ab5ff7  libxslt.1.dylib (3.24.0 - compatibility 3.0.0) <8051A3FC-7385-3EA9-9634-78FC616C3E94> /usr/lib/libxslt.1.dylib
        0x7fff94ab6000 -     0x7fff94ad3fff  com.apple.frameworks.preferencepanes (15.0 - 15.0) <CC86755A-6CF1-3DDF-A1B0-6F7F5BD7BB39> /System/Library/Frameworks/PreferencePanes.framework/Versions/A/PreferencePanes
        0x7fff94ad4000 -     0x7fff94afafff  com.apple.framework.internetaccounts (1.0 - 1) <64CC50BB-9EE4-36D1-969A-FDD2210026DC> /System/Library/PrivateFrameworks/InternetAccounts.framework/Versions/A/Interne tAccounts
        0x7fff94aff000 -     0x7fff94b1cff7  libxpc.dylib (77.16.0 - compatibility 1.0.0) <0A4B4775-29A9-30D6-956B-3BE1DBF98090> /usr/lib/system/libxpc.dylib
        0x7fff94b1d000 -     0x7fff94b1dfff  com.apple.quartzframework (1.5 - 1.5) <21FCC91F-C7B9-304F-8C9C-04F3924F4AE3> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
        0x7fff94b1e000 -     0x7fff94b2cff7  com.apple.AppleFSCompression (37 - 1.0) <88C436E8-38AE-3D96-A8C8-2D1805CC47B7> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/Apple FSCompression
        0x7fff94b2d000 -     0x7fff94b53ff7  com.apple.framework.familycontrols (3.0 - 300) <72FEA71A-5865-3875-97E9-3C8C96B7F7FA> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
        0x7fff94b58000 -     0x7fff94bbaff7  com.apple.coreui (0.3 - 162) <A752F9D0-1CAE-340F-B2D2-95EEF242B301> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
        0x7fff94c3d000 -     0x7fff94c64fff  com.apple.PerformanceAnalysis (1.10 - 10) <2A058167-292E-3C3A-B1F8-49813336E068> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/Perf ormanceAnalysis
        0x7fff94c65000 -     0x7fff94c67fff  libCVMSPluginSupport.dylib (??? - ???) <2D21E6BE-CB20-3F76-8DCC-1CB0660A8A5B> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginS upport.dylib
        0x7fff94cf9000 -     0x7fff951a0ff7  FaceCoreLight (1.4.2 - compatibility 1.0.0) <6F89E9A9-DEB6-32B5-8B50-3B97F5DB597D> /System/Library/PrivateFrameworks/FaceCoreLight.framework/Versions/A/FaceCoreLi ght
        0x7fff951a1000 -     0x7fff951b6fff  com.apple.FileSync.framework (6.0 - 432) <7DF40003-7A8A-3C42-AC26-FCA0A0DFEE17> /System/Library/PrivateFrameworks/FileSync.framework/Versions/A/FileSync
        0x7fff951b7000 -     0x7fff951b8fff  com.apple.MonitorPanelFramework (1.4.0 - 1.4.0) <0F55CD76-DB24-309B-BD12-62B00C1AAB9F> /System/Library/PrivateFrameworks/MonitorPanel.framework/Versions/A/MonitorPane l
        0x7fff951b9000 -     0x7fff951c4ff7  libc++abi.dylib (14.0.0 - compatibility 1.0.0) <8FF3D766-D678-36F6-84AC-423C878E6D14> /usr/lib/libc++abi.dylib
        0x7fff951c5000 -     0x7fff952d2fff  libJP2.dylib (??? - ???) <D8257CEE-A1C3-394A-8193-6DB7C29A15A8> /System/Library/Frameworks/A

  • Today I tried to shutdown my computer and a window popped up saying that my computer could not shut down because the mail application was open, it wouldn't close, so I used a key combination to force mail to quit and now I can't log in. Help?

    Okay, so I have been having trouble with my mail application all week. The window refused to open and would not quit. Today, I tried to shut down my mac and a pop up window told me that I was unable to shutdown because mail was open. After using a key combination, I successfully was able to quit mail with force quit. Then I was able to shut down with out a problem. However, upon rebooting, my computer refused to let me loggin. I put in my password correctly but then the rainbow pinwheel showed up and stalled for a minute and then my screen flashed and the gray screen reappeared, expecting a password. I tried turning it off and back on again with no luck. I also reset my password after reading a similar discussion, but I still can't log in. How can I fix this?

    Startup - Gray, Blue or White screen at boot, w/spinner/progress bar
    Startup Issues - Resolve
    Startup Issues - Resolve (2)
    Avast! Uninstall

  • Need Help - Mail Application Folder Issues

    I have 2 mail accounts. One is an exchange account, another is a standard hosted mail service with IMAP interface.
    Both are setup as IMAP (Exchange option didn't show all folders, so I had to use IMAP for Exchange.)
    The mail application just plain doesn't work for any folder management, on either account.
    If I move messages, it's not moved on the server. If I send a message, it isn't stored in the Sent folders.
    Most of the time, it doesn't put the mail anywhere. When I send mail messages, it creates a Sent items folder under the drafts folder.
    The IMAP prefixes are correct, and I can see all folders. The Folder behaviors are set to the proper server side folders.
    I've restored, rebooted, etc.
    Any other suggestions?

    There are no synchronize options on the PC mail apps, they are live clients. Outlook for work, OWA for my personal account.
    This problem is happening with two accounts. One personal exchange, and one externally hosted (not exchange, actually webmail.us) for our company.
    I am the Senior Software Architect/Engineer for the IT department and I have spoken with webmail.us as well as our infrastructure group and am very familiar with Exchange.
    All issues and troubleshooting steps so far point to the need to troubleshoot the client application itself on the iPhone, especially since other IMAP clients have no issue using the exact same settings.
    As a matter of fact, everything works 100% fine from the OSX mail client using IMAP for the exact same accounts with the exact same settings on my MacBook ultimate.
    It makes a copy of a moved message in the proper folder, and leaves the original in the inbox. This is how the iPhone client should work, right?
    Message was edited by: bitslap47

  • My mail application is canceling my shut down request. Can anyone help?

    When I try to shutdown or restart my Macbook I receive a message saying that the mail application has canceled my request. This is despite me having already quit the mail application. After I receive this message the mail application starts up again. I have tried using "force quit" to fully quit the mail application, but get the same result. I haven't been able to shut down my Macbook for a couple of days. Has anyone any idea of what's happening?

    Tomfromblackrock, if you're Activity Monitor does not indicate that Mail is "Not Responding" then I suggest you hold down the power button on your machine until it powers down.  I have had this problem, too and that is the only way I have been able to shut down.
    My email account was hacked into and shut down by my provider until I changed my password.  Ever since I have not been able to close Mail or shut down my machine.  Also, when I do this extreme shutdown I have found that Mail automatically launches upon restart.  I do not have it designated to do so.  I would love to know if your Mail program does the same thing.  Good luck.

  • Problem with mail application... help please!??

    Hello!
    My mail application on my macbook air won't quit and when I try to restart or shut down my computer, I am asked to qui the mail application before... What can I do to resolve this problem?

    Hi GB,
    The thing is that there is no too much to tell Mail gets stuck eveytime I swith off my computer. The only info I can give you is that:
    - I have 5 desktops
    - desktop 1 = shows nothing
    - desktop 2 = shows Safari
    - desktop 3 = shows Safari
    - desktop 4 = shows Mail
    - desktop 5 = shows Calendar, itunes, Messenger...
    Everytime I shutdown the computer, Mail fails to quit. Everytime I swith on the computer, my desktop move to a diferent position... it is very annoying
    thank you

  • HELP!  Can i set up mail application using my MSN hotmail account????

    can i use my hotmail address in the mail application, and how can i set it up??? i can't seem to figure it out!!!!

    Unfortunately hotmail requires you to pay a fee to have your e-mail go through a mail application, like Apple Mail. Contact their customer service to see about fees, as well as set up process.
    Cody

Maybe you are looking for