Imap smtp settings work in thunderbird but not in mail

Hello. One of my imap accounts can't send mail from apple's mail anymore (since updating to 10.8). The exact same settings (Server, Port, Security, Authentification, User Name) on the same computer work in thunderbird. Any idea?
Thanks

Who is your ISP? Have you checked to see whether the form of Username required is only the Username in front of the @ in your email address, or the entire email address needs to be entered as the Username. Mail is very explicit, and never guesses which form is needed.
Are you now using 10.6 -- your system info needs updating if so.
Ernie

Similar Messages

  • SMTP relay works with Thunderbird but not with Javamail

    Hi all,
    I'm really clueless now and decided to ask for help here in this forum.
    I'm trying to send a mail via an SMTP server which needs a login.
    I keep getting the error message
    "javax.mail.SendFailedException: 554 <[email protected]>: Relay access denied"
    I read many postings in this forum which say that the smtp server's config is responsible.
    But that cannot be because I'm able to send mails via the smtp-server when I use the mail client Mozilla-Thunderbird.
    Thunderbird runs on the same computer as my java mail program does.
    Does anyone know how this can be?
    My first guess was that it must be an authentication problem.
    But the following lines work well.
    Transport transport = session.getTransport("smtp");
    transport.connect(host, user, pwd);Maybe I should use the other way of authentication.
    But unfortunately the following code leads to an authentication failure (DEBUG SMTP RCVD: 535 Error: authentication failed).
    Properties props = System.getProperties();
    props.put("mail.MailTransport.protocol", "smtp");
    props.put("mail.smtp.host", host);
    props.put("mail.smtp.auth","true");
    SmtpAuthenticator auth = new SmtpAuthenticator(user, pwd);
    Session session = Session.getDefaultInstance(props, auth);          with
         private class SmtpAuthenticator extends Authenticator {
              private String user = null;
              private String pwd  = null;
              public SmtpAuthenticator(String user, String pwd) {
                   this.user = user;
                   this.pwd = pwd;
              protected PasswordAuthentication getPasswordAuthentication() {
                   return new PasswordAuthentication(this.user, this.pwd);
         }Any hints are greatly appreciated.
    Thanks in advance,
    Stefan

    Hi,
    I think it's a good idea to share a most complete view of what I'm doing.
    The smtp server the problem is all about is called h8233.serverkompetenz.net.
    I successfully sent a message to myself using Thunderbird via this server.
    Here's an excerpt from my Thunderbird Inbox file showing that message including all headers.
    From - Wed Jul 28 10:07:16 2004
    X-UIDL: b125a9357a0e8f614916a3ab1a6f9af5
    X-Mozilla-Status: 0001
    X-Mozilla-Status2: 00000000
    Return-Path: <[email protected]>
    X-Flags: 0000
    Delivered-To: GMX delivery to [email protected]
    Received: (qmail 2762 invoked by uid 65534); 28 Jul 2004 08:06:56 -0000
    Received: from unknown (EHLO h8233.serverkompetenz.net) (81.169.187.39)
      by mx0.gmx.net (mx050) with SMTP; 28 Jul 2004 10:06:56 +0200
    Received: from [192.168.0.5] (a81-14-157-170.net-htp.de [81.14.157.170])
         by h8233.serverkompetenz.net (Postfix) with ESMTP id 97D1455C035
         for <[email protected]>; Wed, 28 Jul 2004 10:08:01 +0200 (CEST)
    Message-ID: <[email protected]>
    Date: Wed, 28 Jul 2004 10:07:09 +0200
    From: Stefan Prange <[email protected]>
    User-Agent: Mozilla Thunderbird 0.7.2 (Windows/20040707)
    X-Accept-Language: de-at, en-us
    MIME-Version: 1.0
    To: [email protected]
    Subject: This is the test mail's subject.
    Content-Type: text/plain; charset=us-ascii; format=flowed
    Content-Transfer-Encoding: 7bit
    X-GMX-Antivirus: 0 (no virus found)
    X-GMX-Antispam: 0 (Sender is in whitelist: [email protected])
    This is the test mail's content.And here's the java program I wrote to make JavaMail do excactly the same as Thunderbird does.
              try {
                   String user = "secret";
                   String pwd = "secret";
                   String host = "h8233.serverkompetenz.net";
                   //Prepare session
                   Properties props = System.getProperties();
                   props.put("mail.MailTransport.protocol", "smtp");
                   props.put("mail.smtp.host", host);
                   props.put("mail.smtp.user", user);
                   Session session = Session.getDefaultInstance(props, null);
                   session.setDebug(true);
                   //Prepare message
                   Address from = new InternetAddress("[email protected]", "Stefan Prange");
                   Address to = new InternetAddress("[email protected]");
                   MimeMessage message = new MimeMessage(session);
                   message.setFrom(from);
                   message.setReplyTo(new Address[]{from});
                   message.setRecipient(Message.RecipientType.TO, to);
                   message.setSentDate(new Date());
                   message.setSubject("This is the test mail's subject.");
                   message.setText("This is the test mail's content.");
                   message.saveChanges();
                   //Send message
                   Transport transport = session.getTransport("smtp");
                   transport.connect(host, user, pwd);
                   if (transport.isConnected()) {
                        System.out.println("SUCCESSFULLY CONNECTED to SMTP SERVER");
                        System.out.println();
                   } else {
                        System.out.println("FAILED TO CONNECT to SMTP SERVER");
                        return;
                   transport.sendMessage(message, message.getAllRecipients());
                   transport.close();
              } catch (UnsupportedEncodingException e) {
                   e.printStackTrace();
                   return;
              } catch (NoSuchProviderException e) {
                   e.printStackTrace();
                   return;
              } catch (MessagingException e) {
                   e.printStackTrace();
                   return;
         }As you already know the java program fails.
    Here's its console output.
    DEBUG: getProvider() returning javax.mail.Provider[TRANSPORT,smtp,com.sun.mail.smtp.SMTPTransport,Sun Microsystems, Inc]
    DEBUG SMTP: useEhlo true, useAuth false
    DEBUG: SMTPTransport trying to connect to host "h8233.serverkompetenz.net", port 25
    DEBUG SMTP RCVD: 220 h8233.serverkompetenz.net ESMTP Postfix
    DEBUG: SMTPTransport connected to host "h8233.serverkompetenz.net", port: 25
    DEBUG SMTP SENT: EHLO spnotebook
    DEBUG SMTP RCVD: 250-h8233.serverkompetenz.net
    250-PIPELINING
    250-SIZE 10240000
    250-VRFY
    250-ETRN
    250-AUTH PLAIN LOGIN
    250-AUTH=PLAIN LOGIN
    250 8BITMIME
    DEBUG SMTP Found extension "PIPELINING", arg ""
    DEBUG SMTP Found extension "SIZE", arg "10240000"
    DEBUG SMTP Found extension "VRFY", arg ""
    DEBUG SMTP Found extension "ETRN", arg ""
    DEBUG SMTP Found extension "AUTH", arg "PLAIN LOGIN"
    DEBUG SMTP Found extension "AUTH=PLAIN", arg "LOGIN"
    DEBUG SMTP Found extension "8BITMIME", arg ""
    DEBUG SMTP SENT: NOOP
    DEBUG SMTP RCVD: 250 Ok
    SUCCESSFULLY CONNECTED to SMTP SERVER
    DEBUG SMTP: use8bit false
    DEBUG SMTP SENT: MAIL FROM:<[email protected]>
    DEBUG SMTP RCVD: 250 Ok
    DEBUG SMTP SENT: RCPT TO:<[email protected]>
    DEBUG SMTP RCVD: 554 <[email protected]>: Relay access denied
    Invalid Addresses
      [email protected]
    DEBUG SMTPTransport: Sending failed because of invalid destination addresses
    DEBUG SMTP SENT: RSET
    DEBUG SMTP RCVD: 250 Ok
    javax.mail.SendFailedException: Invalid Addresses;
      nested exception is:
         javax.mail.SendFailedException: 554 <[email protected]>: Relay access denied
         at com.sun.mail.smtp.SMTPTransport.rcptTo(SMTPTransport.java:804)
         at com.sun.mail.smtp.SMTPTransport.sendMessage(SMTPTransport.java:320)
         at de.zorro.util.test.MailTest.main(MailTest.java:62)I hope I gave a sufficient picture of my problem.
    Does anybody know what's wrong in my java program?
    Stefan

  • Set up synch with Exchange - works in Entourage but not in Mail!

    Hi all,
    In Entourage I've been able to connect to my Exchange 2003 server at the office. Apart from the certificate warning it works just ok.
    But now, how do I set Mail to accept the same connection?
    In other words which settings from Entourage go where in the Mail account settings?
    So where's Mail's equivalent of:
    - Domain
    - The DAV 443 port setting
    etc
    Mail just keeps reporting that it cannot find the server.
    Marco

    Entourage uses a connection to Exchange via settings established under OWA (Outlook Web Access). ActiveSync is different than that and so is Blackberry access. Each company can set up ActiveSync differently, so I can't tell you what to configure, but generally you should be able to put in your OWA (Entourage) settings and set up ActiveSync with very minor modifications. For example, your OWA (Entourage) server might be: https://exchange.somecompany.com/owa or similar. It is likely that your IT folks set up ActiveSync access on the same server. In that case, the server entry for the iPhone might be simply: exchange.somecompany.com
    Keep in mind that Exchange 2007 has a feature where the email address is used to "find" the server, but if your company is running Exchange 2003, that feature is not available. This is likely confusing some people on how to set things up, too.
    OWA (Outlook Web Access), OMA (Outlook Mobile Access) and (EAS) Exchange ActiveSync are all different services. For the iPhone, we will configure for EAS even if all of these products are running on the same server or not.
    The other thing that I note in some posts is that people are having issues with certificates. If the company signs their own certificates, then that certificate will need to be installed on the iPhone. If the certificate is purchased from EnTrust, Verisign or other certificate authority (CA), then the iPhone will likely not need the company certificate imported to the device.
    I hope this helps someone.
    Minor edit made by: LenH

  • Search works in spotlight, but not in Mail.app

    If I type in the search box in Mail, nothing happens. The same query in Spotlight works. What can I do to fix that?
    G4   Mac OS X (10.4.9)  

    > I don't use the .mac address, but I guess it's a .mac account.
    Still not sure what you mean. It cannot be a .Mac account if it doesn’t have a .Mac address associated with it, and your mail cannot be stored on a .Mac server if you don’t have a .Mac account... What does Mail show in Preferences > Accounts > Account Information > Account Type?
    Anyway, I don’t know how to solve the problem in your case. When searching in Spotlight doesn’t work, the problem can be fixed by re-creating the Spotlight database. When searching in Spotlight works but Entire Message searches in Mail don’t, re-creating Mail’s index usually fixes the problem, but not always and I don’t know why.
    Try this to try to identify the problem:
    1. Open /Applications/Utilities/Console.
    2. From the File menu, choose either Open Console Log, or Open System Log, or both, so that Console displays the contents of both system.log and console.log.
    3. Reproduce the problem and look at the bottom of the Console windows for messages that might be written there as a result. They may provide some clues.
    <hr>
    You may try setting up Mail again from scratch and importing your mail back, but I don’t know whether that will work either:
    1. If you have a .Mac account and .Mac synchronization of Mail data is enabled either in Mail > Preferences > General or in System Preferences > .Mac, disable it before proceeding.
    2. Quit Mail if it’s running.
    3. In the Finder, go to ~/Library/. Move (not copy) the entire Mail folder out of there, to the Desktop.
    4. In the Finder, go to ~/Library/Preferences/. Locate com.apple.mail.plist and move it to the Desktop.
    5. Open Mail and set it up again from scratch. If given the option to import existing mailboxes or something like that, don’t. Just enter the account information and check that everything works fine.
    6. You’ll have to re-configure all your settings in Mail > Preferences. For spam-related security reasons, the first thing you should do is go to Preferences > Viewing and disable Display remote images in HTML messages if it’s enabled.
    7. If Mail works fine now and you had any messages stored in local mailboxes, do File > Import Mailboxes, choose Mail for Mac OS X as the data format, and follow the instructions to import your mail from the old Mail folder that’s now on the Desktop. Import the Mailboxes folder first, then each of the POP-username@mailserver account folders.
    8. If .Mac synchronization of Mail data was enabled at the beginning, enable it again, go to System Preferences > .Mac > Advanced, click Reset Sync Data, and choose the appropriate options to reset the Mail data stored on the .Mac server with the data locally stored on the computer, i.e. sync data must flow from the computer to the .Mac server.
    As a result of doing the above, some messages may be duplicated. Andreas Amann’s Mail Scripts has a Remove Duplicates script that you may find useful.
    Do with the imported mail whatever you wish. You may move the messages anywhere you wish and get rid of the imported mailboxes afterwards.
    If all is well and you don’t miss anything, the files on the Desktop can be deleted, although you may want to keep them for a while, just in case.
    Note: For those not familiarized with the ~/ notation, it refers to the user’s home folder. You can easily locate any of the folders referred to in this post by copying the folder path here, doing Go > Go to Folder in the Finder, and pasting the folder path there.

  • Wi-Fi Proxy settings work in Safari, but not recognised by other apps?

    Hi all,
    At home, my iPod Touch (gen two, Firmware 2.2.1) connects fine to our wireless router and all applications (e.g. Safari, Tap Tap Revenge 2 etc) can access the internet. We have no proxy setting at home..
    Then, at uni we use special "manual http" proxy settings and had to jump through a bunch of hoops downloading certificates etc. I can connect fine to this wireless network at uni. Safari works perfectly with these settings, as expected.
    However when I try and access the internet from another application (for example, Youtube or Mail) the request will time out. My assumption is that it is because these applications are not using the proxy settings that i set -- whereas Safari is, and is therefore working normally. The same issue occurs on every other application besides Safari when connecting to the web. Keep in mind this all works at home.
    I don't think it is an issue with things being blocked by the uni, as we can get Live Messenger working fine on our laptops there. In fact there is documentation provided by the uni to connect to the wireless from an iPod/iPhone.
    Does anyone know why the other applications (including ones coming default on the phone) are ignoring these proxy settings?
    Thought i might ask here, as I'm not back at uni until tuesday.
    Thanks in advance.

    Proxy Settings may be set by connection however - that does not imply that all of the services provided by Apple Utilise these connections.
    *iPod Touch - No Firmware Updates Applied*: Able to use services like Google Maps, YouTube, Weather
    (Confirmed on 3 iPod Touches)
    *iPod Touch - Latest Firmware Updates Applied:* Unable to use services like Google Maps, YouTube, Weather. (Confirmed that this connection fails on 2/3 that have been upgraded, one is still pre v2 firmware and connects fine)
    Both iPod Touches are configured identically - with a static IP address, differing by one digit.
    Same DNS, Same Gateway, Same Proxy IP Address, Same Username/Password.
    The issue is not caused by configurations, it is caused by a difference in how authenticate proxy configurations are handled between the firmware supplied with a pre v2 iPod Touch, and the updated v2 firmware.
    Perhaps v3 will resolve this issue, but at this time if you have any choice, do not upgrade further iPod Touches to v2 if you require internet access via an authenticated proxy in applications such as Maps, Weather, Mail etc.
    Message was edited by: Caledai

  • Setting up new account works in Outlook, but not in Mail

    I set up a new account in Mail just like I have done in the past, but it refuses to find the test mail I sent it. I can see the test mail by checking it through my ISPs web mail program, and I can see the mail even by setting up an account on Windows in Outlook Express, but Mail can't find it.
    I set up the new account EXACTLY as I had set up accounts in the past, obviously with different names and passwords, but no result.
    You can see a screenshot of my Accounts summary at http://www.wordpix.ca/mailscreenshot.jpg
    Thanks

    Stu,
    I am not sure you want to leave that screenshot up for long, but hopefully we can resolve, soon.
    Are you certain that the full email address is needed as the Username entry, or might only using the true Username portion of the address, i.e. "cindy"? Mail is very rigorous about the form of the Username, and does extract it from the email address, as some mail clients may do.
    Ernie

  • Cannot send mail, but same settings working in Thunderbird

    Hi all -
    I am currently traveling in China on business and am having trouble sending email on Apple Mail. Strangely, the same settings on Thunderbird are working fine - (port 25, user name & password, no secure connection).
    This only seems to happen when I travel. I much prefer Apple Mail due to the searching functionality, could someone advise why I can send in Thunderbird, but not in Apple Mail?
    Thanks!

    Sorry, that first sentence should read i can recieve it but not send it.

  • Want to delete mails from Thunderbird but not from the server?

    Hi,
    Please tell me how to configure the settings of Thunderbird so that if i delete any mail from Thunderbird that mail would be delete only from Thunderbird not from server. I'm using IMAP configuration for all my mail accounts and I'm using Thunderbird in my laptop and tablet both.
    Currently i'm using Thunderbird 24.4.0 and i just want to delete my useless mails from Thunderbird but not from the server without using pop-3 settings.
    Actually the reason for this Question arises because whenever i use to uninstall and reinstatement Thunderbird, i use to take "profiles" as a back up and its size is increasing day by day that is making a big issue to me as i cant take a back up of such a big size file.

    Imap mail accounts keep the emails on the server and you see a remote view of those emails and folders.
    When you subscribe to see a folder, the headers are downloaded, when you select an email to read, the entire folder is downloaded to a temp cache facilitating quicker access. If you synchronize folders, then a copy of that folder is downloaded to an mbox file in your profile, so that you have a copy of the server folder. When you make any changes to a synchronized folder, read an email, delete or move etc, then Thunderbird will resynchronize with the server to update the server. A synchronized folder allows you to work in 'offline' mode and this is the best time to perform a backup as you know there is a temporary stop on synchronizing as you are offline. They will resynchronize when you go back into 'online' mode.
    So, with IMAP mail accounts, the folders you see in Thunderbird are the same folders on the webmail server. If you make any changes via Thunderbird or webmail then you are changing the same folder. You cannot delete an email without deleting it from the server, they are one and the same.
    What you can do is move/copy an email into Local Folders and delete the one on the server. The Local Folders emails are kept in your Profile on your computer, these folders/emails are not on the server, unless you chose to keep a copy of them on the server.
    Pop mail accounts cannot see the folders on the server. They only access the server Inbox folder and download emails not previously downloaded to the mail account Inbox in Thunderbird. These emails are kept on your computer in your profile folder. You can select to keep a copy on the server or not. You can choose to delete emails off your computer and off the server or not.
    If the mail account is gmail , have you subscribed or even synchronized to see the 'All Mail' folder ? Gmail's all Mail folder is their Archive folder, it keeps a copy of all of your non-deleted emails. So, you do not need to subscribe to see this folder as it only shows you what you can already see in other folders. It doubles the disc space.
    Please read section on 'All Mail' at this link.
    * http://kb.mozillazine.org/Using_Gmail_with_Thunderbird_and_Mozilla_Suite
    You do not have to download/synchronize the entire folder. You could select to only synchronize the most recent xx days of emails.
    see info here:
    * https://support.mozilla.org/en-US/kb/imap-synchronization#w_configuring-synchronization-and-disk-space-usage

  • My apple id works on itunes but not on my ipod touch, what gives ?

    my apple id works on itunes but not on my ipod touch, what gives ?

    What are you trying to do on the iPod?
    Have you went to Settings>Store and sign out and then sign back in?

  • Flash 10 works in FF but not Safari, OS X 10.5

    About a week ago flash stopped working in Safari and both firefox and safari started bugging me to install a newer version.  Muttering, I went to the download page and downloaded the latest, which claims to be for Safari, Opera, and firefox.
    Installation completes fine with no errors.  Firefox works.  But in Safari, I just get the usual 'no flash installed, would you like to download it?'
    I've downloaded and installed multiple times, no dice.  Plug-ins are enabled on Safari.  I do not have settings folders to delete--/Library/Application Supprt/Adobe has no flash player folder, only Acrobat, Updater6, and Help.
    This whole thing is a black box and I don't see what else to do.  Installation completes and there's no way to verify anything.  Any ideas would be welcome.

    Thanks! BTW I'm also having trouble updating Adobe Reader. I have 9.4.0 and want to update to the new Adobe Reader X. I keep getting Error 1402 which refers to the registry keys. I am unable to completely uninstall the old version. After receiving the error message it reloades the older version. I read about how to modify the registry to accept it but I believe this is a very wierd way to have to get an update loaded. Any suggestions?
    Date: Mon, 27 Dec 2010 10:34:22 -0700
    From: [email protected]
    To: [email protected]
    Subject: Flash Player works in IE8 but not Safari
    Hi Bruce, Adobe Flash Player is Installed separately into IE, since Windows uses the ActiveX Control. Firefox and other non-IE
    browsers must use the plugin Installer.
    This is the Adobe site :
    http://www.adobe.com/products/flashplayer/fp_distribution3.html
    Hope that explains it.
    Thanks,
    eidnolb
    >

  • UTube video sound works on iPhone5S but not on Macbook Pro?

    UTube videos from a variety of sources works on iPhone5S but not on Macbook Pro? Thinking it has to do with recommended Flash settings on the MAC. Is there an app to resolve this inoperability on a MAC without having to make Flash active?

    What format is the video? Is it .wmv? Do the DVD's have any type of protection or encryption? This information will help in finding a solution.

  • My external iSight works in iChat, but NOT quicktime 7 pro

    I'd like to get in on this...
    My external iSight works in iChat, but NOT quicktime 7 pro when i try to make a movie recording. No audio, no video, nothing. But, iChat works. This is on a brand new mac pro with the latest leopard. Any ideas????

    Hello Tommy Igoe
    With no other video capable apps running and your working iSight connected and turned on when you launch QT 7 Pro, try these suggestions to see whether one of them fixes your problem:
    (0) Try all suggestions applicable to your system from Apple's How to Troubleshoot iSight.
    (1) Check that your QuickTime Player > Preferences > Recording settings are correct.
    (2) Repair Permissions and test to see if iSight works with QT Pro now.
    (3) Disconnect all peripheral and test again to check for hardware or software conflicts.
    (4) Download and reinstall QuickTime 7.4 for Leopard. Repair permissions and test movie recording.
    If you must post back for other suggestions, please clarify and expand on your QT problem. Please be specific. For example, can you see but not execute the QuickTime Player > File > New Movie Recording menu command? Can you execute the menu command but find that the recording window does not open? Does the recording window open but you find the "Record" button is not clickable? Etc.?
    Also please tell us whether you found that QuickTime is the ONLY problem app in EVERY user account you tried when you used Apple's Troubleshooting suggestions.
    Finally, if you currently have ANY other problems with your Mac, please describe them all.
    EZ Jim
    PowerBook 1.67 GHz w/Mac OS X (10.4.11) G5 DP 1.8 w/Mac OS X (10.5.1)  External iSight

  • My password ror outlook works on pc but not on iphone4s

    My password for outlook works on pc but not on iphone4s

    Hi, I had a similar problem connecting my outlook to iphone. Log into your outlook account on pc. Go to settings>options>connect devices and apps with POP> click enable POP. This worked for me, hope it helps.

  • My sound works for music but not apps

    My sound works for music but not apps

    Try this  - Reset the iPad by holding down on the Sleep and Home buttons at the same time for about 10-15 seconds until the Apple Logo appears - ignore the red slider - let go of the buttons. (This is equivalent to rebooting your computer.)
    Check your settings. The iPads have a small switch on the right edge. It can be used as a rotation lock to keep the screen from automatically reorienting itself as you move around, but you need to have the tablet’s settings configured properly. That same switch, right above the volume buttons, can also be set to function instead as a mute button to silence certain types of audio.
    If the switch is set to work as a mute button, you can change its purpose to “screen-rotation lock” by tapping the Settings icon on the home screen. On the Settings screen, tap General on the left side, and on the right side of the screen flick down to “Use Side Switch to.” Tap to select Lock Rotation or Mute to set the button’s function. Even if you set the side switch for your preferred use, you can still mute the Mini or lock the screen. Just double-click the Home button, and when the panel of apps appears along the bottom edge of the screen, flick the row from left to right with your finger. Tap the icon on the far left side of the row to either lock the iPad’s screen or mute the iPad’s alerts, notifications and sound effects. Music, podcasts and video are not muted unless you turn the volume all the way down.
    iPhone: No sound or distorted sound from speaker
    http://support.apple.com/kb/ts5180
    iPhone: Can't hear through the receiver or speakers
    http://support.apple.com/kb/ts1630
    http://www.atreks.com/app-no-sound-on-ipad-4-%E2%80%93-what-to-do/
    To solve some sound problems, just follow these simple steps
    1. Go to Settings
    2. Tap on General
    3. Tap on Reset
    4. Tap on Reset All Settings
     Cheers, Tom

  • Some websites keep asking to enable cookies in my browser when they are and I can't get this sites to see that, they worked fine yesturday but not now, any help

    Some websites keep asking to enable cookies in my browser when they are and I can't get this sites to see that, they worked fine yesterday but not now. I've restarted the browser, restarted the computer, disabled then enabled cookies in the privacy settings and still nothing. Any help?

    Hi,
    Many site issues can be caused by corrupt cookies or cache. In order to try to fix these problems, the first step is to clear both cookies and the cache.
    Note: ''This will temporarily log you out of all sites you're logged in to.''
    To clear cache and cookies do the following:
    #Go to Firefox > History > Clear recent history or (if no Firefox button is shown) go to Tools > Clear recent history.
    #Under "Time range to clear", select "Everything".
    #Now, click the arrow next to Details to toggle the Details list active.
    #From the details list, check ''Cache'' and ''Cookies'' and uncheck everything else.
    #Now click the ''Clear now'' button.
    Further information can be found in the [[Clear your cache, history and other personal information in Firefox]] article.
    Did this fix your problems? Please report back to us!

Maybe you are looking for

  • Adobe Cloud email

    How do I request that the invite be sent again to launch Adobe Cloud

  • Illustrator 64 will not update to 16.0.2

    I have Adobe Master Collection CS6 installed and updated many of the programs today. Among them Illustrator 32 updated fine to 16.0.2, but Illustrator 64 failed to update and even deleted the EXE file. I recovered the EXE file from a backup file, and

  • Mail freezes with time machine.

    I am trying to restore my Inbox in mail with Time Machine. While I was on the mail screen I went to Time Machine and saw my old mail. For some reason I got out of Time Machine w/o restoring the Mail. My thought was I could just go back in. Now when I

  • Safari will  not play streaming video or audio

    Hi everyone, I have had my iBook for a year and never even tried to take advantage of streaming video or audio b/c I had a dial-up connetion until very recently. Now that I have a high speed connection I would like to watch trailers and listen to mus

  • HT201272 Unable to download movies to IPad

    I can't download movies to new IPAD and also IPhone 4 from iTunes . What am I doing wrong