Tasks display fine in iCal, but not in Mail

In iCal I have my task list on the right which is showing all my tasks just fine. However, in Mail I have an IMAP account with a Apple Mail To Do folder instead of a special entry in the source list for tasks. I used to have a special entry for that, but now I only have this regular IMAP folder.
When I select the Apple Mail To Do folder I do see entries for tasks in the message list pane displaying as regular mail messages but without a sender. When I select a task entry the message view pane shows the task as a mime-attachment icon.
How can I restore the normal task view in Mail?

I upgraded to Snow Leopard and now my Mail looks like this: http://twitpic.com/grjb5
I believe I shouldn't see that 'Apple Mail To Do' folder under my IMAP account and I guess I shouldn't be able to access my mailbox from the tasks entry (the one with the globe icon).
Anyone has any idea how to fix this?

Similar Messages

  • Float displays fine in DW but not in browsers

    I'm not posting any code at this stage as I realise this may be a very simple question!
    I have a simple panel with an image and some text floated around it.  This displays fine in the Dreamweaver 8 Design view, but in both IE8 and Firefox, the text does not float, but appears below the image.
    Is this something obvious, or should I post further details?
    Thanks.

    For best results, reply through the web forum; not e-mail.
    Thanks, Nancy - I would have done so, but had big problems getting through to a lot of major web sites in the US last night, so couldn't use the forum.  OK this morning, and have noted the blank posts.  Thanks to a FAQ I now realise that I can't use "Xxxx wrote:" in an e-mail post, nor use a line of dashes as separators - both of which I did in my replies!  Ho hum...
    So, now that I'm back in contact, the answer to your questions is yes - I think so!  Time for some code:
    #container {
        width: 56%;
        height: 1480px;
        position: absolute;
        border: none;
        top: 40px;
        left: 9%;    
        background-color: #FFFFFF;
        clear: both;
    .longshot {
        float: left;
        width: 262px;
        <div id="container">
          <img class="longshot" src="Photos/LongShotVignette3.jpg" />
          <p>Quite why the property is called &quot;Lo Sixto&quot; is  lost in the mists of time, but there were certainly five popes of  that name, the latest of whom lived during the 15th century.</p>
          <p> </p>
        </div>
    I realise the answer is probably trivial, but I have picked up Dreamweaver again after a long break (hence v 8!) and to say I am rusty would be an understatement!
    Phil

  • Website displays fine in Preview but not when 'Published' to BC

    Hi
    I've posted this question twice in the Adobe Muse discussion forums and had zero response so hopefully people with more experience form the BC perspective might be able to shed some light on this.
    Basically I have a subscription to Muse and with that the ability to host one site with Business Catalyst. When checking the first site I designed I'd use 'Preview in Browser' and the site occasionaly displayed incorrectly, so I changed my habits to publishing the work-in-progress site to the BC url with this current site.
    Unfortunately there are multiple display problems with doing this; the two images below show the difference between 'Publish' to the BC domain and 'Preview site in browser'.
    I've cleared the cache of the browser multiple times and used both Firefox and Safari and the problem still remains. I'm assuming it's a problem with Business Catalyst?
    Does anyone have a solution for this? Has data become corrupted in BC, and if so is there a way of 'flushing' the data held on the BC site clean to start from scratch?
    Would really appreciate some help here as it's impossible to show my client the current state of the site
    Thanks in advance
    Phil

    Hi Liam
    Tried it in Safari and Firefox (I'm on a Mac), cleared the cache and still was getting issues.
    http://httpwiles06businesscatalystcom.businesscatalyst.com/clients.html
    If you go to the client page there I'm getting the images behing strangely like the top pic I posted, also the top type image has moved over.
    i set up a subdomain on my own site to use as a test space for this client site and it works perfectly; that's on
    http://martinedwardstest.phunction.net/
    Appreciate any fedback, opinions or help on what might or might not be wrong.
    Cheers
    Phil

  • I have home sharing on but can't see my library on the computers icon. iTunes does display my purchased tunes but not my own imports.

    I have home sharing on in iTunes but can't see my library when I use the computers icon on Apple TV. iTunes does display my purchased tunes but not my own imports.
    I can play my own tunes by selecting them on my iMAC and directing them to Apple TV. I think that I should be able to see my entire library on Apple TV shouldn't I?
    Am up-to-date with iTunes and using Mavericks OS. I am connecting to Apple TV with an Airport Extreme 802.11n Wi-FI and a brand new Apple TV.
    Thanks for any comments,
    Roger

    Okay, so HomeSharing is not working.  Most likely due to a network issue.
    Is the ATV and computer running iTunes actually on the same network?  Many new routers create seperate networks for the wired and wireless portions of the local network.

  • Dreamweaver text looks fine in Safari but not Firefox NEED HELP!!!

    Dreamweaver text looks fine in Safari but not Firefox, all my text goes out of alignment and the fonts look like different sizes. Please let me know your thoughts. Here is a link to the page I'm having problems with. http://www.alexandrasantibanez.com/bio.html

    I had the same problem for days what a waste of time trying
    to figure out code... the code was fine. I was running flash player
    7.0 Upgrade your flash plugin to 9.0 and it should work fine in
    Firefox and IE. It did for me.

  • A javaScript code that runs fine in IE but not in other plz help

    Hello friends,
    plese help me in getting the code for Opera and Mozilla browsers. The following code runs fine in IE but not in other browsers. it show titlebar in other browsers. What to do disable titlebar in other browsers? plz help
    <html>
    <head>
    <script>
    //Frameless Banner Popup
    // Set the url of the banner popup window page
    //var theURL = "index.htm";
    var theURL = "/cgi-bin/login";
    // Set the title of the popup window
    var title = "Login"
    // Set the size of the popup window
    var windowWidth = 350; // cannot be less than 100
    var windowHeight = 350; // cannot be less than 100
    //var windowWidth = window.screen.width; // cannot be less than 100
    //var windowHeight = window.screen.height; // cannot be less than 100
    // Set the position of the popup window
    var windowX = ((window.screen.width/2) - 175);
    var windowY = ((window.screen.height/2) - 175);
    // Set true to auto-center (positions will be ignored)
    var autocenter = false;
    // Set true for popup to close when launch page does
    var autoclose = false;
    var s="width="+windowWidth+",height="+windowHeight;
    var beIE=document.all?true:false;
    var done=new Object("no");
    if(autocenter){
    windowX = (window.screen.width-windowWidth)/2;
    windowY = (window.screen.height-windowHeight)/2;
    function doAgilePopup(){
    if (beIE){
    agilePopper = window.open("","popAgile","fullscreen,"+s);
    agilePopper.blur();
    window.focus();
    agilePopper.resizeTo(windowWidth,windowHeight);
    agilePopper.moveTo(windowX,windowY);
    var frameString=""+
    "<html>"+
    "<head>"+
    "<title>"+title+"</title>"+
    "</head>"+
    "<frameset rows='*,0' framespacing=0 border=0 frameborder=0>"+
    "<frame name='top' src='"+theURL+"' scrolling=no>"+
    "<frame name='bottom' src='about:blank' scrolling='no'>"+
    "</frameset>"+
    "</html>"
    agilePopper.document.open();
    agilePopper.document.write(frameString);
    agilePopper.document.close();
    }else{
    agilePopper=window.open(theURL,"popAgile","scrollbars=no,"+s);
    agilePopper.blur();
    window.focus();
    agilePopper.resizeTo(windowWidth,windowHeight);
    agilePopper.moveTo(windowX,windowY);
    agilePopper.blur();
    if (autoclose){
    window.onunload = function(){agilePopper.close();}
    done="okay";
    </script>
    </head>
    <BODY onLoad="doAgilePopup(),top.window.close()">
    </body>
    </html>

    missing semicolon in end of the variable frameString ,
    better write the string in single line thats easy to find the bugs like this.
    var frameString=""+
    "<html>"+
    "<head>"+
    "<title>"+title+"</title>"+
    "</head>"+
    "<frameset rows='*,0' framespacing=0 border=0 frameborder=0>"+
    "<frame name='top' src='"+theURL+"' scrolling=no>"+
    "<frame name='bottom' src='about:blank' scrolling='no'>"+
    "</frameset>"+
    "</html>"

  • Can't FLIP a quick RENDER! Works fine in SHAKE but not to flip or Disk!

    Learning with Lynda.com!
    Part 1 has you rendering two files, one is a still image, the other a quicktime movie, I don't have the money for premium so I got my own clouds movie (.mov) and added a still plane.
    I key framed 1 - 100 and playing it back its fine in shake, but not on FLIP or DISK, its nothing but a still image. Have done it 5 times making sure that all the right buttons are on, or not, and as I said, it works INSIDE of shake but won't RENDER to FLIPBOOK!
    I don't suppose anyone wants to send me the exercise files? (on knees begging LOL) I am a member, just can't afford $300 for one pop and this is really the only program I need to learn.
    Thanks!

    Sorry if I'm pointing out something obvious that you already know. Have you checked the time range in the render dialog? Shake does not fill in the values for you automatically, and defaults to "1" so only renders the 1st frame. It needs to be set to eg "1-100".

  • Fixed headers while scrolling works fine in bids but not when deployed to reportserver

    Hi, I am using SQL Server 2008 R2 & deploying a report to reportserver with fixed headers while scrolling, this works fine in bids but not when deployed to reportserver. We are IE 9.
    Thanks in advance...............
    Ione

    Hi ione721,
    Since you have identified the 2 xml files are identical, according to my knowledge, there maybe a compatibility issue with IE 9 and SSRS 2008 R2, so I suggest that you could run the report in compatibility mode. Please make sure you have turned on Compatibility
    View in Internet Explorer 9 by following steps:
    When Internet Explorer recognizes that a webpage is not compatible, you will see the Compatibility View button on the Address bar. Try clicking it.
    When Compatibility View is turned on, the button changes from an outline to a solid color when you view the page.
    The following screenshots are for your reference:
    If you have any questions, please feel free to let me know.
    Best Regards,
    Wendy Fu

  • After stopping FF when I restart it , I get a pop up displaying Firefox already running but not responding. Please Help?

    After stopping FF when I restart it , I get a pop up displaying Firefox already running but not responding. Please Help?

    There are several possible causes, see [[Firefox is already running but is not responding]].

  • Can send but not get mail....

    This is strange - my mailserver has imap/ssl/password. Before 3.0 upgrade all worked fine (hm... except a couple of days when I just got my Iphone where actualle the very same problem showed up, but suddenly started to work).
    So, I can connect to server and send mail. But I can't connect to server to read/fetch mail (connection failed message).
    I've exact same configuration on my macbook - working like a charm. Tested to remove account on Iphone and recreate, resync, you name it. Still not possible to read, only send.
    Why???

    Anyone with any ideas are welcome....
    Now I dropped all mail accounts on the phone and resynched with iTunes to recreate all mail accounts. Still - one of the accounts will not work. Possible to send but not read mail. And it is working on the mac.
    regards,
    /L

  • After installing the new Yosemite OS on my iMac I can no longer send email. I can receive email, but not send. I use gmail and can send email on the gmail (google) site, but not on "mail" on my iMac. Any others with this problem? What should we do?

    After installing the new Yosemite OS on my iMac I can no longer send email. I can receive email, but not send. I use gmail and can send email on the gmail (google) site, but not on "mail" on my iMac. Any others with this problem? What should we do?

    My gmail, which is correctly configured for Mail with gmail SMTP and Google IMAP, works for awhile on Mail, which I leave open while working on other applications. But several times a day I get msg from Google: "We recently blocked a sign-in attempt to your Google Account" . . . and requiring me to verify my account details, re-enter passwords, confirm security settings (or change them from "disable" to "enable less secure methods" and so on). In Mail I also have tried "taking all accounts online", and re-entering my gmail password inside Mail account settings. These steps successfully re-set comms between gmail and Mail ... for awhile, then it happens again. Enough occurrences over a work day that I just quit Mail and revert to accessing gmail directly. Apple Care advisor and an Apple knowledge base article say that Apple can't deal with this, as gmail is third-party app, and they refer me to gmail, and so far I've found nothing helpful there.
    From today I also have several instances of a window saying "Mail has unexpectedly closed" and asking me to Re-open it.
    I also use Yahoo mail, which stops working with Mac Mail at the same time as gmail, but I do not receive notices to re-verify from Yahoo.
    I recently upgraded from Mavericks to Yosemite. The Mail problem happened occasionally with Mavericks but is far more frequent with Yosemite.

  • Why can I receive mail on my iPAD during my visit to the USA but not send mail?

    Why can I receive mail on my iPad during my visit to the USA but not send mail?

    Double check to make sure that your same email addresses are set up on both devices in the Messages settings. Also ensure that you have text messaging forwarding turned off if you do not want to receive them on your iPad.

  • Why can I receive but not send mail?

    Why can I receive but not send mail?

    With sparse information you give I would venture that you have not set up the correct Outgoing Mail Server settings in Mail>Preferences>Accounts. Contact your ISP for their set up.

  • Annimated e-mail in Netscape is annimated, but not in Mail

    Annimated e-mail in Netscape is annimated, but not in Mail.
    Any idea how I can set annimation up to work for Mail?
    Thanks,
    Reed

    Hi Irfan
    CMR is Customer Master record , because we need to maintain the e-mail address in the customer master record (CMR) and that CMR  e-mail address only it has to pick when you are sending the e-mail  output to the customer
    If you have maintained the condition record then Check in the condition record , VV12 wheather the partner function is SP (sold to party) or some other partner function is coming .Also check in t.code SOST E-mail queue  which partner function is coming . Because If partner function is not coming then there is a chance of sending a E-mail to a dummy E-mail address also .
    Kindly check the configuration you have done again. and also integrate with the ABAP'er so that he will let you know the problem
    Regards
    Srinath

  • Mail 6.5 can't connect to my net supplier,I can take my mail with my phone or on the web but not by Mail 6.5

    Mail 6.5 can't connect to my net supplier,I can take my mail with my  I phone or on the web but not by Mail 6.5 it really look like the problem is from the program.

    OS X Mail: Troubleshooting sending and receiving email messages

Maybe you are looking for

  • Using a Mac laptop and Airport to get on to Xbox Live

    There are numerous threads floating about on this though most didn't seem to work for me however I have managed to get this working and thought it may be useful to share my technique. FYI I am using an early 2008 MBP 2.4 running OS X 10.5.2 1. Connec

  • Powershell / Scientific Notation Woes / Formatting Output to Live Excel Sheet

    I have a WMI query in a script that dumps machine information to a live excel sheet. I find when I query the model # of the machine using (this line of code from the script): $Sheet.Cells.Item($count,4) = (Get-WmiObject win32_computersystem -Computer

  • MM/DD/YYYY to DD/MM/YYYY in selection screen

    hi experts, i have problem with date format.in my sap system date format is mm/dd/yyyy. when the user selects particular date in selection screen it was displaying the format mm/dd/yyyy. but the user wants dd/mm/yyyy format. please give me some idea.

  • Set a parameter value using Search help exit

    Hi All, I want a search help such as If I enter a warehouse number on my screen then search help for storage bins should have that warehouse number populated in selection dialog. I guess i have to write some code in search help exit if CALLCONTROL-ST

  • I have not been able to download the new iTunes.

    I get a dialog box asking if I want to save the file, and then nothing happens.  I deleted iTunes and related files as instructed on the help page, but it still would not download.