URGENT MAIL HELP NEEDED!

Leopard has seriously screwed with Mail.
Somehow while trying to make my .mac emails only appear in Mail and not on the server my .mac account has become Read Only. I can't move mails, delete mails, mark them as read. I can send and receive but nothing else. Mail worked exactly as I wanted it for many years and now it's completely shot.
So, 2 things to resolve....
Firstly, I need to make my .mac account not read only. The error box says the following but I can't find what it's on about
The account path /Users/Ant/Library/Mail/Mac-ant.carr is not writable. Please change the Account Directory field in the Account Options tab to a writable directory
Secondly, I just want my sent emails to live in the sent email box and not on the server!
Hope someone can help!

If this helps anyone.
I installed Thunderbird and my .mac account works fine.
So,
I backed up and copied my pref file. App Zapped Mail and re-installed it. Without putting my pref file back in, the .mac account was still read only.
Anyone...?

Similar Messages

  • Urgent export help needed

    Extremely urgent help needed! I'm on a tight deadline. I'm working on a sequence, with all my settings set to DV. My client needs an AVI file as an output. After exporting using conversion, the file looks and plays fine, except for any transitions. At the start of each transition, there is 1 frame that is unrendered. I have rendered the entire sequence, and tried the export many times now, and I can't figure out what's wrong. I'm working on v5.1.4. Can someone please help?????

    Thank you, kind sir! < </div>
    Careful who you're callin' names around here, buddy!
    Thank you for the kind words, that's why we're here. Hrdly anyone ever closes their threads on a positive note, I thank you for that, too.
    Good luck with your future projects and those squeaky deadlines.
    bogiesan

  • Urgent!help needed!!Payment issue!!!

    Last day I updated my credit cart info to make the payment and on the screen comes up a hint as follows:
    I updated the info for 6 times to make sure it is OK.Every time I update I receive a hint from my bank about $1,which in total is about $6 for 6 times.
    And words from the bank said the money for the creative cloud still remain in my account and was not charged.
    later I check with the customer service support and I was told the payment was not successfully.
    And in my transaction record there was no record of October.
    What is exactly the situation????
    Another problem is that can I change my email address?
    My email address which used to register is yahoo china .Yahoo China email has been shut down and I cannot log in any more.
    Urgent help is needed!! Anyone especially customer support from adobe can help me???Thanks you very much!!

    Hi Prasad,
    if you have performance problems with your table because of lots of different controls in it, then maybe you could try instead of that to create two tables, one for display of rows  (only textviews), and the other table for editing only one row (currently selected row). The second (for edit) table can be shown only when you want to add a new row, or edit selected row and it can be hidden when you are finished with editing selected row.
    In that way you can have one big table with only textviews and no events, and one small - one row table for editing with dropdowns, datepickers etc.
    You can put EditTable(the one for editing) above ShowTable (the one in which you display rows as textviews).
    ie.
    EditTable
    ShowTable
    Hope that helps,
    Ladislav

  • Urgent array help needed! come get some duke points

    this program keeps track of rentals for a shop. Other methods and classes not shown (like Customer, Transaction classes) are also in this program. Every item (created with a constructor in Item class) can hold an array of up to 20 transactions; part of a Transaction object is a rental total, based on a number of rental days * specific rental price for that item rented (backhoe, edger, etc.) If the user presses "t" for total amount of transactions, the following method is called, which calls the getTotalPrice() in another class called Item. My problem here is that even if I enter in transaction amounts, when I press "t", the program just quits, not producing the report and returning me to the main class. I have been over it with the debugger and I am still lost. Below is some selected code; I hope it is sufficient. Please let me know if I need to put up more
    //main
    String input = JOptionPane.showInputDialog(null, "Enter a rental transaction (x)" +
                                                      "\nAdd a customer (c)" +
                                                      "\nAdd an item (i)" +
                                                      "\nReport on a specific item (r)" +
                                                      "\nReport on total dollar amounts of rentals for all items (t)" +
                                                      "\nReport on total rentals for a specific customer (s)" +
                                                      "\nStrike cancel to exit from the program");
              //big huge while
              while (input != null){
                   if (input.equals("x")){
                        rentalTrans();
                   }//if
                   if (input.equals("c")){
                        addCustomer();
                   }//if
                   if (input.equals("i")){
                        addItem();
                   }//if
                   if (input.equals("r")){
                        specificItemReport();
                   }//if
                   if (input.equals("t")){
                        allItemReport();
                   }//if
                   if (input.equals("s")){
                        customerReport();
                   }//if
                   input = JOptionPane.showInputDialog(null, "Enter a rental transaction (x)" +
                             "\nAdd a customer (c)" +
                             "\nAdd an item (i)" +
                             "\nReport on a specific item (r)" +
                             "\nReport on total dollar amounts of rentals for all items (t)" +
                             "\nReport on total rentals for a specific customer (s)" +
                             "\nStrike cancel to exit from the program");
    //allItemReport()
    public static void allItemReport(){ //menu item t
              Item temp = null;
              for (int index = 0; index < items.length; index++){
                   temp = items[index];
              }//for
              JOptionPane.showMessageDialog(null, "Total rental transactions to date amount to: $" + temp.getTotalPrice());
    //Item Class
    public String getTotalPrice() {
              double total = 0;
              String output = "";
              for (int i = 0; i < trans.length; i++) {
                   if (trans[i] == null) {
                        if (i == 0) {
                             output = "There are currently no transactions.";
                        }// if
                        break;
                   }// if
                   else{
                   total += getPerDayRentalPrice();
                   }//else
              }// for
              output+= total;
              return output;
         }//getTotalPrice

    Don't flag your questions as urgent. It's rude. Also don't think that waving with a couple of worthless Dukes is going to get you better/quicker help.
    The reason I respond to your question is because you have explained your problem well and used code tags.
    Try this:class Main {
        public static void main (String[] args) {
            String message = "Enter a rental transaction (x)\nAdd a customer (c)" +
                "\nAdd an item (i)\nReport on a specific item (r)\nReport on total "+
                "dollar amounts of rentals for all items (t)\nReport on total rentals"+
                " for a specific customer (s)\nStrike cancel to exit from the program";
            String input = JOptionPane.showInputDialog(null, message);
            while(input != null){
                if (input.equals("x")) rentalTrans();
                else if (input.equals("c")) addCustomer();
                else if (input.equals("i")) addItem();
                else if (input.equals("r")) specificItemReport();
                else if (input.equals("t")) allItemReport();
                else if (input.equals("s")) customerReport();
                else System.out.println("Invalid option!");
                input = JOptionPane.showInputDialog(null, message);
            System.out.println("Bye!");
        // the rest of your methods ...
    }

  • URGENT dreamweaver help needed

    I need some urgent help please any experts here. I have 2
    html pages. One is my index and one is my home. The index has an
    image with a ENTER link which when clicked takes them to another
    html which has my flash file in it. The problem I have is when
    someone clicks enter the home page opens in big window and my flash
    pice is stuck on one side. It is 766 by 662 and I want when someone
    clicks enter that the home page open in a smaller window around 776
    by 662 in size and in center of screen so it looks better. Also
    would be nice when someone type web address the index page also
    opens in smaller size. Please can someone tell me in as easy to
    understand terms how to to this. Thanks and hope someone is able to
    help

    Who are you to make my browser fit your site? Wouldn't it be
    much more
    professionaly to make your site so skillfully that it fits
    any browser?
    Besides, once you change my browser from the way I like it,
    you do not
    change it back - that's rude in anyone's book....
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.dreamweavermx-templates.com
    - Template Triage!
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    ==================
    "liquidsuite78" <[email protected]> wrote in
    message
    news:ehofhq$b15$[email protected]..
    > Thanks for advice but I disagree with you. Who are you
    to say how people
    > will
    > see my site when I am the that knows how it looks and
    its surely my choice
    > how
    > I project my website. All i asked was for how to do
    something. I know
    > that my
    > site like 100s of other flash sites I have seen all open
    within their own
    > re
    > sized html specially when the flash piece is smaller
    then average website.
    > I
    > think mine works better within a box as the way the
    effects and text
    > animate.
    > I tried with big space around and it just does not work
    in the creative
    > way I
    > wanted it too. I think without seeing it you can not
    judge it. Anyway I
    > guess
    > answer to my post is you dont know how to do this.
    Thanks for your help I
    > might
    > just end up doing big space cause no option so thanks
    for this also.
    >

  • So close...Mail help needed!

    I desperately need to import mail from PC Outlook 2003 to mac mail 2.11.
    I used Mozilla Thunderbird on the PC and imported all email into it fine. I then copy the folder on my mac and import using mail/import. All the folders show show up and every one contains exactly one (1) email. Some of these folders have anywhere from half a dozen to 500 emails in them and the size of the file reflects it, but only 1 email shows up in each folder. Any ideas?

    Worked perfectly. My guess is that I needed to rebuild each mailbox seperately. Instead I was clicking on the 'import' folder and assuming it would rebuild each individual sub-mailbox, but that isn't the case.
    Your help is greatly appreciated. Thanks!
    ken

  • Sending mail help needed

    Howdy, just got the iPad, and cannot send emails to myself (my home computer) on wifi, also, will need to do this on any wifi network, any suggestions/help? thanks

    Hello, and thanks, what I did when I got the iPad was to sync, and during syncing it asked me if I wanted to use a previous iPad account, apparently it was confusing an iPhone account with the iPad insofar as I had inadvertently downloaded an iPad app by mistake a month ago. I let it use that account, and made some changes on the fly regarding various setlists, apps, podcasts that I wanted on the iPad. It also downloaded all the files to the various apps associated with that account, which is great, I didn't need to reload all of the files with notes, splashID, etc. When done, I was receiving mail fine over my wifi, but I cannot send any email over the wifi (which is all I have right now, no 3G...) Following some of the suggestions in this discussion forum, I deleted the email account and then re-entered the info, once that was completed (correctly), I was able to receive emails ONLY if all of my Mail accounts on my devices is closed, ie., the Mail program on my mac, and the iPhone turned off. But I can still not send my emails, also, after deleting the account and then reentering the mail account info, I cannot receive emails unless my Mail account is closed on the mac and my iPhone off, hope that helps!

  • Sending mails - help needed

    hi, i need some help for java mail, as i am a starter i would like to know few questions:
    I use internet connection from a local ISP with whom i do not have email signup, nor i know their mail server details or name, but i would like to send mail to a account on hotmail or yahoo but i don't know their email server info either, so what i should do?
    can you please explain in detail
    warm regards
    mustafa
    hyderabad
    india

    Hi,
    I use internet connection from a local ISP with whom i
    do not have email signup, nor i know their mail server
    details or name, but i would like to send mail to a
    account on hotmail or yahoo but i don't know their email
    server info either, so what i should do?You can use softwares like PostCast Server(www.postcastserver.com/)
    which is a free SMTP mail server program which enables you to send
    e-mail directly from your computer, without your Internet Service Provider's server.
    Other way, you can make use of free SMTP servers (a list of free
    SMTP servers is available at http://www.thebestfree.net/free/freesmtp.htm) to send mails.
    Hope this helps.
    Good Luck.
    Gayam.Srinivasa Reddy
    Developer Technical Support
    Sun Microsystems
    http://www.sun.com/developers/support/

  • Urgent Form Help Needed

    I am trying to fill out a pdf form created by the Government of Canada and when I enter text in to the one of the text fields it does not keep the text there the text field merges with the box above.  The form is available here: http://www.international.gc.ca/development-developpement/assets/pdfs/partners-partenaires/ calls-appels/iyip-psij-form-2014-eng.pdf . The fields I am having the problem with is 1.1 Internship Details which when I put in the answer (1200 words) it half merges with the text box above 1.0 Rationale for Initiative.
    I have downloaded a number of versions of the file (on a number of pcs) and they all have the same problem. There are problems downloading the form in Chrome and some of the other web browsers but the newest version of IE works.  I need to know if I am doing something wrong or if there is a problem with the form itself. I'm using Adobe Reader XI to fill the form and it was created using LiveCycle Forms 9.0. The creator of the form is highly unlikely to offer any assistance unless I can prove the problem is on their end. This is an RFP due tomorrow and my job kinda depends on it. HELP!

    Hi Erin,
    I've downloaded the form and tried to fill it in myself. I'm able to paste in 700 words (just under 4000 characters) without issue, but anything above that produces the error that you describe. So, it seems to me that the form designer may have imposed a limit on how many characters can be entered into that form field.
    I hope that helps....
    Best,
    Sara

  • Urgent Report help needed

    Hi Guru's,
                     I have a query which gives amount of calls for every month.But my requirement is i need to calculate current month calls/lastmonth calls *100.I need suggestion on how to get the last month calls
    for example
                          05.2008                                                  06.2008
    Sevrity        Amount of calls                         Severity   Amount of calls
        2                  500                                         2                  400
    I am able to see in the query like this.But How can i calulate the last month calls to show in my formulae
    Please help,
    Regards
    Srikanth
    Points will be assigned

    Hi Srikant
    Create two structures in key figure side in query.
    one for current month call & second for previous month call then creat a formula as (current month call/previous month call)*100. It will do
    Now if your problem is how to create a key figure for previous month then:
    -> create new structure
    -> Select the desired key figure
    -> take month characteristics & go to its restriction
    -> take Month Characteristics as value range between from month to month
    -> Now drag it into selection panel, then select it & "off set variable" as (month -1)-(month)
    if month characteristics is not there then you can do the same thing with calender day
    -> as for previous month "off set variable" as(calendar day-60)-(calendar day-30)
    -> for current month "off set variable" as(calendar day-30)-(calendar day-1)
    you will get the things done
    Cheers
    Shailesh

  • Urgent: Architecture help needed

    hi all,
    I am implementing cold failover for the mail server:(No clustering)
    I plan to use a comon global store (netapp)
    What i want is in case of failover, i could start the services on the standby server, my questions are:
    Should the standby server have the same hostname as the active server?
    or i can give it a different hostname?
    PLease help me , links to any related documents will greatly help.
    regards
    kimi

    hi all,
    I am implementing cold failover for the mail
    server:(No clustering)
    I plan to use a comon global store (netapp)
    What i want is in case of failover, i could start the
    services on the standby server, my questions are:
    Should the standby server have the same hostname as
    the active server?It MUST have, or the mail will not be delivered to the store.
    or i can give it a different hostname?
    PLease help me , links to any related documents will
    greatly help.
    regards
    kimi

  • Urgent Flash help needed; Using Movie Clip Objects

    Hello,
    I am currently trying to design a small flash movie.
    I have a "Movie Clip" object (a short animation) that i wish to act like a static object until a certain frame on the main Timeline.
    Then i want it to play out, at it's own pace, just like normal, until it finishes (no looping)...
    What do i need to put into, and where do i put it?
    So in short, frame 30 of the main animation triggers the clip, whilst the main animation still runs...
    I know very, very minimal AS3... so please, can someone help me?
    A lot of solutions suggest a button, but I don't want to use a button, as it's not interactive - just a movie.
    i just want the damn movie clip to play in the damn movie when it reaches frame 30! it shouldn't be that hard..

    There is most likely no need for any code. And most likely no need for a movieclip even.
    It sounds like you would need a graphic symbol. (You can convert it in the library or you can just change the instance you have placed on stage.)
    First select the symbol on its first keyframe and on the properties panel select the looping options and tell it single frame, first 1.
    Then move along your timeline to where you want the animation to start playing. Add a keyframe. Now select Once, first 1.
    Now it will start playing, you will be able to see it play as you scrub the timeline.
    If you use movieclips and code for this, you won't be able to see them play together as you scrub the timeline.

  • Urgent webcam help needed please

    i didnt know where else to put this post. Anyway i just got a logitech fusion webcam which they sell on the apple store. i plugged it in and set it up. whenever i speak to anyone on skype(its the only one i use). they always say that around every 20 seconds they get a noise their end that sounds like wind noise. ive opened up the sound box in preferences and can see it happening form the noise indicator. but dont know what it is or how to stop it.. any ideas i really need help.. thanks in advance. the webcam by the way has a built in mic and i have the output coming through my speakers. ive also moved the speakers away from the webcam in case of interference but no joy.. please help..

    Hi-
    Checking the Skype forums reveals a concensus that the problem is most likely within the Skype software.
    http://forum.skype.com/index.php?s=6b9ae6327268168f5c1291d17df06400&showforum=15
    Some suggest disabling the mic, and using a seperate mic. This is because some believe the hardware combo (camera/mic) over USB is the problem. Others suggest using the macam driver. Others still, claim there was no noise before 2.5. There are even problems with the Windows version, apparently.
    A new Skype for Mac beta was released today- 2.7. You can download it from the following link:
    http://forum.skype.com/index.php?act=announce&f=15&id=38
    Would be adviseable to report the current bug to Skype. Include all system details, software and OS versions. The more people that report the problem, the sooner a fix will come about.

  • URGENT Mod Help needed please. Hacked account and ...

    Please help. My sons account has been hacked and live porn was sent to all his friends along with files that we don't know what is inside.
    We have informed the police because of the porn content but now the hacker is hacking my sons friends and demanding to speak to my son.
    Please help

    Excellent first response.
    Have your son change his account password immediately if not already done.
    Also have him change the password of the registered e-mail address on file as a proactive measure.
    The police know how to contact Skype directly with an official request for assistance if required.
    Hackers typically gain access to peoples' accounts - Skype and otherwise - via password crackers or other password-guessing techniques.
    Run security scans and software updates on your son's computer - run your preferred anti-virus/malware/spyware program using the latest virus signature files available in case your son inadvertently downloaded malware which is allowing the hacker access to the computer.
    If anything else seems amiss or awary, contact a local computer professional for further assistance.
    Was your question answered? Please click on the Accept as a Solution link so everyone can quickly find what works! Like a post or want to say, "Thank You" - ?? Click on the Kudos button!
    Trustworthy information: Brian Krebs: 3 Basic Rules for Online Safety and Consumer Reports: Guide to Internet Security Online Safety Tip: Change your passwords often!

  • Urgent Subnetting help needed

    Hi All,
    Could anyone be kind to help with the first six subnets of the following address 172.23.0.0/27 WITHOUT inclusion of subnet zero and please explain to help my understanding.
    Regards
    Newnetman

    27 bits are on
    11111111.11111111.11111111.11100000
    5 bits are variable
    2^5 = 32
    You need a subnet ID and a broadcast address on each subnet, so starting with the first subnet.
    172.23.0.0 [subnet ID]
    172.23.0.1-30 [IP for Host]
    172.23.0.31 [broadcast for that subnet]
    172.23.0.32 [subnet ID]
    172.23.0.33-62 [IP for Host]
    172.23.0.63 [broadcast for that subnet]
    172.23.0.64 [subnet ID]
    172.23.0.65-94 [IP for Host]
    172.23.0.95 [broadcast for that subnet]
    And I will let you do the last 3. The logic is adding 32 to the subnet ID and broadcast address, whatever you have in between those 2 values, they are your IPs for the hosts.
    HTH,

Maybe you are looking for

  • How can I get my iDVD project from my iMac to my MBPro?

    I created a slideshow on my iMac in iPhoto, sent it to iDVD, and then burned the slideshow to a disc from iDVD. I'd like to have the iDVD project on my MBPro, too, but everything I've tried doesn't work! I've read the posts saying that archiving the

  • Adobe Acrobat Pro 9.5.0 will not print SRA3 size paper

    I created an Adobe InDesign file 320x450mm (SRA3) and saved it as a a High Quality PDF. However, when I print from Adobe Acrobat Pro 9 with SRA3 paper size settings, it defaults to A4 and the printer will not register the SRA3 paper size request. The

  • Issue in Block list ALV

    Hi All, I want output in below format ***************************Page Heading**************** List heading 1********************                  LIST 1 List Footer 1********************** List heading 2********************                  LIST 2 Li

  • Can I keep my Lightroom 3 catalog on a PowerMac hard drive with Apple Partition Map

    I want to keep my LR3 catalog on a HD in my Power Mac (Intel chip) that I had formatted and used to store my pre-LR3 photo folders on my G5 tower. The 1TB drive is half full, and was formatted as an Apple Partition Map. On swapping the drive into an

  • How do a find the version of a library?

    I've got a situation where a fix was to patch Solaris. The patch updated /usr/lib/libCrun.so.1 among other things. Now I need to tell others that they will need to have an updated version of this file. I don't see where pkginfo gives the version deta