Email Not Working - Verizon does not know why - No Solution.

I am a FIOS internet customer for a number of years and have stopped receiving email 2 days ago. Verizon is my internet provided and 1and1.com is my email hosting service. There is a problem somewhere between the two companies but eaqch of them points a finger at the other and has no idea when the problem will be fixed because they are waiting for the other to fix it. I beluieve the problem is that some 1and1.com customer is generating a bunch of emails and Verizon has decided to block them by blocking the entire IP address with every user on it. Verizon says it is 1and1's problem (the bad user) and 1and1 says it is Verizon's problem (throwing the baby out with the bath water). Looks like the solution is to dump both of them - but that is a project because you get almost no help when you sign up for service unless you have 1 computer and only fetch email and look at facebook. Both of these companies just try to hide information from their customers while trying to present a "customer oriented" support posture. In the end, they fail to provide the support they say they offer. Two (2) days and counting until they stop pointing fingers and take the 30 seconds to fix the problem for the rest of us users.

Same thing here -  We've been a Verizon FiOS user for several years after leaving Comcast.  When I initially set-up our personal accounts (AOL), business (Exchange), and side-business account (1and1) everything went fine and worked for years. The yesterday (7 AUG) something happened and my 1and1 account stopped sending, receiving, or syncing e-mail.  1and1 posted on their status site that the issue was with Verizon.  I called Verizon and they said it was now necessary to use the Verizon SMTP server for outgoing mail on ALL my accounts - AOL, Exhange, and 1and1. We made the change on both 1and1 and Exchange, so mail is going out, but now there is an IMAP error.  The Verizon tech support told me they only support POP, until I pointed out they have on-line instructions for both IMAP and POP. Verizon claims nothing was changed in the last day - 1and1 says it is a Verizon problem, and neither one of them seem to have the technical skills to address the problem. While I can still access my mail accounts through their respective web interfaces, it's not ideal.  I'd like all my mail aggregated into my Apple Mail client. This is why the FTC should never allow another telecommunications merger - there's very little competition and customer service is unacceptable.

Similar Messages

  • Hi, i have a problem that my macBook pro keys suddenly stopped working. The power button,volume keys, brightness keys and shortcuts do not work. Does anyone know why or how i can fix this problem?

    hi, i have a problem that my macBook pro keys suddenly stopped working. The power button,volume keys, brightness keys and shortcuts do not work. Does anyone know why or how i can fix this problem?

    hi, i have a problem that my macBook pro keys suddenly stopped working. The power button,volume keys, brightness keys and shortcuts do not work. Does anyone know why or how i can fix this problem?

  • Navigation does not work properly, does anybody know why?

    Hi,
    I am trying to make the http://www.exadel.com/tutorial/jsf/jsftutorial-kickstart.html example work in a NetBeans project. It is a simple Input name -> Greetings example. However, when I enter my name in the input page and click on the 'Say Hello' button, my browser stays on the same page and I don't know why !!!
    My faces-config.xml is the following:
    <?xml version='1.0' encoding='UTF-8'?>
    <!-- =========== FULL CONFIGURATION FILE ================================== -->
    <faces-config version="1.2"
        xmlns="http://java.sun.com/xml/ns/javaee"
        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
        xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-facesconfig_1_2.xsd">
        <navigation-rule>
            <from-view-id>inputname.jsp</from-view-id>
            <navigation-case>
                <from-outcome>greeting</from-outcome>
                <to-view-id>greeting.jsp</to-view-id>
            </navigation-case>
        </navigation-rule>
        <managed-bean>
            <managed-bean-name>personBean</managed-bean-name>
            <managed-bean-class>jsfks.PersonBean</managed-bean-class>
            <managed-bean-scope>request</managed-bean-scope>
        </managed-bean>
    </faces-config>My inputname.jsp:
    <%@ taglib uri="http://java.sun.com/jsf/html" prefix="h" %>
    <%@ taglib uri="http://java.sun.com/jsf/core" prefix="f" %>
    <f:loadBundle basename="jsfks.bundle.messages" var="msg"/>
    <html>
    <head>
      <title>Enter your name page</title>
    </head>
    <body>
       <f:view>
         <h1>
          <h:outputText value="#{msg.inputname_header}"/>
         </h1>
         <h:form id="helloForm">
          <h:outputText value="#{msg.prompt}"/>
          <h:inputText value="#{personBean.personName}" />
          <h:commandButton action="greeting" value="#{msg.button_text}" />
         </h:form>
       </f:view>
    </body>
    </html>  and my greeting.jsp is:
    <%@ taglib uri="http://java.sun.com/jsf/html" prefix="h" %>
    <%@ taglib uri="http://java.sun.com/jsf/core" prefix="f" %>
    <f:loadBundle basename="jsfks.bundle.messages" var="msg"/>
    <html>
      <head>
       <title>Greeting page</title>
      </head>   
      <body>
         <f:view>
              <h3>
          <h:outputText value="#{msg.greeting_text}" />,
          <h:outputText value="#{personBean.personName}" />
             <h:outputText value="#{msg.sign}" />
             </h3>
         </f:view>
    </body>     
    </html> The example also includes an index.jsp page:
    <html>
    <body>
      <jsp:forward page="inputname.jsf" />
    </body>
    </html>My web.xml is the following:
    <?xml version="1.0"?>
    <!DOCTYPE web-app PUBLIC
      "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN"
      "http://java.sun.com/dtd/web-app_2_3.dtd">
    <web-app>
        <context-param>
            <param-name>javax.faces.STATE_SAVING_METHOD</param-name>
            <param-value>server</param-value>
        </context-param>
        <context-param>
            <param-name>javax.faces.CONFIG_FILES</param-name>
            <param-value>/WEB-INF/faces-config.xml</param-value>
        </context-param>
        <listener>
            <listener-class>com.sun.faces.config.ConfigureListener</listener-class>
        </listener>
        <!-- Faces Servlet -->
        <servlet>
            <servlet-name>Faces Servlet</servlet-name>
            <servlet-class>javax.faces.webapp.FacesServlet</servlet-class>
            <load-on-startup> 1 </load-on-startup>
        </servlet>
        <!-- Faces Servlet Mapping -->
        <servlet-mapping>
            <servlet-name>Faces Servlet</servlet-name>
            <url-pattern>*.jsf</url-pattern>
        </servlet-mapping>
    </web-app>I am a newbie to JSF, so I may be missing something obvious !!!
    Thanks for your input,
    J.

    In the faces config file, the view ID string must start with a "/" fix the code from:
        <navigation-rule>
            <from-view-id>inputname.jsp</from-view-id>
            <navigation-case>
                <from-outcome>greeting</from-outcome>
                <to-view-id>greeting.jsp</to-view-id>
            </navigation-case>
        </navigation-rule>to something like:
        <navigation-rule>
            <from-view-id>/inputname.jsp</from-view-id>
            <navigation-case>
                <from-outcome>greeting</from-outcome>
                <to-view-id>/greeting.jsp</to-view-id>
            </navigation-case>
        </navigation-rule>** Use the appropriate path inside your web application

  • My apple id has been disabled. I have set a new password and it still does not work. Does anyone know why this would have happened.  About 6 months ago someone hacked my itunes account  so I set a new password.

    My Apple ID has been disabled.  I have set a new password, but it still is saying disabled.  About six months ago my itunes was hacked. Itunes replaced the money, but now I am cannot get in. Is there anyone who might be able to help me out? Thanks

    What did itunes support tell you?
    If you did everything it says then you contacted them.
    From the article you linked:
    If the issue persists, you can visit iCloud Support, iTunes Support, Apple Print Products, or contact AppleCare for further assistance."

  • PhotoSmart C309a wireless radio is not functioning. Does anyone know why that my be?

    My printer used to work using my wireless network.  It failed to print and a diagnostic told me the wireless radio was not working.  Does anyone know why?

    Hello,
    "Wireless Radio Not functioning" usually indicates an issue with the wireless card in the Printer.
    Please try below steps ..
    While the Printer is ON, unplug the Power Cord from back of the Printer.
    Wait for 30 seconds and then Plug in the Power Cord to the printer.
    While the printer is displaying the home screen,.
    Select Setup > Network > Wireless Radio : ON
    on Printer display, Select Setup > Network > Print Network Configuration . Check if the printed diagnostic pages still displays " Wireless Radio Not Functioning" ? if Yes, Your Printer requires a SERVICE, hence  Please call HP Support ( US ) 1-800-474-6836 .
    Regards,
    Jabzi
    Help the community by marking this post .
    Was your question answered? Mark it as an Accepted Solution!
    See a great post? Give it a Kudos!
    I work for HP
    Regards,
    Jabzi
    Give Kudos to say "thanks" by clicking on the "thumps Up icon" .
    Click "Accept as Solution" if it solved your problem, so others can find it.
    Although I am an HP employee, I am speaking for myself and not for HP.

  • My G4 powerbook starts up but with a black screen. The reset button does not work. Does anyone know the keys to press on restart please ?

    My G4 powerbook running OSX 10.3.9 starts up with  a black screen. The reset button is not working. Does anyone know which keys to press on restart please.?

    Try holding the shift key while booting to get Safe mode if possible.
    See links for more info.
    http://support.apple.com/kb/ht1564
    http://support.apple.com/kb/ht1455

  • Passbook is not working on my iPhone 4S. I tried changing the date to 2013, but it's still not working. Does anyone know how to fix this?

    Passbook is not working on my iPhone 4S. I tried changing the date to 2013, but it's still not working. Does anyone know how to fix this?

    This link may be helpful.
    http://support.apple.com/kb/ts2755

  • I have a problem with the keyboard on my MacBook. The letters are typing as symbols and the delete and return/enter buttons do not work. Does anybody know how to fix this?

    I have a problem with the keyboard on my MacBook. The letters are typing as symbols and the delete and return/enter buttons do not work. Does anybody know how to fix this?

    Hey skyshade13,
    Thanks for the question. The following article outlines how to restore a previous iTunes library should there be no content after updating. While the article does not speak specifically to your symptoms, attempting the steps by utilizing the "Previous iTunes Libraries" folder may resolve your issue.
    No content shows up in iTunes after updating
    http://support.apple.com/kb/TS1967
    For further information see the following information:
    OS X Lion: iTunes opens to "created by a newer version" alert
    http://support.apple.com/kb/TS3918
    iTunes: How to re-create your iTunes library and playlists
    http://support.apple.com/kb/HT1451
    Thanks,
    Matt M.

  • I can't entered in iTunes Store.not working and i dont know why

    I can't entered in iTunes Store.not working and i dont know why

    "Error 11222"
    Apple is investigating reports of this issue. Proxies, certificate issues, or your Internet service provider may be the cause of this issue.
    From:
    http://support.apple.com/kb/TS3297

  • Have the IPhone g and when I slide my finger across it to unlock it or even turn it off it does not do anything does anyone know why.

    I have the IPhone 3g and when I slide my finger across it to unlock it or even turn it off it does not do anything does anyone know why.

    Try resetting it: hold the on/off and home buttons at the same time until you see the Apple logo (ignore the off slider that appears first), then release and wait for it to restart.

  • HT1349 The home button on my iPhone 4 is not working.  Does anybody know how I can restore it?

    The home button in my iPhone does not work.  Does anybody know how to restore it?

    If the basics from the User Guide have all been tried (restart, reset, restore from backup, restore as new) and you still have problems, then you've done all the troubleshooting you can do.  You'll need to bring your phone into Apple or an authorized service provider in your area.

  • IPod model A1059, freezes, unresponsive to all click wheel entries.  Reset does not work.  Does not show up in ITunes or on windows explorer.  What is the problem and how do I fix it?

    IPOD model A1059 appears frozen and is unresponsive to all click wheel entries. Reset does not work.  Does not show up in ITunes or in Windows Explorer.  What is the problem and is there a fix?

    If you are unable to reset the iPod (assuming the hold switch is not in the On position either), then you'll have to let the iPod's battery fully drain. Then connect it to a charger and leave it to charge for a couple of hours.
    B-rock

  • I bought Adobe Elements 12; I cannot use panorama photomerge, I have followed the directions to go to Full Edit  mode in edit workspace choose File New Photomerge. However the Photomerge does not work, it does not respond.   The only thing I can come u

    I bought Adobe Elements 12; I cannot use panorama photomerge, I have followed the directions to go to Full Edit  mode in edit workspace> choose File> New> Photomerge. However the Photomerge does not work, it does not respond.
    The only thing I can come up with is that I found a blog that said that in the Trial version Photomerge does not work, however I do Not have the Trial version, I did at one time but I purchase Adobe Elements. Thank you.

    The blog was incorrect. Photomerge should work in the trial, too.
    When things get weird in PSE the first thing to do is to delete the prefs. Go to the editor preferences>general, click this button and restart the editor:

  • Ipod not working and I dont know why?

    Can someone please help me?
    I closed my Ipod cause none of my apps were opening and i closed it and now all its doing is this.. (picture on the bottom) ; It has been doing this for over 20 minutes and i dont know what to do, can anyone help me?
    something like the picture but without the apple on the top just the circle thing.
    please please please help me

    Try here:
    iOS: Not responding or does not turn on
    If not successful and you can't turn the iPod fully off, let the battery fully drain. After charging for at least an hour try again.

  • 4s speakers not working..does not ring either

    speakers not working on my 4s...should i go to verizon or the apple store?

    Is the silent switch on?
    Is the volume up?
    Have you tried the basics?  restart, reset, restore.
    If you have tried all of the above then make an appointment at the local genius bar.
    Verizon does not provide service for iphone.  Apple does.

Maybe you are looking for