Problem getting my email through yahoo

Unfortunately, I had to uninstall Mozilla Firefox as I could not access my Yahoo emails. Would not open my email, but found if I would right click on the mail tab, it would then open. In order to read my email I had to perform the same thing on each individual email. However, I could not delete, send to SPAM or respond.
I love Mozilla Firefox. But until this is resolved, I can't use it and am tied to Internet Explorer which is really bad. But at least I can read and get into me emails.

Same problem, intermittently, for me. And I'm using a Mac computer [non-Intel] with OS X 10.4 Tiger.
Seems strange that Firefox engineers don't have Firefox tweaked to handle yahoo mail, considering how many HUNDREDS OF MILLIONS of yahoo mail users world-wide. It might be the most-used website on the Internet. So that means more Firefox users are finding Firefox inadequate to meet their needs.
Guess I'll go back to using Safari till Firefox engineers make Firefox capable of functioning on major websites without glitches.

Similar Messages

  • Why can I access Internet, and get my email through yahoo, but can't access email when I use the mail icon on the front of my tablet. It just started doing this today.

    Why can I access the Internet, even get my email by going through yahoo, but as of this morning I can not access my email from the mail icon on my tablet screen. It just started doing this today. When I try to get my email by going through the icon, I am asked to enter yahoo password. I do this, then the box just pops up again, and again and again never letting me get signed in. Don't know what I am doing wrong. Need help!

    iOS: Unable to send or receive email
    http://support.apple.com/kb/TS3899
    Can’t Send Emails on iPad – Troubleshooting Steps
    http://ipadhelp.com/ipad-help/ipad-cant-send-emails-troubleshooting-steps/
    Setting up and troubleshooting Mail
    http://www.apple.com/support/ipad/assistant/mail/
    iPad Mail
    http://www.apple.com/support/ipad/mail/
    Try this first - 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.)
    Or this - Delete the account in Mail and then set it up again. Settings->Mail, Contacts, Calendars -> Accounts   Tap on the Account, then on the red button that says Remove Account.
     Cheers, Tom

  • Urgent!!!! Problem in sending mail through yahoo mail server

    Hi
    I have a yahoo account and I want to send email through yahoo mail server
    using my java program. My program supports SMTP server authentication.
    But when I connect to the yahoo mail server(smtp.mail.yahoo.com) I got this error
    javax.mail.MessagingException: 521 yahoo.com closing transmission channel. You
    must be pop-authenticated before you can use this smtp server, and you must use
    your yahoo mail address for the Sender/From field.
    This is my program
    import javax.mail.*;
    import java.util.*;
    import javax.mail.internet.*;
    import javax.mail.event.*;
    import java.io.*;
    public class JavaMailUserAgent
         Properties properties;
         Session session;
         Message message;
         JavaMailUserAgent(String mailHost,String smtpUsername,String smtpPassword) throws Exception
              properties=new Properties();
              properties.put("mail.smtp.host",mailHost);
              ServerAuthenticate auth=new ServerAuthenticate(smtpUsername,smtpPassword);
              session=Session.getInstance(properties,auth);
              message=new MimeMessage(session);
         } //**********************************************************************end constructor
         void sendMail(String messageFrom,String messageTo,String subject,String messageBody) throws Exception
              properties.put("mail.from",messageFrom);
              InternetAddress[] address={ new InternetAddress(messageTo) };
              message.setFrom(new InternetAddress(messageFrom));
              message.setRecipients(Message.RecipientType.TO,address);
              message.setSubject(subject);
              message.setContent(messageBody,"text/plain");
              Transport transport=session.getTransport(address[0]);
              transport.addConnectionListener(new ConnectionHandler());
              transport.addTransportListener(new TransportHandler());
              transport.connect();
              transport.sendMessage(message,address);
         } //*************************************************************************end function
    } //*************************************************************************************end main
    class ConnectionHandler extends ConnectionAdapter
         public void opened(ConnectionEvent e)
              System.out.println("connection opened");
         public void disconnected(ConnectionEvent e)
              System.out.println("connection disconnected");
         public void closed(ConnectionEvent e)
              System.out.println("connection closed");
    } //*************************************************************************************end main
    class TransportHandler extends TransportAdapter
         public void messageDelivered(TransportAdapter e)
              System.out.println("message delivered");
         public void messageNotDelivered(TransportAdapter e)
              System.out.println("message NOT delivered");
         public void messagePartiallyDelivered(TransportAdapter e)
              System.out.println("message partially delivered");
    } //*************************************************************************************end main
    class ServerAuthenticate extends Authenticator
         String smtpUsername = null;
         String smtpPassword = null;
         public ServerAuthenticate(String username, String password)
              smtpUsername = username;
              smtpPassword = password;
         protected PasswordAuthentication getPasswordAuthentication()
              return new PasswordAuthentication(smtpUsername,smtpPassword);
    } //*************************************************************************************end main
    I use this code to call the program.
    JavaMailUserAgent jmail=new JavaMailUserAgent("smtp.mail.yahoo.com","my_yahoo_username","my_yahoo_password");
    jmail.sendMail("[email protected]","[email protected]","test subject","test message");
    Could you pls tell me why do I get this error eventhough My program has server authentication.
    Is this my program error.Please Helpl me what to do to correct this problem.
    Please include a sample code
    thanks for listening
    sabu

    I have used the code below to send mail from yahoo account,but I got the error message like below,what I should configure in pop3 of yahoo account????
    import javax.mail.*;
    import java.util.*;
    import javax.mail.internet.*;
    import javax.mail.event.*;
    import java.io.*;
    public class JavaMailUserAgent
    Properties properties;
    Session session;
    Message message;
    JavaMailUserAgent(String mailHost,String smtpUsername,String smtpPassword) throws Exception
    properties=new Properties();
    properties.put("mail.smtp.host",mailHost);
    ServerAuthenticate auth=new ServerAuthenticate(smtpUsername,smtpPassword);
    session=Session.getInstance(properties,auth);
    message=new MimeMessage(session);
    //**********************************************************************end constructor
    void sendMail(String messageFrom,String messageTo,String subject,String messageBody) throws Exception
    properties.put("mail.from",messageFrom);
    InternetAddress[] address={ new InternetAddress(messageTo) };
    message.setFrom(new InternetAddress(messageFrom));
    message.setRecipients(Message.RecipientType.TO,address);
    message.setSubject(subject);
    message.setContent(messageBody,"text/plain");
    Transport transport=session.getTransport(address[0]);
    transport.addConnectionListener(new ConnectionHandler());
    transport.addTransportListener(new TransportHandler());
    transport.connect();
    transport.sendMessage(message,address);
    } //*************************************************************************end function
    } //*************************************************************************************end main
    class ConnectionHandler extends ConnectionAdapter
    public void opened(ConnectionEvent e)
    System.out.println("connection opened");
    public void disconnected(ConnectionEvent e)
    System.out.println("connection disconnected");
    public void closed(ConnectionEvent e)
    System.out.println("connection closed");
    } //*************************************************************************************end main
    class TransportHandler extends TransportAdapter
    public void messageDelivered(TransportAdapter e)
    System.out.println("message delivered");
    public void messageNotDelivered(TransportAdapter e)
    System.out.println("message NOT delivered");
    public void messagePartiallyDelivered(TransportAdapter e)
    System.out.println("message partially delivered");
    } //*************************************************************************************end main
    class ServerAuthenticate extends Authenticator
    String smtpUsername = null;
    String smtpPassword = null;
    public ServerAuthenticate(String username, String password)
    smtpUsername = username;
    smtpPassword = password;
    protected PasswordAuthentication getPasswordAuthentication()
    return new PasswordAuthentication(smtpUsername,smtpPassword);
    public static void main(String str[])throws Exception
    JavaMailUserAgent jmail=new
    JavaMailUserAgent("smtp.mail.yahoo.com","[email protected]","passwordd");
    jmail.sendMail("[email protected]","[email protected]","test subject","test message");
    ERROR:
    E:\mail\javamail\servlet>java ServerAuthenticate
    connection opened
    Exception in thread "main" javax.mail.MessagingException: 530 authentication req
    uired - for help go to http://help.yahoo.com/help/us/mail/pop/pop-11.html
    at com.sun.mail.smtp.SMTPTransport.issueCommand(SMTPTransport.java:879)
    at com.sun.mail.smtp.SMTPTransport.mailFrom(SMTPTransport.java:599)
    at com.sun.mail.smtp.SMTPTransport.sendMessage(Compiled Code)
    at JavaMailUserAgent.sendMail(JavaMailUserAgent.java:58)
    at ServerAuthenticate.main(JavaMailUserAgent.java:131)
    How Could I rectyfy the above error ?????
    Regards,
    Mahesh.

  • After moving to iCloud I can only get my email through the cloud, no new emails are making it to my home computer. Does anyone have any advice on how to fix this issue?

    After moving to iCloud I can only get my email through the cloud, no new emails are making it to my home computer and .mac account. Does anyone have any advice on how to fix this issue?

    Welcome to the Apple Community.
    Which OS are you using.

  • Cannot send email through yahoo on iPad 4, apple.smtp.mail.yahoo not available as of December 1, 2012

    I am unable to send emails through yahoo on my ipad 4 wifi, just starting over the weekend. My 3 other non-yahoo email accounts are working fine on my ipad. When I try to send an email from the yahoo account, I receive the message that the connection to the outgoing mail server "apple.smtp.mail.yahoo" failed. I can send email through yahoo just fine on the web and on my computer through Thunderbird.

    Yahoo's been having persistently random issues for months. You can try just waiting it out, or delete and readd your yahoo account. When my accounts were affected I just used webmail to access my yahoo accounts until it cleared up.
    Chances are it's all on their end and really all you can do is wait it out.

  • Hello support , i have problem getting my email in rescue email

    hello team i have problem getting my email on my rescue email ,
    i want to change my password ,
    and i forgot the secrect question i added ,
    so i changed my alternative id but i am unable to get my security option on my primary id and also on my rescue email ,
    <Email Edited by Host>

    You can only change the rescue email address by answering 2 of your security questions. If you have a rescue email address then the request reset info link should give you a clue as to what the address is e.g. (from here) :
    If you don't what it is then on the user-tip that I linked to there are contact details : http://support.apple.com/kb/HE57 (ask for the Account Security Team)

  • Is iCloud down? I am having problems getting my email.

    I am having problems getting my email. The icloud status seems to indicate that all is well.
    Thanks

    Looks like they posted an update shortly after you posted here...
    The Apple Support Page says there are <1% of users affected and
    "01/08/2012 09:43 PST
    Users may be unable to access Mail. Service is expeted to be restored by 9pm PST today.
    All messages will be delivered at that time."
    I would wait till then to see if it corrects itself, if not, you can contact Apple.

  • I can't send emails through Yahoo using Firefox. Already contacted Yahoo and they don't know why it's happening.

    I can't send emails through Yahoo using Firefox. Already contacted Yahoo and they don't know why it's happening.
    == This happened ==
    Every time Firefox opened
    == a month agao

    I also cannot send email through Yahoo using Firefox 3.6.8. I can receive emails and surf the web just fine. I have also contacted Yahoo and have gotten no where.

  • HT2480 I need help syncing my computer outlook email (through Yahoo) with my Iphone. when I delete an email on my computer is it still in my inbox on my phone.  Any help is appreciated.

    I need help syncing my computer outlook email (through Yahoo) with my iphone.  When I delete an email on my computer it is still in my inbox on my phone. Please help.

    Your computer is probably set up to access your Yahoo mail using POP3. POP3 does not synchronize with the server. For full synchronization, you will need to use IMAP instead. See the Yahoo mail help pages for instructions on how to configure your mail client.

  • Send email through Yahoo mail or Gmail with Java

    I have a java email program that can take a mail host name , port number and then send an email, but I don't want to use the mail host at work, I wonder if I can send email through my Yahoo Mail or Gmail account with Java, do they have any Java API that my program can log me in and send emails ? Any sample code available ? Thanks.
    Frank

    Thanks for reminding me, I did some search on "Yahoo" and "Gmail". For Yahoo someone posted some code that didn't work, for gmail, there seems to be a solution for sending email from command line. I wonder if I can send full fledged email : with CC, BCC, Attachment, Html email with images inside ...
    I've done it with a local mail host, but how to do it with Yahoo or Gmail ?
    Frank
    Have you read the JavaMail FAQ? Search for "Yahoo" and "Gmail".

  • My Mac Pro stopped getting new emails through the mail app

    My Mac pro does not get new E-mail from yahoo, I'm using the Stamp app at the bottom of screen. I can access my E-mail if I go directly through yahoo. Can anyone help.

    1. This is the MacBook Pro hardware forums.
    2. Post in the Mail & AddressBook forum of the OS you are running (which you don't mention).
    3. So for Lion post here:  https://discussions.apple.com/community/mac_os/mac_os_x_v10.7_lion#/?tagSet=1386

  • Having problems getting my email on my iPad.

    I got a replacement iPad today and I have not been able to get my email on it.  Can anyone help?  It keeps saying my "user name or password for "imap.aol.com" is incorrect" and I know that it isn't.  I am soo frustrated right now.  I tried some google ideas and thought I was getting somewhere but then it said imap wasn't responding.  PLEASE HELP!

    set the TV  to the HDMI input that the Mac is connected to
    on the Mac;   Apple Menu >  system preferences > display:  to 1920 x 1080

  • Question about Pushing ATT ISP Email Through Yahoo Push Account

    So as I understand it, ATT doesn't allow outbound mail server access remotely (must use Edge), so a common workaround is to create a yahoo account with a subaccount equal to your ISP mail username, password, etc.
    Ive done this, and it appears to work reasonably well, but can anyone tell me if it is possible to set this up so that the ISP address email is "pushed" as well as the yahoo address mail? In other words, I have to actually log into the yahoo mobile account and "check other mail" before the ISP mail shows up (versus the yahoo mail which is "pushed" to me without any manual intervention on my part).
    I've got the feeling I've just got a simple configuration problem with the yahoo account, but I'm having a brain ****.
    TIA

    The ability to send with an SMTP server when connected to an internet service provider via wi-fi depends on the ISP - if the SMTP server is outside of the ISP's network, or not provided by the ISP.
    Most ISPs don't block the use of SMTP servers that are outside of the ISP's network as long as the SMTP server is authenticated - and the same applies when connected to the internet via at&t's EDGE network.
    I access a .Mac account and a business POP account with my iPhone. Both accounts have an authenticated SMTP server, and I have no problems sending with either account regardless when connected via various wi-fi networks and different ISPs associated with each, and when connected to at&t's EDGE network.
    If Yahoo allows for accessing a different email account through their incoming mail server, I don't believe they provide for Push-IMAP account access for such an account when doing so.

  • RESIZING & ATTACHING PICTURES IN EMAIL THROUGH YAHOO

    I am trying to just attach and send pictures from my Yahoo! email. But they are to big in iPhoto and I can't seem to figure out how to resize them (make them smaller pixels). Shouldn't there be some kind of option where I can resize them myself manually so I can send them without having to go through the Apple mail program? this is annoying me! =)

    Welcome to the Apple Discussions. There are two ways you can do it.
    1 - use the Mail program and set the image size you want, small, medium, large, etc. Once Mail is open and the photos are in the new email window, drag them to the desktop to use in your Yahoo Mail via the browser. Just use the Mail button and Mail application to quickly get the photos in the size you want.
    2 - export the photos out of iPhoto to the desktop using the File->Export->File Export menu option with the Size option set to Custom. There you can set the maximum dimension to whatever you want in pixels.
    Click to view full size

  • TS3899 Why Do I have a problem Getting my email on multiple Apple devices iPad notifies me that Email is in use by another device Which is my iPhone This is an intermittent problem

    Why am I having a problem Receiving email on multiple Apple devices My brand-new iPad informs me that my email is used by another device which is my iPhone 4S This is an intermittent problem and does not always happen

    Hello Cyko69
    If you are seeing a Mailbox Locked alert, the following article will explain what is going on. Typically with certain type of emails, it is meant to be accessed one at a time. The article will give some suggestions on how to resolve the issue.
    iOS: 'Mailbox Locked', account is in use on another device, or prompt to re-enter POP3 password
    http://support.apple.com/kb/ts2621
    Thanks for using Apple Support Communities.
    Regards,
    -Norm G.

Maybe you are looking for

  • How to insert a Linebreak in a log4j message?

    Hi all, I need some help with the log4j pattern. I have to build the message with all the stacktrace aligned and when I try to use the "\n" or Character.LINE_SEPARATOR, it gives me the unknown character (square) in my log file instead of the line bre

  • Document Library - how to add more categories?

    Hi, Im using APEX 3.2 on oracle XE and just installed the document library application. we would like to have the following functionalities: 1. add more categories (custom attributes etc. and more filter in the document borwser) 2. control who gets t

  • Where is the wish list show up at in theiTunes 11.1.4 update.

    I have updated iTunes to 11.1.4. The info on the update says you can view your Wish List in the Library. I do not see it anywhere other than in the iTunes Store. Can someone help me find this. Thanks!!

  • Labview dies when saving vi

    Hi, I have a large Labview application (7.1.1) that I am having trouble saving. I was being careful while performing a major modification and saving often. After the last save there was only one error reported, a broken wire. When I remove the broken

  • Error when manually selecting ship-to in sales orders

    For my project, I've a scenario like this way: 1. enter transaction code VA01 2. enter order type ZPEA 3. press enter 4. enter sold-to number "1234" 5. press enter 6. deleted the defaulted ship-to number "1234" 7. enter ship-to number "5678" 8. press