Workflow notificaiton mailer Does Not Start, Remains In Status Starting

Hi Gurus,
Workflow notification mailer is not getting started and its showing status starting.I have tried to bounce the service componets still its showing starting.My application version is 12.0.6 and OS is AIX.I got a metalink reference"Notification Mailer Does Not Start, Remains In Status Starting [ID 371830.1]".Since its a Productin instance can we try it??Please suggest.Couldnt understand what will be the impact of updating wf_event_subscriptions.Please suggest/help...
Thank you so much...!!

994272 wrote:
Thanks Hussein,
From the logfile I got the following error.
[Mar 16, 2013 2:48:36 AM EDT]:1363416516284:-1:-1:ios1402e.idc.ikon.org:10.81.42.25:-1:-1:1:20420:SYSADMIN(0):-1:Thread[GSMQueueProcessor,5,main]:2021231295:40299:1363412471938:4:PROCEDURE:[SVC-GSM-WFALSNRSVC-4786418 : oracle.apps.fnd.cp.gsc.Processor.processControlEvent(String)]:BEGIN (noEvent)
[Mar 16, 2013 2:48:36 AM EDT]:1363416516284:-1:-1:ios1402e.idc.ikon.org:10.81.42.25:-1:-1:1:20420:SYSADMIN(0):-1:Thread[GSMQueueProcessor,5,main]:2021231295:40299:1363412471938:4:STATEMENT:[SVC-GSM-WFALSNRSVC-4786418 : oracle.apps.fnd.cp.gsc.Processor.processControlEvent(String)]:Did not receive any control events.
ThanksYou can follow the steps in (Notification Mailer Does Not Start, Remains In Status Starting [ID 371830.1]).
Thanks,
Hussein

Similar Messages

  • Mail does not correctly reflect read status of Gmail IMAP messages

    Apple Mail is no longer correctly reflecting the read status of emails that have been read on other devices/computers when viewing my Gmail IMAP inbox. Whereas my iPhone and Gmail account both show changes in items' read status immediately or on next mail retrieval, in Apple Mail the only way I have currently of updating the read status is to quit Mail and restart it. Neither automatic fetching of Mail, nor clicking "Get Mail", nor right-clicking the Inbox and choosing "Synchronize Gmail" work.
    My other IMAP account (MobileMe) does not exhibit this behaviour, but Mail.app does this with Gmail on both of my desktop computers.
    Anyone out there with a similar problem? And are there any possible solutions, or is it a bug/incompatibility with GMail?

    This problem is still occurring for me in 10.5.5 - I even tested it by creating a new gmail account with only 1 message in it, in case it was a problem with large mailboxes, and the same thing happened.
    Mail messages marked read elsewhere are not updated in Mail on the next send/receive. I wonder if everyone with this problem could report the bug at http://www.apple.com/support/feedback and see if we can get this solved in 10.5.6

  • Package javax.mail does not exist (Still having trouble)

    Good Morning
    I know that there are several posts regarding issues with javamail. I have viewed them for the past hour. While several of them address my issue I have been unable to locate a solution.
    Bare with me please, I am making this post very thorough. The other threads I have read are frusterating because the problems people tend to post are not clear.
    I am trying to run "msgsend" which is a provided demo of javamail-1.4 using command prompt (start - run - cmd) with the javac command.
    The output below is directly pasted from command prompt and written in bold.
    C:\download\javamail-1.4\demo>javac msgsend.java
    C:\download\javamail-1.4\demo>javac msgsend.java
    msgsend.java:44: package javax.mail does not exist
    import javax.mail.*;
    ^
    msgsend.java:45: package javax.mail.internet does not exist
    import javax.mail.internet.*;
    ^
    msgsend.java:140: cannot find symbol
    symbol : class Session
    location: class msgsend
    Session session = Session.getInstance(props, null);
    ^
    msgsend.java:140: cannot find symbol
    symbol : variable Session
    location: class msgsend
    Session session = Session.getInstance(props, null);
    ^
    msgsend.java:145: cannot find symbol
    symbol : class Message
    location: class msgsend
    Message msg = new MimeMessage(session);
    ^
    msgsend.java:145: cannot find symbol
    symbol : class MimeMessage
    location: class msgsend
    Message msg = new MimeMessage(session);
    ^
    msgsend.java:147: cannot find symbol
    symbol : class InternetAddress
    location: class msgsend
    msg.setFrom(new InternetAddress(from));
    ^
    msgsend.java:151: package Message does not exist
    msg.setRecipients(Message.RecipientType.TO,
    ^
    msgsend.java:152: cannot find symbol
    symbol : variable InternetAddress
    location: class msgsend
    InternetAddress.parse(to,
    ^
    msgsend.java:154: package Message does not exist
    msg.setRecipients(Message.RecipientType.CC,
    ^
    msgsend.java:155: cannot find symbol
    symbol : variable InternetAddress
    location: class msgsend
    InternetAddress.parse(cc,
    ^
    msgsend.java:157: package Message does not exist
    msg.setRecipients(Message.RecipientType.BCC,
    ^
    msgsend.java:158: cannot find symbol
    symbol : variable InternetAddress
    location: class msgsend
    InternetAddress.parse(bcc,
    ^
    msgsend.java:167: cannot find symbol
    symbol : class MimeBodyPart
    location: class msgsend
    MimeBodyPart mbp1 = new MimeBodyPart();
    ^
    msgsend.java:167: cannot find symbol
    symbol : class MimeBodyPart
    location: class msgsend
    MimeBodyPart mbp1 = new MimeBodyPart();
    ^
    msgsend.java:169: cannot find symbol
    symbol : class MimeBodyPart
    location: class msgsend
    MimeBodyPart mbp2 = new MimeBodyPart();
    ^
    msgsend.java:169: cannot find symbol
    symbol : class MimeBodyPart
    location: class msgsend
    MimeBodyPart mbp2 = new MimeBodyPart();
    ^
    msgsend.java:171: cannot find symbol
    symbol : class MimeMultipart
    location: class msgsend
    MimeMultipart mp = new MimeMultipart();
    ^
    msgsend.java:171: cannot find symbol
    symbol : class MimeMultipart
    location: class msgsend
    MimeMultipart mp = new MimeMultipart();
    ^
    msgsend.java:185: cannot find symbol
    symbol : variable Transport
    location: class msgsend
    Transport.send(msg);
    ^
    msgsend.java:193: cannot find symbol
    symbol : class Store
    location: class msgsend
    Store store = null;
    ^
    msgsend.java:195: cannot find symbol
    symbol : class URLName
    location: class msgsend
    URLName urln = new URLName(url);
    ^
    msgsend.java:195: cannot find symbol
    symbol : class URLName
    location: class msgsend
    URLName urln = new URLName(url);
    ^
    msgsend.java:212: cannot find symbol
    symbol : class Folder
    location: class msgsend
    Folder folder = store.getFolder(record);
    ^
    msgsend.java:218: cannot find symbol
    symbol : variable Folder
    location: class msgsend
    folder.create(Folder.HOLDS_MESSAGES);
    ^
    msgsend.java:220: cannot find symbol
    symbol : class Message
    location: class msgsend
    Message[] msgs = new Message[1];
    ^
    msgsend.java:220: cannot find symbol
    symbol : class Message
    location: class msgsend
    Message[] msgs = new Message[1];
    27 errors
    Here are the methods I have tried...
    1. Make sure you have most current version of Java
    2. Reinstall Java
    3. Attempt to compile in an IDE (Attempted in Eclipse 3.2)
    4. Set class path
    Some sources suggest "CLASSPATH" some suggest "CLASS PATH" as the variable name. I have tried both.
    Below is what the classpath looks like in bold.
    Variable Name: CLASS PATH
    Variable value: c:\download\javamail-1.4\mail.jar;C:\download\jaf-1.1\activation.jar;.
    I have double checked all folder names and copy pasted all entries to eliminate typos. Javamail-1.4 and jaf-1.1 are both located in c:\download which is the same location Class Path points to.
    Thank you very much for your input and effort. I can imagine how frusterating it is responding to 20million javamail posts :) (that may be a bit of an overstatement!)
    Thank you again!
    Irbi
    Message was edited by:
    irbi
    Message was edited by:
    irbi

    Yes - I have read that part of the README and did exactly as it has said in a previous attempt. I should have mentioned that here I'm sorry :)
    I moved the .jar files into the download folder and set the classpath exactly as the readme shows.
    When I do that the msgsend.java compiles correctly but it still does not run.
    Below is what happens.
    C:\download\javamail-1.4\demo>set CLASSPATH=%CLASSPATH%;c:\download\javamail-1.4
    \mail.jar;%CLASSPATH%;c:\download\jaf-1.1\activation.jar.
    C:\download\javamail-1.4\demo>javac msgsend.java
    C:\download\javamail-1.4\demo>java msgsend.java
    Exception in thread "main" java.lang.NoClassDefFoundError: msgsend/java
    C:\download\javamail-1.4\demo>
    I have tried fixing this error as well via forums and FAQs but it seems to be the most generic error.
    One suggestion was to clear your classpath. I tried this with a test hello world program which was giving the same error - "NoClassDefFoundError". By clearing the classpath I was able to get the hello world program to run without this error. But I can't just clear the classpath in this instance because it needs to point to mail.jar and activation.jar for the program to compile.
    Thanks again for all of your efforts. You are more appreciated than you know.

  • Mail does not create new emails based on the highlighted mailbox, but rather the receiving mailbox of whatever individual email happens to be highlighted. This was not the case prior to Lion. Is this a bug or an error on my part?

    Mail does not create new emails based on the highlighted mailbox, but rather according the receiving mailbox of whatever individual email happens to be highlighted. This was not the case prior to Lion. Is this a bug or an error on my part? (I do have the setting for creating new emails from the highlighted mailbox checked.)

    The questions about time was not only because of thinking about the Time Machine, but also possible impact on recognizing which messages remaining on a POP server (doesn't apply to IMAP) have been already downloaded. In the Mail folder, at its root level, in Mail 3.x there is a file named MessageUidsAlreadyDownloaded3 that should prevent duplicate downloading -- some servers may not communicate the best with respect to that, and the universal index must certainly be involved in updating that index file. If it corrupts, it can inhibit proper downloading. However, setting the account up in a New User Account and having the same problem does not point that way, unless your POP3 server is very different from most.
    That universal index is also typically involved when messages are meant to be moved from the Inbox to another mailbox -- in Mail 3.x the message does not move, but rather is copied, and then erased from the origin mailbox. That requires updating the Envelope Index to keep track of where the message is, and should keep track of where it is supposed to have been removed after the "Move".
    Ernie

  • Workflow Notification Mails Are Not Being Sent

    Hi
    we are running 11.5.10.2 version , some times Workflow Notification Mails Are Not Being Sent , so how should i start diagnose this issue.
    Regards

    Dear Hussein
    thanks for your reply, below are the log messages from the todays file FNDCPGSC6854.txt
    [May 12, 2009 1:21:12 PM AST]:1242123672450:Thread[outboundThreadGroup1,5,outboundThreadGroup]:0:-1:DAR
    EBS:172.30.2.45:-1:-1:ERROR:[SVC-GSM-WFMLRSVC-6854-10006 : oracle.apps.fnd.wf.mailer.SMTPOutboundProces
    sor.send(Message)]:Problem encountered when sending to {[[=?UTF-8?B?2LXZhNin2K0g2LXYp9mE2K0g2LnYrNmE2Kf
    Zhg==?= <[email protected]>]]} -> javax.mail.MessagingException: 451 Timeout waiting for client input
    [May 12, 2009 1:21:12 PM AST]:1242123672451:Thread[outboundThreadGroup1,5,outboundThreadGroup]:0:-1:DAR
    EBS:172.30.2.45:-1:-1:ERROR:[SVC-GSM-WFMLRSVC-6854-10006 : oracle.apps.fnd.wf.mailer.SMTPMessageHandler
    .sendMessages(String)]:MessagingException -> javax.mail.MessagingException: 451 Timeout waiting for cli
    ent input
    [May 12, 2009 2:03:48 PM AST]:1242126228129:Thread[inboundThreadGroup1,5,inboundThreadGroup]:0:-1:DAREB
    S:172.30.2.45:-1:-1:UNEXPECTED:[SVC-GSM-WFMLRSVC-6854-10006 : oracle.apps.fnd.wf.mailer.IMAPInboundProc
    essor.moveMessage(Message, String)]:Unable to move message {null} -> javax.mail.StoreClosedException: *
    BYE Microsoft Exchange Server 2003 IMAP4rev1 server version 6.5.7638.1 closing connection due to timeo
    ut.
    [May 12, 2009 2:17:01 PM AST]:1242127021657:Thread[outboundThreadGroup1,5,outboundThreadGroup]:0:-1:DAR
    EBS:172.30.2.45:-1:-1:ERROR:[SVC-GSM-WFMLRSVC-6854-10006 : oracle.apps.fnd.wf.mailer.SMTPOutboundProces
    sor.send(Message)]:Problem encountered when sending to {[[=?UTF-8?B?2YXYp9ix2KrZhiDZgdmG2YrYsg==?= <mvi
    [email protected]>]]} -> javax.mail.MessagingException: 451 Timeout waiting for client input
    [May 12, 2009 2:17:01 PM AST]:1242127021658:Thread[outboundThreadGroup1,5,outboundThreadGroup]:0:-1:DAR
    EBS:172.30.2.45:-1:-1:ERROR:[SVC-GSM-WFMLRSVC-6854-10006 : oracle.apps.fnd.wf.mailer.SMTPMessageHandler
    .sendMessages(String)]:MessagingException -> javax.mail.MessagingException: 451 Timeout waiting for cli
    ent input
    [May 12, 2009 3:49:02 PM AST]:1242132542705:Thread[outboundThreadGroup1,5,outboundThreadGroup]:0:-1:DAR
    EBS:172.30.2.45:-1:-1:ERROR:[SVC-GSM-WFMLRSVC-6854-10006 : oracle.apps.fnd.wf.mailer.SMTPOutboundProces
    sor.send(Message)]:Problem encountered when sending to {[[=?UTF-8?B?2KfYtNix2YEg2KfZhNiz2YrYryDYp9it2YX
    YryDYtNio2YQ=?= <[email protected]>]]} -> javax.mail.MessagingException: 451 Timeout waiting for clie
    nt input
    [May 12, 2009 3:49:02 PM AST]:1242132542705:Thread[outboundThreadGroup1,5,outboundThreadGroup]:0:-1:DAR
    EBS:172.30.2.45:-1:-1:ERROR:[SVC-GSM-WFMLRSVC-6854-10006 : oracle.apps.fnd.wf.mailer.SMTPMessageHandler
    .sendMessages(String)]:MessagingException -> javax.mail.MessagingException: 451 Timeout waiting for cli
    ent input
    [May 12, 2009 4:03:08 PM AST]:1242133388437:Thread[outboundThreadGroup1,5,outboundThreadGroup]:0:-1:DAR
    EBS:172.30.2.45:-1:-1:UNEXPECTED:[fnd.wf.mailer.URLMIMETagListener]:oracle.apps.fnd.wf.mailer.URLMIMETa
    gListener.editStyleRef(HTMLTagEvent, String) Making a connection to {http://oracle.kannon.com:8000/OA_
    HTML/cabo/images/cache/cmbts.gif)} returned {404 - Not Found}. Leaving as a reference

  • Javax.mail does not exist

    I would like to thank warnerja for your advise about the classpath.
    Thanks for the classpath information regarding the .jar files. Now when I start tomcat cat it runs appropriately. However I am still having a problem when i try to compile the message send demo. The message I get is javax.mail does not exist,(import javax.mail.) when I downloade the mail api I placed on the root of my D drive and i placed the mail and activation jar files in my lib folded of my Jakarta-3.2.1 lib folder. I graduated Chubb Institute back in october and am currently still looking for work so my memory but be a little fuzzy as to whether or not this is correct. Your help is greatly appreciated.

    If you are just compiling the classes then you should check that the mail.jar file is in your compiler classpath. How you check and set it depends on how you are compiling it and on what system etc.

  • The Photo Browser in Mail does not exist in my Macbook.

    The Aperture Tutorial mentioned that I can click on the Photo Browser button in the toolbar in Mail. However, the Photo Browser Button in Mail does not exist in my Mail.app. I tried to customize toolbar but did not find such option. They only way is to open the Photo Browser from "Window" in the top menu bar. I mean, it works in the tutorial videos but not in my system. Any way to fix it?
    (I am running Mac OS 10.6.2, and Aperture 3)

    this button only exists in a message composition window, not in the main message list window. start a new message and this button will be there on the top right.

  • Safari says "i cannot open the page because the server cannot be found" I get this on Safari and Mail does not function. Apps work like a dream. All Windows OS are screaming. Any thoughts?

    Safari says "i cannot open the page because the server cannot be found" I get this on Safari and Mail does not function. Apps work like a dream. All Windows OS are screaming. Any thoughts?

    You can check this thread for the answer you are looking for.
    https://discussions.apple.com/thread/3685247?start=0&tstart=0

  • Mail does not launch

    Mail does not launch I tried everything I know Please advise I did upgrade to Yosemite  few days ago

    Please read this whole message before doing anything.
    This procedure is a test, not a solution. Don’t be disappointed when you find that nothing has changed after you complete it.
    Step 1
    The purpose of this step is to determine whether the problem is localized to your user account.
    Enable guest logins* and log in as Guest. Don't use the Safari-only “Guest User” login created by “Find My Mac.”
    While logged in as Guest, you won’t have access to any of your documents or settings. Applications will behave as if you were running them for the first time. Don’t be alarmed by this behavior; it’s normal. If you need any passwords or other personal data in order to complete the test, memorize, print, or write them down before you begin.
    Test while logged in as Guest. Same problem?
    After testing, log out of the guest account and, in your own account, disable it if you wish. Any files you created in the guest account will be deleted automatically when you log out of it.
    *Note: If you’ve activated “Find My Mac” or FileVault, then you can’t enable the Guest account. The “Guest User” login created by “Find My Mac” is not the same. Create a new account in which to test, and delete it, including its home folder, after testing.
    Step 2
    The purpose of this step is to determine whether the problem is caused by third-party system modifications that load automatically at startup or login, by a peripheral device, by a font conflict, or by corruption of the file system or of certain system caches.
    Please take this step regardless of the results of Step 1.
    Disconnect all wired peripherals except those needed for the test, and remove all aftermarket expansion cards, if applicable. Start up in safe mode and log in to the account with the problem. You must hold down the shift key twice: once when you turn on the computer, and again when you log in.
    Note: If FileVault is enabled in OS X 10.9 or earlier, or if a firmware password is set, or if the startup volume is a software RAID, you can’t do this. Ask for further instructions.
    Safe mode is much slower to start up and run than normal, with limited graphics performance, and some things won’t work at all, including sound output and Wi-Fi on certain models. The next normal startup may also be somewhat slow.
    The login screen appears even if you usually log in automatically. You must know your login password in order to log in. If you’ve forgotten the password, you will need to reset it before you begin.
    Test while in safe mode. Same problem?
    After testing, restart as usual (not in safe mode) and verify that you still have the problem. Post the results of Steps 1 and 2.

  • Mail does not recognize my new changed password

    so i had my ipad stolen today and I changed my passwords to both of my email addresses. For some reason mail does not want to sync with my gmail. It says that I have wrong username or password. My iphone doesnt accept it either... But i am able to log in in my browser. Any ideas?

    Hello,
    Open Keychain Access in Utilities, use Keychain First Aid under the Window Menu item, then either check the Password under that item, change it, or delete it and start over.
    Should be 2 for each account, in & out, but possible to have duplicates of those.

  • Mail does not work

    I have had this problem for few days now, the mail does not work.
    It starts to run, but the colorful circle starts to spin and nothing else happens... I can not go to the preferences or anywhere else and it does not open my account. Only thing that I can do is force quit. I have tried everything I know; repaired permissions, run the cd to check the disk...
    Does anyone know what I should do? This is the first time I have this kind of problem...

    How many email accounts do you have setup, or are you still trying to get it to open so you can setup accounts? And you are still using 10.4.11 as it says in your profile, right?
    If you've already repaired permissions and the disk, quit Mail and go to Users/username/Library/Mail and delete the Envelope Index file, but +*don't delete the Trash*+. Then launch Mail and if it gets that far, let it import your mail messages, which shouldn't take too long. If that solves your problem, then you can empty the Trash.
    Mulder

  • Mail does not allow signed message with .Mac certificate

    Hi all,
    until a few weeks ago, I was able to send signed or encrypted message with my .Mac account and .Mac certificate. Both of them are still valid, and I can still read all messages I sent as encrypted and/or signed, however, Mail does not show the two buttons to crypt and/or sign emails. The certficate seems to work to encrypt iChat dialogs as well.
    I repaired my Keychain, looked at how certficates were configured, everything seems normal to me.
    Any clue ??

    Well, it seems that we've come across something finally.
    In comparing notes, my friend (who is currently able to sign and encrypt messages) and I were comparing notes on our respective certificates. In doing so, he pointed out that he'd noticed a difference in the PURPOSE of my cert versus his cert.
    His cert shows the following purposes:
    1 - Client Authentication
    2 - Email Protection
    3 - Apple .Mac Identity
    4 - Apple iChat Signing
    5 - Apple iChat Encryption
    Whereas mine only shows these purposes:
    1 - Client Authentication
    2 - Apple iChat Signing
    3 - Apple iChat Encryption
    Another thing I noticed while comparing his cert to mine after he pointed this out...his cert is due to expire at the end of October. Mine, on the other hand, was created this past Friday.
    Now, from what I understand, these certs expire one year from date of issue, unless they are revoked earlier. So, I suppose the big question to everyone else out there that is having trouble with using their .Mac issued certificates is "When did yours get renewed?".
    I'm suspecting at this point that somewhere around the end of June the certificates issued by Apple for iChat signing suddenly stopped having the "Purpose" of mail protection. It would also seem that they suddenly stopped having the purpose of .Mac Identity.
    Now I'm curious why Apple would do this, make it actually relatively easy to create a cert that could be used for iChat and Mail encryption, then suddenly take it away. Is this actually what has happened here?
    I'd be really interested in seeing what the renewal dates are and the corresponding "Purposes" are for many of the folks that are reporting trouble with this very issue.
    If you are one of those people who had mail encryption working using your .mac certificate, and it suddenly stopped working...feel free to post your cert information here.
    To get the ball rolling, here's the information from mine...
    Issued By:
    - Apple .Mac Certificate Authority
    Expires:
    - September 14, 2007
    Purposes:
    - Client Authentication
    - Apple iChat Signing
    - Apple iChat Encryption
    G4 800 (Quicksilver) / Powerbook 1.5 GHz   Mac OS X (10.4.7)  

  • HT1338 Mail does not open after software update?

    My MacBook just updated with OSX 10.6.8 buildK549.  Now my Mail does not open. I get a message that the mail version 4.5  1084/1065 is not compatible with the OSX.  There was a new mail icon in the apps file but it did not open. Any suggestions?
    How do I reinsatll Mail?
    Thanks

    It's giving you that message because the update changed Mail from version 4.5 to 4.6 and it's seeing the 4.5. The part of the update that was meant for Mail failed because it couldn't find Mail where it was looking for it.
    See
    https://discussions.apple.com/thread/4311280?tstart=0

  • Mail does not send email

    My problem is simply that Mail does not send email.
    I have just migrated from iMac G5 to iMac Intel by using Migration Assistant. Everything else works just fine and I can receive email. However, if I try to reply, forward or send a new email message, Mail just does not do anything - no error message, nothing.
    The fixes I have tried so far are removing the Mail plist file, repairing disk permissions and mailboxes. Of course, I have checked the account settings, especially outgoing server settings. I also reinstalled Mail application with Pacifist. None of this has solved the problem. I have tried sending email with Thunderbird and it works with no problems.
    Does anybody have any suggestions how to fix this issue?
    The OS is 10.4.8, Mail Version 2.0.6 (749.2/752.3), all the suggested software updates done.
    iMac Core Duo 20" 2GHz   Mac OS X (10.4.8)  

    Reinstalling Mail is rarely necessary or appropriate to solve a problem. It certainly cannot fix anything that could be wrong within your home folder or at the server or with the network, and may even introduce new issues if not done properly. Moreover, in Mac OS X 10.4 you don’t need Pacifist to reinstall Mail, you could also do it as described in the following article:
    Custom installs in Mac OS X 10.4
    Verify/repair the startup disk (not just permissions), as described here:
    The Repair functions of Disk Utility: what's it all about?
    After having fixed all filesystem issues, if any, if the version of the system software on your install disks is earlier than what you’re using now (and only in that case), then you must also reinstall the Combo Update for the type of computer and the version of Mac OS X you’re using, to bring Mail back in sync with the rest of the system:
    About the Mac OS X 10.4.8 Combo Update
    Mac OS X 10.4.8 Combo Update for PPC
    Mac OS X 10.4.8 Combo Update for Intel
    The above won’t solve the problem. It’s just to ensure that you’ve properly reinstalled Mail, which you shouldn’t have done, and which apparently you didn’t do properly -- the version of Mail on your system should be 2.1.1, not 2.0.6.
    The original problem could be caused by some Launch Services cache or preferences corruption. The following article describes how to manually reset Launch Services -- the notes at the bottom of the article also provide information about the side effects of deleting each of the files involved:
    Resetting Launch Services
    If you prefer using a cache cleaning utility instead of following the manual procedure described in the previous article, this other article provides links to some utilities that can be used for troubleshooting and cache cleaning:
    Resolving Disk, Permission, and Cache Corruption
    It seems that the most appropriate utility for solving this particular problem is Tiger Cache Cleaner, but you may also want to consider other utilities, such as OnyX, or Cache Out X, which are free. Whatever utility you choose, be sure to read this first:
    Side effects of System cache cleaning
    As an example, this is how you should proceed with OnyX:
    1. Quit all applications.
    2. Launch OnyX and enter your administrator password.
    3. Click Maintenance. In the Reset section, check LaunchServices database.
    4. You may uncheck any other pre-checked options if you wish.
    5. Click the Execute button.
    6. Restart the computer.

  • Installed OS X 10.5.6 AND NOW MAIL DOES NOT WORK

    Installed the newest operating system and Mail does not send or receive messages from the .mac/mobile me account. In fact there are no old messages in any of the folders (inbox,sent,junk,drafts, or trash). New messages can be read and sent online but nothing through Mail.
    I have deleted the account and added it new again in preferences. I have deleted Mail and reinstalled it. I have made sure the account is "Online" and still nothing. Activity shows no progress and Connection doctor says I am connected to both incoming and outgoing mail servers. Help?!!

    I am not sure what your attempts to fix this may have created, but the original issue may be what is discussed in:
    http://support.apple.com/kb/TS2537
    In addition to the article cited, if you ran 10.3 or earlier prior to upgrading to Tiger, once-upon-a-time, you might also need to remove two files with MessageSorting in their names.
    More info, please. Your issue may not be what is targeted by the article, particularly if you could see any messages in any mailbox?
    Ernie

Maybe you are looking for

  • Moved iTunes music folder to HDD, Now iTunes Can't Find it--Help :-)

    I finally was able to get an HDD that actually mounted and now I have moved my iTunes music folder based on the instructions here: iTunes: Moving your iTunes Music folder. I printed them out and followed them step-by-step. Before moving the folder iT

  • JCO Error - SAP ER

    Dear all, I'm facing this issue during the SAP reconciliation. Could you please help me? [2012-09-18T13:54:32.480+02:00] [oim] [ERROR] [] [OIMCP.SAPH] [tid: JCoServerThread-1] [userId: oiminternal] [ecid: 0000JbPDKdbEWN05zzP5iW1GM5y7000002,1:28079] [

  • IPad Mail Subject Line

    Every time I compose an email without a subject line a warning comes up and says "The Subject Line is empty, do you still want to send" is there a way to avoid this warning every time I send an email?? Thanks

  • I can't publish photos to facebook anymore with Iphoto...

    I can't publish photos to facebook anymore using Iphoto...A small window opens requesting my FB email & password and to accept FB's terms. Once I add the info and hit "login" a message shows underneath saying: An unknown error occurred. Please try ag

  • Multipule cases choosen by boolean buttons?

    How can i choose multipule cases for one case and only one for another case? FOr the one case i am using the build array function along with the search 1-D array function which works great. But when i want to choose multipule cases at once using the