Mail is getting recipients mixed up

When I write certain names in the the 'to' field it has somehow gotten the names mixed up, for example when I write Karen .... it comes up with the correct email address but it tags it as Matt... .
I have gone to my previous recipients and deleted the addresses but it still does it. Is there anyone that can help me out? I keep sending emails to the wrong people!
I am using mail version 3.5.
Thanks
Kai

I have just discovered that I have made an entry in my address book with several email addresses under one name (I don't know why and I don't know when). I deleted that and it was sorted.
Thanks!

Similar Messages

  • Sending Mails to Multiple Recipients using UTL_SMTP

    create or replace procedure send_mail(msg_text varchar2) is
    c utl_smtp.connection;
    PROCEDURE send_header(name IN VARCHAR2, header IN VARCHAR2) AS
    BEGIN
    utl_smtp.write_data(c, name || ': ' || header || utl_tcp.CRLF);
    END;
    BEGIN
    c := utl_smtp.open_connection('outlook.abc.com');
    utl_smtp.helo(c, 'abc.com');
    utl_smtp.mail(c, '[email protected]');
    utl_smtp.rcpt(c, '[email protected]');
    utl_smtp.open_data(c);
    send_header('From', '"root" <[email protected]>');
    send_header('To', '"abc" <[email protected]>');
    send_header('Subject', 'WARNING: Salary has been changed');
    utl_smtp.write_data(c, utl_tcp.CRLF || msg_text);
    utl_smtp.close_data(c);
    utl_smtp.quit(c);
    EXCEPTION
    WHEN utl_smtp.transient_error OR utl_smtp.permanent_error THEN
    BEGIN
    utl_smtp.quit(c);
    EXCEPTION
    WHEN utl_smtp.transient_error OR utl_smtp.permanent_error THEN
    NULL; -- When the SMTP server is down or unavailable, we don't have
    -- a connection to the server. The quit call will raise an
    -- exception that we can ignore.
    END;
    raise_application_error(-20000,
    'Failed to send mail due to the following error: ' || sqlerrm);
    END;
    ==============
    when I execute the above using
    sql> exec send_mail('hihihih');
    I am getting the mails..no problems...
    So..I created the following trigger and used the above procedure to send the mail...
    CREATE OR REPLACE TRIGGER test_emp_table_trg
    AFTER UPDATE
    ON test_emp_table
    FOR EACH ROW
    WHEN (NEW.sal <> OLD.sal)
    DECLARE
    l_employee_name VARCHAR2 (240);
    l_old_sal VARCHAR2 (240);
    l_new_sal VARCHAR2 (240);
    l_message VARCHAR2 (240);
    BEGIN
    /* Gets the employee full name */
    BEGIN
    SELECT ename
    INTO l_employee_name
    FROM test_emp_table
    WHERE empno = :OLD.empno;
    EXCEPTION
    WHEN OTHERS
    THEN
    l_employee_name := NULL;
    END;
    /* Gets the old Salary */
    BEGIN
    SELECT sal
    INTO l_old_sal
    FROM test_emp_table
    WHERE empno = :OLD.empno;
    EXCEPTION
    WHEN OTHERS
    THEN
    l_old_sal := 0;
    END;
    /* Gets the new salary */
    BEGIN
    SELECT sal
    INTO l_new_sal
    FROM test_emp_table
    WHERE empno= :NEW.empno;
    EXCEPTION
    WHEN OTHERS
    THEN
    l_new_sal := 0;
    END;
    l_message:=
    'Employee Name= '
    || l_employee_name
    || 'Old Salary= '
    || l_old_sal
    || 'New Salary= '
    || l_new_sal;
    BEGIN
    send_mail (l_message);
    END;
    END;
    ===================
    I am not getting desired output..what might be problem friends...I am getting 0 values for old salary and new salary......
    One more thing..when i use 2 receipts in the send_mail procedure like this...I added the following lines in the procedure to send to multiple receipents..
    ======
    utl_smtp.rcpt(c, '[email protected]');
    utl_smtp.rcpt(c, '[email protected]');
    =============
    Pleas have a look and correct me, where i went wrong....
    Edited by: oraDBA2 on Sep 22, 2008 3:12 PM

    Hi, You can use the following routine to send mail to multiple recipients through utl_smtp.
    create or replace package mail_pkg
    as
    type array is table of varchar2(255);
    procedure send( p_sender_e_mail in varchar2,
    p_from in varchar2,
    p_to in array default array(),
    p_cc in array default array(),
    p_bcc in array default array(),
    p_subject in varchar2,
    p_body in long );
    end;
    create or replace package body mail_pkg
    begin
    g_crlf char(2) default chr(13)||chr(10);
    g_mail_conn utl_smtp.connection;
    g_mailhost varchar2(255) := 'ur mail server';
    function address_email( p_string in varchar2,
    p_recipients in array ) return varchar2
    is
    l_recipients long;
    begin
    for i in 1 .. p_recipients.count
    loop
    utl_smtp.rcpt(g_mail_conn, p_recipients(i));
    if ( l_recipients is null )
    then
    l_recipients := p_string || p_recipients(i) ;
    else
    l_recipients := l_recipients || ', ' || p_recipients(i);
    end if;
    end loop;
    return l_recipients;
    end;
    procedure send( p_sender_e_mail in varchar2,
    p_from in varchar2,
    p_to in array default array(),
    p_cc in array default array(),
    p_bcc in array default array(),
    p_subject in varchar2,
    p_body in long );
    end;
    is
    l_to_list long;
    l_cc_list long;
    l_bcc_list long;
    l_date varchar2(255) default
    to_char( SYSDATE, 'dd Mon yy hh24:mi:ss' );
    procedure writeData( p_text in varchar2 )
    as
    begin
    if ( p_text is not null )
    then
    utl_smtp.write_data( g_mail_conn, p_text || g_crlf );
    end if;
    end;
    begin
    g_mail_conn := utl_smtp.open_connection(g_mailhost, 25);
    utl_smtp.helo(g_mail_conn, g_mailhost);
    utl_smtp.mail(g_mail_conn, p_sender_e_mail);
    l_to_list := address_email( 'To: ', p_to );
    l_cc_list := address_email( 'Cc: ', p_cc );
    l_bcc_list := address_email( 'Bcc: ', p_bcc );
    utl_smtp.open_data(g_mail_conn );
    writeData( 'Date: ' || l_date );
    writeData( 'From: ' || nvl( p_from, p_sender_e_mail ) );
    writeData( 'Subject: ' || nvl( p_subject, '(no subject)' ) );
    writeData( l_to_list );
    writeData( l_cc_list );
    utl_smtp.write_data( g_mail_conn, '' || g_crlf );
    utl_smtp.write_data(g_mail_conn, p_body );
    utl_smtp.close_data(g_mail_conn );
    utl_smtp.quit(g_mail_conn);
    end;
    end;
    begin
    mail_pkg.send
    (p_sender_e_mail => 'urmail',
    p_from => 'urmail',
    p_to => mail_pkg.array( 'urmail','othersmail' ),
    p_cc => mail_pkg.array( ' othermail ' ),
    p_bcc => mail_pkg.array( '' ),
    p_subject => 'This is a subject',
    p_body => 'Hello Buddy, this is the mail you need' );
    end;
    /

  • Sending mails to multiple recipients

    Hi,
    I need to send an e-mail to multiple recipients, none of which may know that the mail was sent to others as well. Of course, the first idea was to use the BCC-field. However, if I do that, the receipients get a mail with an empty To-Field, which looks both stupid and suspicious. Is there a way to send a mail in such a way that each recpient has their own address in the To-Field? I also played around a bit with Automator but I couldn't find anything.

    Hi Phunkjoker!
    I don't think you can, except by sending each individually.
    The only alternative that I can figure out is to send it to yourself, and have the other recipients in the BCC field?

  • Hyperlink in mail message gets changed

    I'm having trouble mailing webpage addresses. If I copy and paste an address into an email the entire thing does not get underlined so when recipients click on it they don't get the entire address. If I use mail/edit/add hyperlink and paste the address into the hyperlink address box, it gets changed; after the % extra characters are getting pasted in.
    anyone else having this problem or know what to do about it?
    thanks!
    iBook G4   Mac OS X (10.4.7)  

    They get added because when replying, or forwarding
    an e-mail you get quotes added as well as spaces.
    And e-mail programs don't deal with long strings of
    text very well.
    thanks for the help! I'm a regular subscriber to tinyurl now! My next problem is figuring out how to get my movies viewed by folks.

  • Mail - importing 'previous recipients' information following OS upgrade

    Hi,
    I've encountered a problem following my recent upgrade to Mountain Lion.
    I previously ran Snow Leopard and over time my Mail app had built up a long list of everyone that I'd ever sent an e-mail to through its Previous Recipients function. I didn't get on board with adding these contacts to my Address Book early enough so by the time I realised that would be a good idea I felt there were far too many for the job to be worthwhile. It wouldn't have been a straightforward 'add all' job since some of the contact info was no doubt incomplete or undesireable.
    Now that I don't have Mail auto-filling the recipient field I've realised I don't actually know any of my regular contact's e-mail addresses. This is a problem...
    I'm wondering if in Snow Leopard, Mail's previous recipients were stored in a file somewhere and if it would be possible to simply copy that file to the appropriate directory in Mountain Lion to solve my problem. I understand that the list will have some contacts that I'm not interested in but between that and having none at all there isn't really a choice.
    So, to summarise:
    Recent upgrader from Snow Leopard to Mountain Lion (Macbook being my only piece of Apple gear, also yet to adopt iCloud)
    Mail user, reliant on 'previous recipients' auto-fill feature in 'send to' field (no contacts have been added to address book)
    Seeking to copy previous recipients file from Snow Leopard back-up to appropriate Mountain Lion directory
    Is this possible? Here's hoping someone can help.
    Cheers
    Edit: I should probably mention that this was a clean install of Mountain Lion rather than an upgrade.

    Hi,
    I've encountered a problem following my recent upgrade to Mountain Lion.
    I previously ran Snow Leopard and over time my Mail app had built up a long list of everyone that I'd ever sent an e-mail to through its Previous Recipients function. I didn't get on board with adding these contacts to my Address Book early enough so by the time I realised that would be a good idea I felt there were far too many for the job to be worthwhile. It wouldn't have been a straightforward 'add all' job since some of the contact info was no doubt incomplete or undesireable.
    Now that I don't have Mail auto-filling the recipient field I've realised I don't actually know any of my regular contact's e-mail addresses. This is a problem...
    I'm wondering if in Snow Leopard, Mail's previous recipients were stored in a file somewhere and if it would be possible to simply copy that file to the appropriate directory in Mountain Lion to solve my problem. I understand that the list will have some contacts that I'm not interested in but between that and having none at all there isn't really a choice.
    So, to summarise:
    Recent upgrader from Snow Leopard to Mountain Lion (Macbook being my only piece of Apple gear, also yet to adopt iCloud)
    Mail user, reliant on 'previous recipients' auto-fill feature in 'send to' field (no contacts have been added to address book)
    Seeking to copy previous recipients file from Snow Leopard back-up to appropriate Mountain Lion directory
    Is this possible? Here's hoping someone can help.
    Cheers
    Edit: I should probably mention that this was a clean install of Mountain Lion rather than an upgrade.

  • How do I remove a distribution list from Mac Mail's Previous Recipients list? 10.9.2

    I have a few pesky distribution lists that live on as ghosts. Distribution lists do not show up in Mail's Previous Recipients list. Any help as to how to remove them?
    The distribution lists I want to get rid of are not in my Contacs.
    Thank you,
    Rand

    Dear Allan,  Very interesting solutions to a stuck disk.  I'm going to keep it for future.
    I finally did get my disk out - because I started up using my Mtn.Lion BU (it's a Firewire) which I connected to my old MM late 2009.  There she was & I ejected it.
    And I did finally get my MM  2009 working again with Snow Leopard - with the great help from ds store.
    So now I have my Appleworks back too.   YAH!

  • When I open mail I get a list of the messages received but when I click on a message it does not displaying the main window. I have 2 different mail accounts

    Just bought a new MacMini(my first Apple PC) and when I open mail I get the brief details of mail received but whe I click on the message to read the details I get a "loading" sign but the message is not displayed.
    Any help for a Dumbo would be appreciated.

    Very strange, do you have any AV or Web filtering apps like Norton installed?
    Do the working accounts use a different Port or Authentication than the non-working one?
    The receiving email ports are:
    IMAP is port 143
    IMAP-SSL is port 993
    POP is port 110
    POP-SSL is port 995

  • On 10.4.11 Mac Mail I get this: Mail cannot update your mailboxes because your home directory is full. You must free up space in your home folder before using Mail. Delete unnedded documents or move documents to another volume. I can't open mail.

    On 10.4.11 iMac Mac Mail I get this message: "Mail cannot update your mailboxes because your home directory is full. You must free up space in your home folder before using Mail. Delete unneeded documents or move documents to another volume." I can't open mail to do this. I have reinstalled software but no effect. How do I get into Mail to delete?

    Found this on the "more like this" Worked like a charm!
    With the Mail.app quit and using the Finder, go to Home > Library > Mail. Copy the Mail folder and place the copy on the Desktop for backup purposes.
    Go to Home > Library > Mail > Envelope Index. Move the Envelope Index file to the Desktop.
    Launch Mail and you will be prompted to import mailboxes. Select OK and allow the import process to complete.
    After confirming all mailboxes were successfully imported and available, you can delete the copy of the Mail folder and old Envelope Index file from the Desktop and this should resolve the problem.

  • When I try to open live hot mail I get this message:The Windows Live Network is unavailable from this site for one of the following reasons:

    When I try to open live hot mail I get this message: The Windows Live Network is unavailable from this site for one of the following reasons:
    * This site may be experiencing a problem
    * The site may not be a member of the Windows Live Network
    You can:
    * You can sign in or sign up at other sites on the Windows Live Network, or try again later at this site.
    However, when I open hot mail in IE it opens just fine. Tried changing the password as suggested but it did not help in Firefox.

    Clear the cache and the cookies from sites that cause problems.
    * "Clear the Cache": Tools > Options > Advanced > Network > Offline Storage (Cache): "Clear Now"
    * "Remove the Cookies" from sites causing problems: Tools > Options > Privacy > Cookies: "Show Cookies"

  • When I try and open mail I get an error repeatedly for choosing "...open or re-open" message and Mail quit unexpectedly

    When I was working on my G mail account , Mail quit and I can no longer re-open it ! Each time I try and open mail I get this message: The last time you opened Mail, it unexpectedly quit while reopening windows. Do you want to try to reopen its windows again? and When I try and open it, I can't.
    I followed some discussions like Safe Mode and deleting  folder of Library/Containers/com.apple.mail and trashing Library/Mail/.../v2 but unfortunately none of them didn't work!
    Enclosed. there are some results according to your discussions on Re: Mail quit unexpectedly but I can't send all of them specially SYSTEM LOG QUERIES ▹ All Messages based to another error which is :
    You have included content in your post that is not permitted.
    But I could send it to you via email or another way which you tell me.
    Please conduct me!
    Yours Sincerely
    Fattah.P
    12/22/1393 AP 3:29:40.231 AM Mail[493]: *** Terminating app due to uncaught exception 'NSInternalInconsistencyException', reason: 'Absolute path passed into -[MFIMAPAccount mailboxForRelativePath:isFilesystemPath:create:]: /Booking'
    *** First throw call stack:
        0   CoreFoundation                      0x000000010fd6664c __exceptionPreprocess + 172
        1   libobjc.A.dylib                     0x000000010e0fd6de objc_exception_throw + 43
        2   CoreFoundation                      0x000000010fd6642a +[NSException raise:format:arguments:] + 106
        3   Foundation                          0x000000010dc5b5b9 -[NSAssertionHandler handleFailureInMethod:object:file:lineNumber:description:] + 195
        4   Mail                                0x000000010d52324c -[MFMailAccount mailboxForRelativePath:isFilesystemPath:create:] + 251
        5   Mail                                0x000000010d4806f4 -[MFIMAPAccount mailboxForRelativePath:isFilesystemPath:create:] + 491
        6   Mail                                0x000000010d524986 +[MFMailAccount mailboxForURL:forceCreation:syncableURL:] + 473
        7   Mail                                0x000000010d53b458 __43+[MFMailbox queueUpdateCountsForMailboxes:]_block_invoke_2 + 68
        8   CoreFoundation                      0x000000010fc90ea6 __65-[__NSDictionaryM enumerateKeysAndObjectsWithOptions:usingBlock:]_block_invoke + 102
        9   CoreFoundation                      0x000000010fc90db9 -[__NSDictionaryM enumerateKeysAndObjectsWithOptions:usingBlock:] + 217
        10  Mail                                0x000000010d53b3a6 __43+[MFMailbox queueUpdateCountsForMailboxes:]_block_invoke + 275
        11  Foundation                          0x000000010dca52e8 __NSBLOCKOPERATION_IS_CALLING_OUT_TO_A_BLOCK__ + 7
        12  Foundation                          0x000000010db91905 -[NSBlockOperation main] + 97
        13  Foundation                          0x000000010db7059c -[__NSOperationInternal _start:] + 653
        14  Foundation                          0x000000010db701a3 __NSOQSchedule_f + 184
        15  libdispatch.dylib                   0x0000000111bdbc13 _dispatch_client_callout + 8
        16  libdispatch.dylib                   0x0000000111bdf365 _dispatch_queue_drain + 1100
        17  libdispatch.dylib                   0x0000000111be0ecc _dispatch_queue_invoke + 202
        18  libdispatch.dylib                   0x0000000111bde6b7 _dispatch_root_queue_drain + 463
        19  libdispatch.dylib                   0x0000000111becfe4 _dispatch_worker_thread3 + 91
        20  libsystem_pthread.dylib             0x0000000111f296cb _pthread_wqthread + 729
        21  libsystem_pthread.dylib             0x0000000111f274a1 start_wqthread + 13
    12/22/1393 AP 3:29:41.100 AM com.apple.xpc.launchd[1]: (com.apple.mail.254212[493]) Service exited due to signal: Abort trap: 6
    12/22/1393 AP 3:29:41.145 AM ReportCrash[489]: Saved crash report for Mail[493] version 8.0 (1990.1) to /Users/fattahp----/Library/Logs/DiagnosticReports/Mail_2015-03-13-032941_Fattah s-MacBook-Pro.crash
    12/22/1393 AP 3:30:20.173 AM Mail[502]: *** Assertion failure in -[MFIMAPAccount mailboxForRelativePath:isFilesystemPath:create:], /SourceCache/Mail/Mail-1990.1/MailFramework/Accounts/MFMailAccount.m:4467
    12/22/1393 AP 3:30:20.176 AM Mail[502]: An uncaught exception was raised
    12/22/1393 AP 3:30:20.176 AM Mail[502]: Absolute path passed into -[MFIMAPAccount mailboxForRelativePath:isFilesystemPath:create:]: /Booking
    12/22/1393 AP 3:30:20.177 AM Mail[502]: (
        0   CoreFoundation                      0x000000010f15c64c __exceptionPreprocess + 172
        1   libobjc.A.dylib                     0x000000010d4eb6de objc_exception_throw + 43
        2   CoreFoundation                      0x000000010f15c42a +[NSException raise:format:arguments:] + 106
        3   Foundation                          0x000000010d04d5b9 -[NSAssertionHandler handleFailureInMethod:object:file:lineNumber:description:] + 195
        4   Mail                                0x000000010c91024c -[MFMailAccount mailboxForRelativePath:isFilesystemPath:create:] + 251
        5   Mail                                0x000000010c86d6f4 -[MFIMAPAccount mailboxForRelativePath:isFilesystemPath:create:] + 491
        6   Mail                                0x000000010c911986 +[MFMailAccount mailboxForURL:forceCreation:syncableURL:] + 473
        7   Mail                                0x000000010c928458 __43+[MFMailbox queueUpdateCountsForMailboxes:]_block_invoke_2 + 68
        8   CoreFoundation                      0x000000010f086ea6 __65-[__NSDictionaryM enumerateKeysAndObjectsWithOptions:usingBlock:]_block_invoke + 102
        9   CoreFoundation                      0x000000010f086db9 -[__NSDictionaryM enumerateKeysAndObjectsWithOptions:usingBlock:] + 217
        10  Mail                                0x000000010c9283a6 __43+[MFMailbox queueUpdateCountsForMailboxes:]_block_invoke + 275
        11  Foundation                          0x000000010d0972e8 __NSBLOCKOPERATION_IS_CALLING_OUT_TO_A_BLOCK__ + 7
        12  Foundation                          0x000000010cf83905 -[NSBlockOperation main] + 97
        13  Foundation                          0x000000010cf6259c -[__NSOperationInternal _start:] + 653
        14  Foundation                          0x000000010cf621a3 __NSOQSchedule_f + 184
        15  libdispatch.dylib                   0x0000000110ff1c13 _dispatch_client_callout + 8
        16  libdispatch.dylib                   0x0000000110ff5365 _dispatch_queue_drain + 1100
        17  libdispatch.dylib                   0x0000000110ff6ecc _dispatch_queue_invoke + 202
        18  libdispatch.dylib                   0x0000000110ff46b7 _dispatch_root_queue_drain + 463
        19  libdispatch.dylib                   0x0000000111002fe4 _dispatch_worker_thread3 + 91
        20  libsystem_pthread.dylib             0x00000001113386cb _pthread_wqthread + 729
        21  libsystem_pthread.dylib             0x00000001113364a1 start_wqthread + 13
    12/22/1393 AP 3:30:20.179 AM Mail[502]: *** Terminating app due to uncaught exception 'NSInternalInconsistencyException', reason: 'Absolute path passed into -[MFIMAPAccount mailboxForRelativePath:isFilesystemPath:create:]: /Booking'
    *** First throw call stack:
        0   CoreFoundation                      0x000000010f15c64c __exceptionPreprocess + 172
        1   libobjc.A.dylib                     0x000000010d4eb6de objc_exception_throw + 43
        2   CoreFoundation                      0x000000010f15c42a +[NSException raise:format:arguments:] + 106
        3   Foundation                          0x000000010d04d5b9 -[NSAssertionHandler handleFailureInMethod:object:file:lineNumber:description:] + 195
        4   Mail                                0x000000010c91024c -[MFMailAccount mailboxForRelativePath:isFilesystemPath:create:] + 251
        5   Mail                                0x000000010c86d6f4 -[MFIMAPAccount mailboxForRelativePath:isFilesystemPath:create:] + 491
        6   Mail                                0x000000010c911986 +[MFMailAccount mailboxForURL:forceCreation:syncableURL:] + 473
        7   Mail                                0x000000010c928458 __43+[MFMailbox queueUpdateCountsForMailboxes:]_block_invoke_2 + 68
        8   CoreFoundation                      0x000000010f086ea6 __65-[__NSDictionaryM enumerateKeysAndObjectsWithOptions:usingBlock:]_block_invoke + 102
        9   CoreFoundation                      0x000000010f086db9 -[__NSDictionaryM enumerateKeysAndObjectsWithOptions:usingBlock:] + 217
        10  Mail                                0x000000010c9283a6 __43+[MFMailbox queueUpdateCountsForMailboxes:]_block_invoke + 275
        11  Foundation                          0x000000010d0972e8 __NSBLOCKOPERATION_IS_CALLING_OUT_TO_A_BLOCK__ + 7
        12  Foundation                          0x000000010cf83905 -[NSBlockOperation main] + 97
        13  Foundation                          0x000000010cf6259c -[__NSOperationInternal _start:] + 653
        14  Foundation                          0x000000010cf621a3 __NSOQSchedule_f + 184
        15  libdispatch.dylib                   0x0000000110ff1c13 _dispatch_client_callout + 8
        16  libdispatch.dylib                   0x0000000110ff5365 _dispatch_queue_drain + 1100
        17  libdispatch.dylib                   0x0000000110ff6ecc _dispatch_queue_invoke + 202
        18  libdispatch.dylib                   0x0000000110ff46b7 _dispatch_root_queue_drain + 463
        19  libdispatch.dylib                   0x0000000111002fe4 _dispatch_worker_thread3 + 91
        20  libsystem_pthread.dylib             0x00000001113386cb _pthread_wqthread + 729
        21  libsystem_pthread.dylib             0x00000001113364a1 start_wqthread + 13
    12/22/1393 AP 3:30:21.033 AM com.apple.xpc.launchd[1]: (com.apple.mail.254212[502]) Service exited due to signal: Abort trap: 6
    12/22/1393 AP 3:30:21.079 AM ReportCrash[489]: Saved crash report for Mail[502] version 8.0 (1990.1) to /Users/fattahp---/Library/Logs/DiagnosticReports/Mail_2015-03-13-033021_Fattahs -MacBook-Pro.crash
    12/22/1393 AP 3:32:47.234 AM Mail[529]: *** Assertion failure in -[MFIMAPAccount mailboxForRelativePath:isFilesystemPath:create:], /SourceCache/Mail/Mail-1990.1/MailFramework/Accounts/MFMailAccount.m:4467
    12/22/1393 AP 3:32:47.237 AM Mail[529]: An uncaught exception was raised
    12/22/1393 AP 3:32:47.237 AM Mail[529]: Absolute path passed into -[MFIMAPAccount mailboxForRelativePath:isFilesystemPath:create:]: /Booking
    12/22/1393 AP 3:32:47.238 AM Mail[529]: (
        0   CoreFoundation                      0x000000010fdbf64c __exceptionPreprocess + 172
        1   libobjc.A.dylib                     0x000000010e1516de objc_exception_throw + 43
        2   CoreFoundation                      0x000000010fdbf42a +[NSException raise:format:arguments:] + 106
        3   Foundation                          0x000000010dcb05b9 -[NSAssertionHandler handleFailureInMethod:object:file:lineNumber:description:] + 195
        4   Mail                                0x000000010d57c24c -[MFMailAccount mailboxForRelativePath:isFilesystemPath:create:] + 251
        5   Mail                                0x000000010d4d96f4 -[MFIMAPAccount mailboxForRelativePath:isFilesystemPath:create:] + 491
        6   Mail                                0x000000010d57d986 +[MFMailAccount mailboxForURL:forceCreation:syncableURL:] + 473
        7   Mail                                0x000000010d594458 __43+[MFMailbox queueUpdateCountsForMailboxes:]_block_invoke_2 + 68
        8   CoreFoundation                      0x000000010fce9ea6 __65-[__NSDictionaryM enumerateKeysAndObjectsWithOptions:usingBlock:]_block_invoke + 102
        9   CoreFoundation                      0x000000010fce9db9 -[__NSDictionaryM enumerateKeysAndObjectsWithOptions:usingBlock:] + 217
        10  Mail                                0x000000010d5943a6 __43+[MFMailbox queueUpdateCountsForMailboxes:]_block_invoke + 275
        11  Foundation                          0x000000010dcfa2e8 __NSBLOCKOPERATION_IS_CALLING_OUT_TO_A_BLOCK__ + 7
        12  Foundation                          0x000000010dbe6905 -[NSBlockOperation main] + 97
        13  Foundation                          0x000000010dbc559c -[__NSOperationInternal _start:] + 653
        14  Foundation                          0x000000010dbc51a3 __NSOQSchedule_f + 184
        15  libdispatch.dylib                   0x0000000111c42c13 _dispatch_client_callout + 8
        16  libdispatch.dylib                   0x0000000111c46365 _dispatch_queue_drain + 1100
        17  libdispatch.dylib                   0x0000000111c47ecc _dispatch_queue_invoke + 202
        18  libdispatch.dylib                   0x0000000111c456b7 _dispatch_root_queue_drain + 463
        19  libdispatch.dylib                   0x0000000111c53fe4 _dispatch_worker_thread3 + 91
        20  libsystem_pthread.dylib             0x0000000111f896cb _pthread_wqthread + 729
        21  libsystem_pthread.dylib             0x0000000111f874a1 start_wqthread + 13
    12/22/1393 AP 3:32:47.240 AM Mail[529]: *** Terminating app due to uncaught exception 'NSInternalInconsistencyException', reason: 'Absolute path passed into -[MFIMAPAccount mailboxForRelativePath:isFilesystemPath:create:]: /Booking'
    *** First throw call stack:
        0   CoreFoundation                      0x000000010fdbf64c __exceptionPreprocess + 172
        1   libobjc.A.dylib                     0x000000010e1516de objc_exception_throw + 43
        2   CoreFoundation                      0x000000010fdbf42a +[NSException raise:format:arguments:] + 106
        3   Foundation                          0x000000010dcb05b9 -[NSAssertionHandler handleFailureInMethod:object:file:lineNumber:description:] + 195
        4   Mail                                0x000000010d57c24c -[MFMailAccount mailboxForRelativePath:isFilesystemPath:create:] + 251
        5   Mail                                0x000000010d4d96f4 -[MFIMAPAccount mailboxForRelativePath:isFilesystemPath:create:] + 491
        6   Mail                                0x000000010d57d986 +[MFMailAccount mailboxForURL:forceCreation:syncableURL:] + 473
        7   Mail                                0x000000010d594458 __43+[MFMailbox queueUpdateCountsForMailboxes:]_block_invoke_2 + 68
        8   CoreFoundation                      0x000000010fce9ea6 __65-[__NSDictionaryM enumerateKeysAndObjectsWithOptions:usingBlock:]_block_invoke + 102
        9   CoreFoundation                      0x000000010fce9db9 -[__NSDictionaryM enumerateKeysAndObjectsWithOptions:usingBlock:] + 217
        10  Mail                                0x000000010d5943a6 __43+[MFMailbox queueUpdateCountsForMailboxes:]_block_invoke + 275
        11  Foundation                          0x000000010dcfa2e8 __NSBLOCKOPERATION_IS_CALLING_OUT_TO_A_BLOCK__ + 7
        12  Foundation                          0x000000010dbe6905 -[NSBlockOperation main] + 97
        13  Foundation                          0x000000010dbc559c -[__NSOperationInternal _start:] + 653
        14  Foundation                          0x000000010dbc51a3 __NSOQSchedule_f + 184
        15  libdispatch.dylib                   0x0000000111c42c13 _dispatch_client_callout + 8
        16  libdispatch.dylib                   0x0000000111c46365 _dispatch_queue_drain + 1100
        17  libdispatch.dylib                   0x0000000111c47ecc _dispatch_queue_invoke + 202
        18  libdispatch.dylib                   0x0000000111c456b7 _dispatch_root_queue_drain + 463
        19  libdispatch.dylib                   0x0000000111c53fe4 _dispatch_worker_thread3 + 91
        20  libsystem_pthread.dylib             0x0000000111f896cb _pthread_wqthread + 729
        21  libsystem_pthread.dylib             0x0000000111f874a1 start_wqthread + 13
    12/22/1393 AP 3:32:48.294 AM com.apple.xpc.launchd[1]: (com.apple.mail.254212[529]) Service exited due to signal: Abort trap: 6
    12/22/1393 AP 3:32:48.412 AM ReportCrash[531]: Saved crash report for Mail[529] version 8.0 (1990.1) to /Users/fattahp---/Library/Logs/DiagnosticReports/Mail_2015-03-13-033248_Fattahs -MacBook-Pro.crash
    12/22/1393 AP 3:32:58.577 AM Mail[534]: *** Assertion failure in -[MFIMAPAccount mailboxForRelativePath:isFilesystemPath:create:], /SourceCache/Mail/Mail-1990.1/MailFramework/Accounts/MFMailAccount.m:4467
    12/22/1393 AP 3:32:58.580 AM Mail[534]: An uncaught exception was raised
    12/22/1393 AP 3:32:58.580 AM Mail[534]: Absolute path passed into -[MFIMAPAccount mailboxForRelativePath:isFilesystemPath:create:]: /Booking
    12/22/1393 AP 3:32:58.581 AM Mail[534]: (
        0   CoreFoundation                      0x000000010fad464c __exceptionPreprocess + 172
        1   libobjc.A.dylib                     0x000000010de736de objc_exception_throw + 43
        2   CoreFoundation                      0x000000010fad442a +[NSException raise:format:arguments:] + 106
        3   Foundation                          0x000000010d9d15b9 -[NSAssertionHandler handleFailureInMethod:object:file:lineNumber:description:] + 195
        4   Mail                                0x000000010d29124c -[MFMailAccount mailboxForRelativePath:isFilesystemPath:create:] + 251
        5   Mail                                0x000000010d1ee6f4 -[MFIMAPAccount mailboxForRelativePath:isFilesystemPath:create:] + 491
        6   Mail                                0x000000010d292986 +[MFMailAccount mailboxForURL:forceCreation:syncableURL:] + 473
        7   Mail                                0x000000010d2a9458 __43+[MFMailbox queueUpdateCountsForMailboxes:]_block_invoke_2 + 68
        8   CoreFoundation                      0x000000010f9feea6 __65-[__NSDictionaryM enumerateKeysAndObjectsWithOptions:usingBlock:]_block_invoke + 102
        9   CoreFoundation                      0x000000010f9fedb9 -[__NSDictionaryM enumerateKeysAndObjectsWithOptions:usingBlock:] + 217
        10  Mail                                0x000000010d2a93a6 __43+[MFMailbox queueUpdateCountsForMailboxes:]_block_invoke + 275
        11  Foundation                          0x000000010da1b2e8 __NSBLOCKOPERATION_IS_CALLING_OUT_TO_A_BLOCK__ + 7
        12  Foundation                          0x000000010d907905 -[NSBlockOperation main] + 97
        13  Foundation                          0x000000010d8e659c -[__NSOperationInternal _start:] + 653
        14  Foundation                          0x000000010d8e61a3 __NSOQSchedule_f + 184
        15  libdispatch.dylib                   0x0000000111970c13 _dispatch_client_callout + 8
        16  libdispatch.dylib                   0x0000000111974365 _dispatch_queue_drain + 1100
        17  libdispatch.dylib                   0x0000000111975ecc _dispatch_queue_invoke + 202
        18  libdispatch.dylib                   0x00000001119736b7 _dispatch_root_queue_drain + 463
        19  libdispatch.dylib                   0x0000000111981fe4 _dispatch_worker_thread3 + 91
        20  libsystem_pthread.dylib             0x0000000111cb86cb _pthread_wqthread + 729
        21  libsystem_pthread.dylib             0x0000000111cb64a1 start_wqthread + 13
    12/22/1393 AP 3:32:58.583 AM Mail[534]: *** Terminating app due to uncaught exception 'NSInternalInconsistencyException', reason: 'Absolute path passed into -[MFIMAPAccount mailboxForRelativePath:isFilesystemPath:create:]: /Booking'
    *** First throw call stack:
        0   CoreFoundation                      0x000000010fad464c __exceptionPreprocess + 172
        1   libobjc.A.dylib                     0x000000010de736de objc_exception_throw + 43
        2   CoreFoundation                      0x000000010fad442a +[NSException raise:format:arguments:] + 106
        3   Foundation                          0x000000010d9d15b9 -[NSAssertionHandler handleFailureInMethod:object:file:lineNumber:description:] + 195
        4   Mail                                0x000000010d29124c -[MFMailAccount mailboxForRelativePath:isFilesystemPath:create:] + 251
        5   Mail                                0x000000010d1ee6f4 -[MFIMAPAccount mailboxForRelativePath:isFilesystemPath:create:] + 491
        6   Mail                                0x000000010d292986 +[MFMailAccount mailboxForURL:forceCreation:syncableURL:] + 473
        7   Mail                                0x000000010d2a9458 __43+[MFMailbox queueUpdateCountsForMailboxes:]_block_invoke_2 + 68
        8   CoreFoundation                      0x000000010f9feea6 __65-[__NSDictionaryM enumerateKeysAndObjectsWithOptions:usingBlock:]_block_invoke + 102
        9   CoreFoundation                      0x000000010f9fedb9 -[__NSDictionaryM enumerateKeysAndObjectsWithOptions:usingBlock:] + 217
        10  Mail                                0x000000010d2a93a6 __43+[MFMailbox queueUpdateCountsForMailboxes:]_block_invoke + 275
        11  Foundation                          0x000000010da1b2e8 __NSBLOCKOPERATION_IS_CALLING_OUT_TO_A_BLOCK__ + 7
        12  Foundation                          0x000000010d907905 -[NSBlockOperation main] + 97
        13  Foundation                          0x000000010d8e659c -[__NSOperationInternal _start:] + 653
        14  Foundation                          0x000000010d8e61a3 __NSOQSchedule_f + 184
        15  libdispatch.dylib                   0x0000000111970c13 _dispatch_client_callout + 8
        16  libdispatch.dylib                   0x0000000111974365 _dispatch_queue_drain + 1100
        17  libdispatch.dylib                   0x0000000111975ecc _dispatch_queue_invoke + 202
        18  libdispatch.dylib                   0x00000001119736b7 _dispatch_root_queue_drain + 463
        19  libdispatch.dylib                   0x0000000111981fe4 _dispatch_worker_thread3 + 91
        20  libsystem_pthread.dylib             0x0000000111cb86cb _pthread_wqthread + 729
        21  libsystem_pthread.dylib             0x0000000111cb64a1 start_wqthread + 13
    12/22/1393 AP 3:32:59.424 AM com.apple.xpc.launchd[1]: (com.apple.mail.254212[534]) Service exited due to signal: Abort trap: 6
    12/22/1393 AP 3:32:59.467 AM ReportCrash[531]: Saved crash report for Mail[534] version 8.0 (1990.1) to /Users/fattahp-----/Library/Logs/DiagnosticReports/Mail_2015-03-13-033259_Fatta hs-MacBook-Pro.crash
    12/22/1393 AP 3:33:06.800 AM Mail[539]: *** Assertion failure in -[MFIMAPAccount mailboxForRelativePath:isFilesystemPath:create:], /SourceCache/Mail/Mail-1990.1/MailFramework/Accounts/MFMailAccount.m:4467
    12/22/1393 AP 3:33:06.803 AM Mail[539]: An uncaught exception was raised
    12/22/1393 AP 3:33:06.804 AM Mail[539]: Absolute path passed into -[MFIMAPAccount mailboxForRelativePath:isFilesystemPath:create:]: /Booking
    12/22/1393 AP 3:33:06.804 AM Mail[539]: (
        0   CoreFoundation                      0x00000001115fa64c __exceptionPreprocess + 172
        1   libobjc.A.dylib                     0x000000010f9916de objc_exception_throw + 43
        2   CoreFoundation                      0x00000001115fa42a +[NSException raise:format:arguments:] + 106
        3   Foundation                          0x000000010f4f35b9 -[NSAssertionHandler handleFailureInMethod:object:file:lineNumber:description:] + 195
        4   Mail                                0x000000010edb924c -[MFMailAccount mailboxForRelativePath:isFilesystemPath:create:] + 251
        5   Mail                                0x000000010ed166f4 -[MFIMAPAccount mailboxForRelativePath:isFilesystemPath:create:] + 491
        6   Mail                                0x000000010edba986 +[MFMailAccount mailboxForURL:forceCreation:syncableURL:] + 473
        7   Mail                                0x000000010edd1458 __43+[MFMailbox queueUpdateCountsForMailboxes:]_block_invoke_2 + 68
        8   CoreFoundation                      0x0000000111524ea6 __65-[__NSDictionaryM enumerateKeysAndObjectsWithOptions:usingBlock:]_block_invoke + 102
        9   CoreFoundation                      0x0000000111524db9 -[__NSDictionaryM enumerateKeysAndObjectsWithOptions:usingBlock:] + 217
        10  Mail                                0x000000010edd13a6 __43+[MFMailbox queueUpdateCountsForMailboxes:]_block_invoke + 275
        11  Foundation                          0x000000010f53d2e8 __NSBLOCKOPERATION_IS_CALLING_OUT_TO_A_BLOCK__ + 7
        12  Foundation                          0x000000010f429905 -[NSBlockOperation main] + 97
        13  Foundation                          0x000000010f40859c -[__NSOperationInternal _start:] + 653
        14  Foundation                          0x000000010f4081a3 __NSOQSchedule_f + 184
        15  libdispatch.dylib                   0x0000000113489c13 _dispatch_client_callout + 8
        16  libdispatch.dylib                   0x000000011348d365 _dispatch_queue_drain + 1100
        17  libdispatch.dylib                   0x000000011348eecc _dispatch_queue_invoke + 202
        18  libdispatch.dylib                   0x000000011348c6b7 _dispatch_root_queue_drain + 463
        19  libdispatch.dylib                   0x000000011349afe4 _dispatch_worker_thread3 + 91
        20  libsystem_pthread.dylib             0x00000001137e06cb _pthread_wqthread + 729
        21  libsystem_pthread.dylib             0x00000001137de4a1 start_wqthread + 13
    12/22/1393 AP 3:33:06.806 AM Mail[539]: *** Terminating app due to uncaught exception 'NSInternalInconsistencyException', reason: 'Absolute path passed into -[MFIMAPAccount mailboxForRelativePath:isFilesystemPath:create:]: /Booking'
    *** First throw call stack:
        0   CoreFoundation                      0x00000001115fa64c __exceptionPreprocess + 172
        1   libobjc.A.dylib                     0x000000010f9916de objc_exception_throw + 43
        2   CoreFoundation                      0x00000001115fa42a +[NSException raise:format:arguments:] + 106
        3   Foundation                          0x000000010f4f35b9 -[NSAssertionHandler handleFailureInMethod:object:file:lineNumber:description:] + 195
        4   Mail                                0x000000010edb924c -[MFMailAccount mailboxForRelativePath:isFilesystemPath:create:] + 251
        5   Mail                                0x000000010ed166f4 -[MFIMAPAccount mailboxForRelativePath:isFilesystemPath:create:] + 491
        6   Mail                                0x000000010edba986 +[MFMailAccount mailboxForURL:forceCreation:syncableURL:] + 473
        7   Mail                                0x000000010edd1458 __43+[MFMailbox queueUpdateCountsForMailboxes:]_block_invoke_2 + 68
        8   CoreFoundation                      0x0000000111524ea6 __65-[__NSDictionaryM enumerateKeysAndObjectsWithOptions:usingBlock:]_block_invoke + 102
        9   CoreFoundation                      0x0000000111524db9 -[__NSDictionaryM enumerateKeysAndObjectsWithOptions:usingBlock:] + 217
        10  Mail                                0x000000010edd13a6 __43+[MFMailbox queueUpdateCountsForMailboxes:]_block_invoke + 275
        11  Foundation                          0x000000010f53d2e8 __NSBLOCKOPERATION_IS_CALLING_OUT_TO_A_BLOCK__ + 7
        12  Foundation                          0x000000010f429905 -[NSBlockOperation main] + 97
        13  Foundation                          0x000000010f40859c -[__NSOperationInternal _start:] + 653
        14  Foundation                          0x000000010f4081a3 __NSOQSchedule_f + 184
        15  libdispatch.dylib                   0x0000000113489c13 _dispatch_client_callout + 8
        16  libdispatch.dylib                   0x000000011348d365 _dispatch_queue_drain + 1100
        17  libdispatch.dylib                   0x000000011348eecc _dispatch_queue_invoke + 202
        18  libdispatch.dylib                   0x000000011348c6b7 _dispatch_root_queue_drain + 463
        19  libdispatch.dylib                   0x000000011349afe4 _dispatch_worker_thread3 + 91
        20  libsystem_pthread.dylib             0x00000001137e06cb _pthread_wqthread + 729
        21  libsystem_pthread.dylib             0x00000001137de4a1 start_wqthread + 13
    12/22/1393 AP 3:33:07.638 AM com.apple.xpc.launchd[1]: (com.apple.mail.254212[539]) Service exited due to signal: Abort trap: 6
    12/22/1393 AP 3:33:07.678 AM ReportCrash[531]: Saved crash report for Mail[539] version 8.0 (1990.1) to /Users/fattahp----/Library/Logs/DiagnosticReports/Mail_2015-03-13-033307_Fattah s-MacBook-Pro.crash
    12/22/1393 AP 3:33:09.746 AM Mail[541]: *** Assertion failure in -[MFIMAPAccount mailboxForRelativePath:isFilesystemPath:create:], /SourceCache/Mail/Mail-1990.1/MailFramework/Accounts/MFMailAccount.m:4467
    12/22/1393 AP 3:33:09.750 AM Mail[541]: An uncaught exception was raised
    12/22/1393 AP 3:33:09.750 AM Mail[541]: Absolute path passed into -[MFIMAPAccount mailboxForRelativePath:isFilesystemPath:create:]: /Booking
    12/22/1393 AP 3:33:09.750 AM Mail[541]: (
        0   CoreFoundation                      0x000000010ab8e64c __exceptionPreprocess + 172
        1   libobjc.A.dylib                     0x0000000108f1e6de objc_exception_throw + 43
        2   CoreFoundation                      0x000000010ab8e42a +[NSException raise:format:arguments:] + 106
        3   Foundation                          0x0000000108a7b5b9 -[NSAssertionHandler handleFailureInMethod:object:file:lineNumber:description:] + 195
        4   Mail                                0x000000010833a24c -[MFMailAccount mailboxForRelativePath:isFilesystemPath:create:] + 251
        5   Mail                                0x00000001082976f4 -[MFIMAPAccount mailboxForRelativePath:isFilesystemPath:create:] + 491
        6   Mail                                0x000000010833b986 +[MFMailAccount mailboxForURL:forceCreation:syncableURL:] + 473
        7   Mail                                0x0000000108352458 __43+[MFMailbox queueUpdateCountsForMailboxes:]_block_invoke_2 + 68
        8   CoreFoundation                      0x000000010aab8ea6 __65-[__NSDictionaryM enumerateKeysAndObjectsWithOptions:usingBlock:]_block_invoke + 102
        9   CoreFoundation                      0x000000010aab8db9 -[__NSDictionaryM enumerateKeysAndObjectsWithOptions:usingBlock:] + 217
        10  Mail                                0x00000001083523a6 __43+[MFMailbox queueUpdateCountsForMailboxes:]_block_invoke + 275
        11  Foundation                          0x0000000108ac52e8 __NSBLOCKOPERATION_IS_CALLING_OUT_TO_A_BLOCK__ + 7
        12  Foundation                          0x00000001089b1905 -[NSBlockOperation main] + 97
        13  Foundation                          0x000000010899059c -[__NSOperationInternal _start:] + 653
        14  Foundation                          0x00000001089901a3 __NSOQSchedule_f + 184
        15  libdispatch.dylib                   0x000000010ca14c13 _dispatch_client_callout + 8
        16  libdispatch.dylib                   0x000000010ca18365 _dispatch_queue_drain + 1100
        17  libdispatch.dylib                   0x000000010ca19ecc _dispatch_queue_invoke + 202
        18  libdispatch.dylib                   0x000000010ca176b7 _dispatch_root_queue_drain + 463
        19  libdispatch.dylib                   0x000000010ca25fe4 _dispatch_worker_thread3 + 91
        20  libsystem_pthread.dylib             0x000000010cd726cb _pthread_wqthread + 729
        21  libsystem_pthread.dylib             0x000000010cd704a1 start_wqthread + 13
    12/22/1393 AP 3:33:09.752 AM Mail[541]: *** Terminating app due to uncaught exception 'NSInternalInconsistencyException', reason: 'Absolute path passed into -[MFIMAPAccount mailboxForRelativePath:isFilesystemPath:create:]: /Booking'
    *** First throw call stack:
        0   CoreFoundation                      0x000000010ab8e64c __exceptionPreprocess + 172
        1   libobjc.A.dylib                     0x0000000108f1e6de objc_exception_throw + 43
        2   CoreFoundation                      0x000000010ab8e42a +[NSException raise:format:arguments:] + 106
        3   Foundation                          0x0000000108a7b5b9 -[NSAssertionHandler handleFailureInMethod:object:file:lineNumber:description:] + 195
        4   Mail                                0x000000010833a24c -[MFMailAccount mailboxForRelativePath:isFilesystemPath:create:] + 251
        5   Mail                                0x00000001082976f4 -[MFIMAPAccount mailboxForRelativePath:isFilesystemPath:create:] + 491
        6   Mail                                0x000000010833b986 +[MFMailAccount mailboxForURL:forceCreation:syncableURL:] + 473
        7   Mail                                0x0000000108352458 __43+[MFMailbox queueUpdateCountsForMailboxes:]_block_invoke_2 + 68
        8   CoreFoundation                      0x000000010aab8ea6 __65-[__NSDictionaryM enumerateKeysAndObjectsWithOptions:usingBlock:]_block_invoke + 102
        9   CoreFoundation                      0x000000010aab8db9 -[__NSDictionaryM enumerateKeysAndObjectsWithOptions:usingBlock:] + 217
        10  Mail                                0x00000001083523a6 __43+[MFMailbox queueUpdateCountsForMailboxes:]_block_invoke + 275
        11  Foundation                          0x0000000108ac52e8 __NSBLOCKOPERATION_IS_CALLING_OUT_TO_A_BLOCK__ + 7
        12  Foundation                          0x00000001089b1905 -[NSBlockOperation main] + 97
        13  Foundation                          0x000000010899059c -[__NSOperationInternal _start:] + 653
        14  Foundation                          0x00000001089901a3 __NSOQSchedule_f + 184
        15  libdispatch.dylib                   0x000000010ca14c13 _dispatch_client_callout + 8
        16  libdispatch.dylib                   0x000000010ca18365 _dispatch_queue_drain + 1100
        17  libdispatch.dylib                   0x000000010ca19ecc _dispatch_queue_invoke + 202
        18  libdispatch.dylib                   0x000000010ca176b7 _dispatch_root_queue_drain + 463
        19  libdispatch.dylib                   0x000000010ca25fe4 _dispatch_worker_thread3 + 91
        20  libsystem_pthread.dylib             0x000000010cd726cb _pthread_wqthread + 729
        21  libsystem_pthread.dylib             0x000000010cd704a1 start_wqthread + 13
    12/22/1393 AP 3:33:10.586 AM com.apple.xpc.launchd[1]: (com.apple.mail.254212[541]) Service exited due to signal: Abort trap: 6
    12/22/1393 AP 3:33:10.636 AM ReportCrash[531]: Saved crash report for Mail[541] version 8.0 (1990.1) to /Users/fattahp----/Library/Logs/DiagnosticReports/Mail_2015-03-13-033310_Fattah s-MacBook-Pro.crash
    12/22/1393 AP 3:33:25.030 AM Mail[546]: *** Assertion failure in -[MFIMAPAccount mailboxForRelativePath:isFilesystemPath:create:], /SourceCache/Mail/Mail-1990.1/MailFramework/Accounts/MFMailAccount.m:4467
    12/22/1393 AP 3:33:25.033 AM Mail[546]: An uncaught exception was raised
    12/22/1393 AP 3:33:25.034 AM Mail[546]: Absolute path passed into -[MFIMAPAccount mailboxForRelativePath:isFilesystemPath:create:]: /Booking
    12/22/1393 AP 3:33:25.034 AM Mail[546]: (
        0   CoreFoundation                      0x000000010392264c __exceptionPreprocess + 172
        1   libobjc.A.dylib                     0x0000000101cae6de objc_exception_throw + 43
        2   CoreFoundation                      0x000000010392242a +[NSException raise:format:arguments:] + 106
        3   Foundation                          0x000000010180b5b9 -[NSAssertionHandler handleFailureInMethod:object:file:lineNumber:description:] + 195
        4   Mail                                0x00000001010ca24c -[MFMailAccount mailboxForRelativePath:isFilesystemPath:create:] + 251
        5   Mail                                0x00000001010276f4 -[MFIMAPAccount mailboxForRelativePath:isFilesystemPath:create:] + 491
        6   Mail                                0x00000001010cb986 +[MFMailAccount mailboxForURL:forceCreation:syncableURL:] + 473
        7   Mail                                0x00000001010e2458 __43+[MFMailbox queueUpdateCountsForMailboxes:]_block_invoke_2 + 68
        8   CoreFoundation                      0x000000010384cea6 __65-[__NSDictionaryM enumerateKeysAndObjectsWithOptions:usingBlock:]_block_invoke + 102
        9   CoreFoundation                      0x000000010384cdb9 -[__NSDictionaryM enumerateKeysAndObjectsWithOptions:usingBlock:] + 217
        10  Mail                                0x00000001010e23a6 __43+[MFMailbox queueUpdateCountsForMailboxes:]_block_invoke + 275
        11  Foundation                          0x00000001018552e8 __NSBLOCKOPERATION_IS_CALLING_OUT_TO_A_BLOCK__ + 7
        12  Foundation                          0x0000000101741905 -[NSBlockOperation main] + 97
        13  Foundation                          0x000000010172059c -[__NSOperationInternal _start:] + 653
        14  Foundation                          0x00000001017201a3 __NSOQSchedule_f + 184
        15  libdispatch.dylib                   0x00000001057b3c13 _dispatch_client_callout + 8
        16  libdispatch.dylib                   0x00000001057b7365 _dispatch_queue_drain + 1100
        17  libdispatch.dylib                   0x00000001057b8ecc _dispatch_queue_invoke + 202
        18  libdispatch.dylib                   0x00000001057b66b7 _dispatch_root_queue_drain + 463
        19  libdispatch.dylib                   0x00000001057c4fe4 _dispatch_worker_thread3 + 91
        20  libsystem_pthread.dylib             0x0000000105b0e6cb _pthread_wqthread + 729
        21  libsystem_pthread.dylib             0x0000000105b0c4a1 start_wqthread + 13
    12/22/1393 AP 3:33:25.036 AM Mail[546]: *** Terminating app due to uncaught exception 'NSInternalInconsistencyException', reason: 'Absolute path passed into -[MFIMAPAccount mailboxForRelativePath:isFilesystemPath:create:]: /Booking'
    *** First throw call stack:
        0   CoreFoundation                      0x000000010392264c __exceptionPreprocess + 172
        1   libobjc.A.dylib                     0x0000000101cae6de objc_exception_throw + 43
        2   CoreFoundation                      0x000000010392242a +[NSException raise:format:arguments:] + 106
        3   Foundation                          0x000000010180b5b9 -[NSAssertionHandler handleFailureInMethod:object:file:lineNumber:description:] + 195
        4   Mail                                0x00000001010ca24c -[MFMailAccount mailboxForRelativePath:isFilesystemPath:create:] + 251
        5   Mail                                0x00000001010276f4 -[MFIMAPAccount mailboxForRelativePath:isFilesystemPath:create:] + 491
        6   Mail                                0x00000001010cb986 +[MFMailAccount mailboxForURL:forceCreation:syncableURL:] + 473
        7   Mail                                0x00000001010e2458 __43+[MFMailbox queueUpdateCountsForMailboxes:]_block_invoke_2 + 68
        8   CoreFoundation                      0x000000010384cea6 __65-[__NSDictionaryM enumerateKeysAndObjectsWithOptions:usingBlock:]_block_invoke + 102
        9   CoreFoundation                      0x000000010384cdb9 -[__NSDictionaryM enumerateKeysAndObjectsWithOptions:usingBlock:] + 217
        10  Mail                                0x00000001010e23a6 __43+[MFMailbox queueUpdateCountsForMailboxes:]_block_invoke + 275
        11  Foundation                          0x00000001018552e8 __NSBLOCKOPERATION_IS_CALLING_OUT_TO_A_BLOCK__ + 7
        12  Foundation                          0x0000000101741905 -[NSBlockOperation main] + 97
        13  Foundation                          0x000000010172059c -[__NSOperationInternal _start:] + 653
        14  Foundation                          0x00000001017201a3 __NSOQSchedule_f + 184
        15  libdispatch.dylib                   0x00000001057b3c13 _dispatch_client_callout + 8
        16  libdispatch.dylib                   0x00000001057b7365 _dispatch_queue_drain + 1100
        17  libdispatch.dylib                   0x00000001057b8ecc _dispatch_queue_invoke + 202
        18  libdispatch.dylib                   0x00000001057b66b7 _dispatch_root_queue_drain + 463
        19  libdispatch.dylib                   0x00000001057c4fe4 _dispatch_worker_thread3 + 91
        20  libsystem_pthread.dylib             0x0000000105b0e6cb _pthread_wqthread + 729
        21  libsystem_pthread.dylib             0x0000000105b0c4a1 start_wqthread + 13
    12/22/1393 AP 3:33:25.860 AM com.apple.xpc.launchd[1]: (com.apple.mail.254212[546]) Service exited due to signal: Abort trap: 6
    12/22/1393 AP 3:33:25.914 AM ReportCrash[531]: Saved crash report for Mail[546] version 8.0 (1990.1) to /Users/fattahp-----/Library/Logs/DiagnosticReports/Mail_2015-03-13-033325_Fatta hs-MacBook-Pro.crash
    12/22/1393 AP 3:33:28.151 AM Mail[548]: *** Assertion failure in -[MFIMAPAccount mailboxForRelativePath:isFilesystemPath:create:], /SourceCache/Mail/Mail-1990.1/MailFramework/Accounts/MFMailAccount.m:4467
    12/22/1393 AP 3:33:28.154 AM Mail[548]: An uncaught exception was raised
    12/22/1393 AP 3:33:28.155 AM Mail[548]: Absolute path passed into -[MFIMAPAccount mailboxForRelativePath:isFilesystemPath:create:]: /Booking
    12/22/1393 AP 3:33:28.155 AM Mail[548]: (
        0   CoreFoundation                      0x0000000105f7964c __exceptionPreprocess + 172
        1   libobjc.A.dylib                     0x00000001043196de objc_exception_throw + 43
        2   CoreFoundation                      0x0000000105f7942a +[NSException raise:format:arguments:] + 106
        3   Foundation                          0x0000000103e765b9 -[NSAssertionHandler handleFailureInMethod:object:file:lineNumber:description:] + 195
        4   Mail                                0x000000010373024c -[MFMailAccount mailboxForRelativePath:isFilesystemPath:create:] + 251
        5   Mail                                0x000000010368d6f4 -[MFIMAPAccount mailboxForRelativePath:isFilesystemPath:create:] + 491
        6   Mail                                0x0000000103731986 +[MFMailAccount mailboxForURL:forceCreation:syncableURL:] + 473
        7   Mail                                0x0000000103748458 __43+[MFMailbox queueUpdateCountsForMailboxes:]_block_invoke_2 + 68
        8   CoreFoundation                      0x0000000105ea3ea6 __65-[__NSDictionaryM enumerateKeysAndObjectsWithOptions:usingBlock:]_block_invoke + 102
        9   CoreFoundation                      0x0000000105ea3db9 -[__NSDictionaryM enumerateKeysAndObjectsWithOptions:usingBlock:] + 217
        10  Mail                                0x00000001037483a6 __43+[MFMailbox queueUpdateCountsForMailboxes:]_block_invoke + 275
        11  Foundation                          0x0000000103ec02e8 __NSBLOCKOPERATION_IS_CALLING_OUT_TO_A_BLOCK__ + 7
        12  Foundation                          0x0000000103dac905 -[NSBlockOperation main] + 97
        13  Foundation                          0x0000000103d8b59c -[__NSOperationInternal _start:] + 653
        14  Foundation                          0x0000000103d8b1a3 __NSOQSchedule_f + 184
        15  libdispatch.dylib                   0x0000000107dffc13 _dispatch_client_callout + 8
        16  libdispatch.dylib                   0x0000000107e03365 _dispatch_queue_drain + 1100
        17  libdispatch.dylib                   0x0000000107e04ecc _dispatch_queue_invoke + 202
        18  libdispatch.dylib                   0x0000000107e026b7 _dispatch_root_queue_drain + 463
        19  libdispatch.dylib                   0x0000000107e10fe4 _dispatch_worker_thread3 + 91
        20  libsystem_pthread.dylib             0x00000001081616cb _pthread_wqthread + 729
        21  libsystem_pthread.dylib             0x000000010815f4a1 start_wqthread + 13
    12/22/1393 AP 3:33:28.157 AM Mail[548]: *** Terminating app due to uncaught exception 'NSInternalInconsistencyException', reason: 'Absolute path passed into -[MFIMAPAccount mailboxForRelativePath:isFilesystemPath:create:]: /Booking'
    *** First throw call stack:
        0   CoreFoundation                      0x0000000105f7964c __exceptionPreprocess + 172
        1   libobjc.A.dylib                     0x00000001043196de objc_exception_throw + 43
        2   CoreFoundation                      0x0000000105f7942a +[NSException raise:format:arguments:] + 106
        3   Foundation                          0x0000000103e765b9 -[NSAssertionHandler handleFailureInMethod:object:file:lineNumber:description:] + 195
        4   Mail                                0x000000010373024c -[MFMailAccount mailboxForRelativePath:isFilesystemPath:create:] + 251
        5   Mail                                0x000000010368d6f4 -[MFIMAPAccount mailboxForRelativePath:isFilesystemPath:create:] + 491
        6   Mail                                0x0000000103731986 +[MFMailAccount mailboxForURL:forceCreation:syncableURL:] + 473
        7   Mail                                0x0000000103748458 __43+[MFMailbox queueUpdateCountsForMailboxes:]_block_invoke_2 + 68
        8   CoreFoundation                      0x0000000105ea3ea6 __65-[__NSDictionaryM enumerateKeysAndObjectsWithOptions:usingBlock:]_block_invoke + 102
        9   CoreFoundation                      0x0000000105ea3db9 -[__NSDictionaryM enumerateKeysAndObjectsWithOptions:usingBlock:] + 217
        10  Mail                                0x00000001037483a6 __43+[MFMailbox queueUpdateCountsForMailboxes:]_block_invoke + 275
        11  Foundation                          0x0000000103ec02e8 __NSBLOCKOPERATION_IS_CALLING_OUT_TO_A_BLOCK__ + 7
        12  Foundation                          0x0000000103dac905 -[NSBlockOperation main] + 97
        13  Foundation                          0x0000000103d8b59c -[__NSOperationInternal _start:] + 653
        14  Foundation                          0x0000000103d8b1a3 __NSOQSchedule_f + 184
        15  libdispatch.dylib                   0x0000000107dffc13 _dispatch_client_callout + 8
        16  libdispatch.dylib                   0x0000000107e03365 _dispatch_queue_drain + 1100
        17  libdispatch.dylib                   0x0000000107e04ecc _dispatch_queue_invoke + 202
        18  libdispatch.dylib                   0x0000000107e026b7 _dispatch_root_queue_drain + 463
        19  libdispatch.dylib                   0x0000000107e10fe4 _dispatch_worker_thread3 + 91
        20  libsystem_pthread.dylib             0x00000001081616cb _pthread_wqthread + 729
        21  libsystem_pthread.dylib             0x000000010815f4a1 start_wqthread + 13
    12/22/1393 AP 3:33:29.014 AM com.apple.xpc.launchd[1]: (com.apple.mail.254212[548]) Service exited due to signal: Abort trap: 6
    12/22/1393 AP 3:33:29.055 AM ReportCrash[531]: Saved crash report for Mail[548] version 8.0 (1990.1) to /Users/fattahp-----/Library/Logs/DiagnosticReports/Mail_2015-03-13-033329_Fatta hs-MacBook-Pro.crash
    12/22/1393 AP 3:33:38.753 AM Mail[553]: *** Assertion failure in -[MFIMAPAccount mailboxForRelativePath:isFilesystemPath:create:], /SourceCache/Mail/Mail-1990.1/MailFramework/Accounts/MFMailAccount.m:4467
    12/22/1393 AP 3:33:38.756 AM Mail[553]: An uncaught exception was raised
    12/22/1393 AP 3:33:38.756 AM Mail[553]: Absolute path passed into -[MFIMAPAccount mailboxForRelativePath:isFilesystemPath:create:]: /Booking
    12/22/1393 AP 3:33:38.757 AM Mail[553]: (
        0   CoreFoundation                      0x000000010353164c __exceptionPreprocess + 172
        1   libobjc.A.dylib                     0x00000001018bf6de objc_exception_throw + 43
        2   CoreFoundation                      0x000000010353142a +[NSException raise:format:arguments:] + 106
        3   Foundation                          0x000000010141b5b9 -[NSAssertionHandler handleFailureInMethod:object:file:lineNumber:description:] + 195
        4   Mail                                0x0000000100cd824c -[MFMailAccount mailboxForRelativePath:isFilesystemPath:create:] + 251
        5   Mail                                0x0000000100c356f4 -[MFIMAPAccount mailboxForRelativePath:isFilesystemPath:create:] + 491
        6   Mail                                0x0000000100cd9986 +[MFMailAccount mailboxForURL:forceCreation:syncableURL:] + 473
        7   Mail                                0x0000000100cf0458 __43+[MFMailbox queueUpdateCountsForMailboxes:]_block_invoke_2 + 68
        8   CoreFoundation                      0x000000010345bea6 __65-[__NSDictionaryM enumerateKeysAndObjectsWithOptions:usingBlock:]_block_invoke + 102
        9   CoreFoundation                      0x000000010345bdb9 -[__NSDictionaryM enumerateKeysAndObjectsWithOptions:usingBlock:] + 217
        10  Mail                                0x0000000100cf03a6 __43+[MFMailbox queueUpdateCountsForMailboxes:]_block_invoke + 275
        11  Foundation                          0x00000001014652e8 __NSBLOCKOPERATION_IS_CALLING_OUT_TO_A_BLOCK__ + 7
        12  Foundation                          0x0000000101351905 -[NSBlockOperation main] + 97
        13  Foundation                          0x000000010133059c -[__NSOperationInternal _start:] + 653
        14  Foundation                          0x00000001013301a3 __NSOQSchedule_f + 184
        15  libdispatch.dylib                   0x00000001053b8c13 _dispatch_client_callout + 8
        16  libdispatch.dylib                   0x00000001053bc365 _dispatch_queue_drain + 1100
        17  libdispatch.dylib                   0x00000001053bdecc _dispatch_queue_invoke + 202
        18  libdispatch.dylib                   0x00000001053bb6b7 _dispatch_root_queue_drain + 463
        19  libdispatch.dylib                   0x00000001053c9fe4 _dispatch_worker_thread3 + 91
        20  libsystem_pthread.dylib             0x00000001057046cb _pthread_wqthread + 729
        21  libsystem_pthread.dylib             0x00000001057024a1 start_wqthread + 13
    12/22/1393 AP 3:33:38.759 AM Mail[553]: *** Terminating app due to uncaught exception 'NSInternalInconsistencyException', reason: 'Absolute path passed into -[MFIMAPAccount mailboxForRelativePath:isFilesystemPath:create:]: /Booking'
    *** First throw call stack:
        0   CoreFoundation                      0x000000010353164c __exceptionPreprocess + 172
        1   libobjc.A.dylib                     0x00000001018bf6de objc_exception_throw + 43
        2   CoreFoundation                      0x000000010353142a +[NSException raise:format:arguments:] + 106
        3   Foundation                          0x000000010141b5b9 -[NSAssertionHandler handleFailureInMethod:object:file:lineNumber:description:] + 195
        4   Mail                                0x0000000100cd824c -[MFMailAccount mailboxForRelativePath:isFilesystemPath:create:] + 251
        5   Mail                                0x0000000100c356f4 -[MFIMAPAccount mailboxForRelativePath:isFilesystemPath:create:] + 491
        6   Mail                                0x0000000100cd9986 +[MFMailAccount mailboxForURL:forceCreation:syncableURL:] + 473
        7   Mail                                0x0000000100cf0458 __43+[MFMailbox queueUpdateCountsForMailboxes:]_block_invoke_2 + 68
        8   CoreFoundation                      0x000000010345bea6 __65-[__NSDictionaryM enumerateKeysAndObjectsWithOptions:usingBlock:]_block_invoke + 102
        9   CoreFoundation                      0x000000010345bdb9 -[__NSDictionaryM enumerateKeysAndObjectsWithOptions:usingBlock:] + 217
        10  Mail                                0x0000000100cf03a6 __43+[MFMailbox queueUpdateCountsForMailboxes:]_block_invoke + 275
        11  Foundation                          0x00000001014652e8 __NSBLOCKOPERATION_IS_CALLING_OUT_TO_A_BLOCK__ + 7
        12  Foundation                          0x0000000101351905 -[NSBlockOperation main] + 97
        13  Foundation                          0x000000010133059c -[__NSOperationInternal _start:] + 653
        14  Foundation                          0x00000001013301a3 __NSOQSchedule_f + 184
        15  libdispatch.dylib                   0x00000001053b8c13 _dispatch_client_callout + 8
        16  libdispatch.dylib                   0x00000001053bc365 _dispatch_queue_drain + 1100
        17  libdispatch.dylib                   0x00000001053bdecc _dispatch_queue_invoke + 202
        18  libdispatch.dylib                   0x00000001053bb6b7 _dispatch_root_queue_drain + 463
        19  libdispatch.dylib                   0x00000001053c9fe4 _dispatch_worker_thread3 + 91
        20  libsystem_pthread.dylib             0x00000001057046cb _pthread_wqthread + 729
        21  libsystem_pthread.dylib             0x00000001057024a1 start_wqthread + 13
    12/22/1393 AP 3:33:39.598 AM com.apple.xpc.launchd[1]: (com.apple.mail.254212[553]) Service exited due to signal: Abort trap: 6
    12/22/1393 AP 3:33:39.653 AM ReportCrash[531]: Saved crash report for Mail[553] version 8.0 (1990.1) to /Users/fattahp----/Library/Logs/DiagnosticReports/Mail_2015-03-13-033339_Fattah s-MacBook-Pro.crash
    12/22/1393 AP 3:33:42.820 AM Mail[556]: *** Assertion failure in -[MFIMAPAccount mailboxForRelativePath:isFilesystemPath:create:], /SourceCache/Mail/Mail-1990.1/MailFramework/Accounts/MFMailAccount.m:4467
    12/22/1393 AP 3:33:42.822 AM Mail[556]: An uncaught exception was raised
    12/22/1393 AP 3:33:42.823 AM Mail[556]: Absolute

    Back up all data before proceeding.
    Step 1
    If Mail crashes or freezes immediately on launch, try the steps suggested on this page. Sometimes a corrupt message on a mail server can be deleted by logging in to the server through its web page. If Mail still won't launch, skip to Step 3.
    Step 2
    Select all your mailboxes, and then select
              Mailbox ▹ Export Mailbox...
    from the Mail menu bar. Export the mailboxes to the Desktop folder.
    Make a note of the settings for all your Mail accounts – everything you'd need to reconstruct the settings from scratch.
    Quit Mail.
    Step 3
    In the Finder, hold down the option key and select
              Go ▹ Library
    from the menu bar. Move the following items (some may not exist) from the folder that opens to the Desktop:
              Application Support/AddressBook/MailRecents-v4.abcdmr
              Containers/com.apple.corerecents.recentsd
              Containers/com.apple.mail
              Containers/com.apple.MailServiceAgent
              Mail
    Note: you are not moving the Mail application. You’re moving a folder named “Mail.”
    Launch Mail. It will behave as if you were setting it up for the first time. Go through the setup process with one of your accounts, using the information you noted earlier. Test. If Mail works now, recreate the rest of your settings.
    If there’s no improvement, quit Mail and put back the items you moved to the Desktop, replacing any newer ones that may have been created in their place. Stop here and post your results.
    Step 4
    This step should not be necessary with IMAP or Exchange mailboxes, because they synchronize automatically with the server. Nevertheless, if the mailboxes are very large, importing them may spare you the need for a long download.
    If you took Step 2, import the mailboxes you exported:
              File ▹ Import Mailbox...
    Select Apple Mail as the data type.
    If you skipped Step 2, look inside the Mail folder on the Desktop for a subfolder Mail/V2/Mailboxes. Import the mailboxes it contains.
    Test. If Mail is still working, delete the items you moved to the Desktop in Step 3.

  • How do I get a mixer to show up in Soundtrack Pro?

    The problem is not using a mixer but I can't get one to show. I see my sound track, (can play) and did analysis and cleaned up but clicking all mixer buttons and choosing a different layout all 3 choices never give me a mixer.
    The lower pane with the mixer highlighted is blank. I also set up a new project choosing multitrack with mixers or Seperate Mixer and video which show the mixers but as soon as I put my aif file into Soundtrack the mixer disappears from the window only the wave forms are there. I have posted this several times.There must be somebody who has a clue what is going on here? (Apple?)Thank you.
                                                                                                                                          W.W.

    Since nobody could answer my cry for help (no you don't find it in the manual) I am entitled to the 10 points finding the solution. Here is how to get around not being able to get a mixer for your aif file you want to edit. When you double click Soundtrack Pro an empty window opens with an empty track 1 and track 2.
    As a seasoned Apple user you think drag and drop the .aif audio file into those tracks you want to edit and use in your movie. Well you are in for a three day search for answers how to get that mixer to open that you want to use! If somebody (or the manual) would just say you can't do that you could have saved that time to do what you need to do!
    In order to get the mixer(s) you need you must:
    1. click on "New Project" on the top left: window opens with both video and audio mixer tracks in which you can drop you audio. You can than open Layouts and choose from 3 layout choices of mixers. Happy panning and mixing.
                 W.W.

  • How can I prevent Mail from Getting Messages Automatically?

    I want to stop Apple Mail from getting new messages until I click on the "Get Mail" button.
    This is proving hard to achieve.
    In Mail Preferences, I have set Check for New Messages to "Manually."
    This does nothing.
    Additionally, I went to each account, went into the Advanced tab and unchecked "Include when automatically checking for new messages."
    This also changed nothing.
    This should be fairly easy to achieve, and yet it is not. Any thoughts on how I can set this up? I have one iCloud account, one Google Apps via IMAP account and one generic IMAP account. They all seem to ignore the settings for message fetching.
    I am running OS X Yosemite 10.10.2. Apple Mail version 8.2 (2070.6).
    Mid-2011 iMac 21.5", 16GB Ram, 2.5 GHz Quad-Core i5.

    Same issue since Mavericks.

  • TS2621 I have my data retrieval se to manual. When I get mail I get a popup on the screen for each and every e-mail asking if I want to view it or cancel and I have to cancel each one before I can resume any other actions on my ipad. How can I turn this o

    I have my mail set to retrieve data manually. When I retrieve mail, I get a popup box for each and every e-mail message asking if I want to view or cancel and must either view or cancel each one before I can use other apps on the ipad. How can I turn these popups off?

    Try reset iPad (not Restore)
    Hold down the Sleep/Wake button and the Home button at the same time for at least ten seconds, until the Apple logo appears
    Note: Data will not be affected.

  • My mail is getting stuck in outbox, but I am receiving mail just fine. Message says 'server timed out'. What can i do to fix this?

    My mail is getting stuck in outbox, but I am receiving mail just fine. Message says 'server timed out'. What can i do to fix this?

    Hello Naila1,
    It sounds like you are unable to send emails, as they go straight to the outbox, but you can get the emails without issue. I recommend using the Connection Doctor to help you troubleshoot what is happening with the following article:
    OS X Mail: Troubleshooting sending and receiving email messages
    http://support.apple.com/kb/ts3276
    Thank you for using Apple Support Communities.
    Take care,
    Sterling

  • Have updated firefox and my e-mail at terra.es has disappeared .with no mail shown or history.how can i recover my mail or get back to original firefox. am on windows 7.

    have updated firefox and my e-mail at terra.es has disappeared .with no mail shown or history.how can i recover my mail or get back to original firefox. am on windows 7.

    Clear the cache and the cookies from sites that cause problems.
    * "Clear the Cache": Tools > Options > Advanced > Network > Offline Storage (Cache): "Clear Now"
    * "Remove the Cookies" from sites causing problems: Tools > Options > Privacy > Cookies: "Show Cookies"
    Start Firefox in <u>[[Safe Mode]]</u> to check if one of the extensions is causing the problem (switch to the DEFAULT theme: Firefox (Tools) > Add-ons > Appearance/Themes).
    * Don't make any changes on the Safe mode start window.
    * https://support.mozilla.com/kb/Safe+Mode
    * [[Troubleshooting extensions and themes]]

Maybe you are looking for

  • Need to play Power Point Presentation with Audio in Keynote

    My wife and I have lots of Power Point slide shows with audio from the days when we were windows users. We have downloaded a trial version of iWork 09 and would like to know how we can play these .pps files that contain audio in Keynote. We appreciat

  • Green screen won't let me add transitions.

    Followed the directions on Green Screen many times without a problem but when I want to add a transition between takes the transition jumps to the beginning of the background row and will not go to where I select. ?

  • How To Give Print Option In Module Pool

    Hi , I am displaying the Output in table control. I have to give the Print option. I have tried to enable the same in the PF status but it is not working as it is in Report. Regards, Srinivas

  • Changing Login Name in Acrobat Reader

    Is there an easy way to change your login name (the name reader uses as an author name when commenting)? It is a pretty easy process in Pro, but my Reader uses need to change their author name as well any help?

  • [Swiss JSF Users] JSF Special-Interest-Group Switzerland

    JSF is proving more and more competitive each day. A increasing number of companies are developing applications based on JSF. Often the same questions/problems/hints are valid for almost all users of JSF. Internationally some active communities have