Sign in issue with email

i am still getting a issue wtih my email sign in i have click twice on the sign in box . i am using the new bt home page both on w8 and the desktop and it does it on both email accounts my primary acc/ and sub acc. my sub acc email address i use to sign into my microsoft account. i have run bt desktop help pc heath check and it come back with cache size/clear history/ auto detect settings. so i clicked on the box to clear them and still got a issue with email sign in.

I have a large number of apps that show me what happens when accessing  web-sites and when accessing BT yahoo I have had up to ---14--yes that's right--14 adverts blocked. Also in every case Yahoo is tracking you. These cause problems with the site. Since blocking them things have got better. I say this because I post on a popular US website which has multiple adverts including pop ups and video ads which badly effected the stability of that web-site-many complaints. Now its toned them down complaints have stopped. Try telling Yahoo to stop its ads and see where it gets you.    

Similar Messages

  • I am having some issues with email. My iphone shows 4 emails as unread yet when I look thru all my emails, both on my iPhone5 and my outlook there are no unread emails. How do I clear this up on my phone?

    I am having some issues with email. My iphone shows 4 emails as unread yet when I look thru all my emails, both on my iPhone5 and my outlook there are no unread emails. How do I clear this up on my phone?

    Email does not and has never synced between the iPhone and the computer. It sounds like you may have had your PC set up to use POP3 for e-mail, which will download e-mail from the server and delete it, causing it to vanish from your phone if the phone was set up for IMAP. IMAP provides full synchronization between the server and clients. What you delete on one will vanish from the others. This is the preferred method of managing e-mail as it prevents e-mail from being downloaded, for example, on a PC and making it inaccessible on your phone.

  • We have been having some issues with Email notifications not going out and getting hung up in SOST.  Can anyone please tell me whether we can use Solution Manager to monitor outbound emails?

    We have been having some issues with Email Notifications not going out and getting hung up in SOST. Can anyone please tell me whether we can use SAP Solution Manager to monitor outbound email?

    What version of Solman are you using ?  Check in t-code Rz20 >ccms monitor template of satelliate system , there would be option to monitor your outbound mails .You can sutomise your monitorig metrics in solman 7.1  else in 7.01 you use auto reaction methods to monitor .
    Regards
    Jay

  • Multiple OS issues with Email set up; "People" ; Synching phone not working as advertised

    Nokia Lumia 822
    Purchased yesterday (2/10/13)
    So far I have spent 14 hours attempting to resolve what feel like endless errors and bugs. If I can;t get these resolved in the next 48 hours the phone goes back. I am so disappointed  I waited especially for this phone - heard great stuff. My experience is it sucks. Worst phone ever.
    1) POP3 email accounts are non functional. I have attempted to set up and delete and re-set up now multiple times. Each time presents a fresh new nightmare.
    Issue 1 - Email account  receives email but will not send. Error message goes something like  <" Problem sending message. Message failed to send. Problem with Files or Data on your device." >
    Issue 2 - Tapping email + accounts sends me back to start screen cannot even set up account
    Issue 3 - I  get to add email account I enter my information but no account is created
    Issue 4 - I set up an account and I get an error message stating my information cannot be found.
    Issue 5 - trying to open email from start screen just resets to start screen  over and over and over NEVER opens the account.
    These are deal breaker issues. I have multiple email accounts on different platforms. If I cannot access my various emails AND send from those accounts this is NOT the phone for me.
    2) PEOPLE does not function. ALSO multiple various issues and never the same one twice.
    Issue 1 - I tap on a contact and get sent to the start screen over and over and over  and over again.
    Issue 2 I tap on a contact and the phone freezes and wont respond unless I pull the battery
    Issue 3 I open a contact and make an edit, save the contact but the change is never reflected in the list
    Issue 4 I try and search for a contact and the search freezes - only option is to return to start screen
    3) Scrolling thru any APP randomly takes me back to start screen.
    I dread attempting to synch Outlook calendar and contacts on my PC to hotmail - especially if I can't even set up email. And it seems like even holding it will jettison me out of anything I'm doing and back to start screen.
    If I can't get these issues resolved.  look like I'll be going  back to my 3 year old Blackberry Bold which performed flawlessly. It may not be the most impressive phone out there but it did what I needed it to do with out any issues.

    Interesting Twitter conversation VZWSupport on Twitter.  It was suggested to try a HARD reset - and if that doesn't work take the phone back.
    Since I don;t have anything set up yet  that's my solution.
    I see a BlackBerry Z10 in my future

  • Email Integration Scenario - Issue with email body content

    Hi All,
    We have an Email to File Scenario. PI is connected to Outlook server using Sender Mail Channel using POP3. We are able to fetch and display emails correctly for most of the received emails.
    However we notice that for Email sent from few Mail server like Yahoo mail, Gmail, Hotmail, we are not getting the Email content correctly.
    Issue is happening with Emails sent in HTML/Rich text format (containing Formatting and without any attachments). In the receiver system we see the email is converted to Plain text format. If the same email is sent with some attachment / Embedded Image, we get all the Formatting correctly in Receiver System.
    A closer look at Pimon we found the following:
    1. When Email is sent with Formatting (without any attachment/ image) in Pimon we see that it creates 2 Payloads (screenshot attached)
    2. The First Payload - MainDocument contains the Email content in XML format, but is missing the Email formatting data in it.
    3. The other Payload - ([email protected]) contains the actual Formatted Email Content.
    Not sure why the formatting data is missing from MainDocument. Instead its coming in other payload. Due to this we are not able to display correct data at receiver end as we parse the MainDocument as our Input Payload Stream
    Note: We cannot use payload swap bean, as it will swap the data for all the incoming emails which we don't want.
    Anyone faced similar issue? Steps to get proper formatting data in MainDocument..
    Suggestions / Inputs will be highly appreciated.
    Thanks,
    Azhar

    Azhar,
    We cann't influence the behavior of Gmail, Hotmail. But have to get HTML as main payload, so we have to swap payload (not always, in some cases based on a condition). Please try below Java mapping. In Operational Mapping set "Read Attachments".
    package javaapplication1;
    import java.io.*;
    import com.sap.aii.mapping.api.*;
    import java.util.Collection;
    public class NewClass6 extends AbstractTransformation {
        @Override
        public void transform(TransformationInput transformationInput, TransformationOutput transformationOutput) throws StreamTransformationException {
            try {
                InputStream inputstream = transformationInput.getInputPayload().getInputStream();
                OutputStream outputstream = transformationOutput.getOutputPayload().getOutputStream();
                byte[] b = new byte[inputstream.available()];
                inputstream.read(b);
                //Loop over attachments and if attachment name starts with 'payload-' swap it with main payload. Edit below logic as needed.
                Collection<String> listAtt = transformationInput.getInputAttachments().getAllContentIds(true);
                for (String att : listAtt) {
                    if (att.startsWith("payload-")) {
                        b = transformationInput.getInputAttachments().getAttachment(att).getContent();
                outputstream.write(b);
            } catch (Exception exception) {
                getTrace().addDebugMessage(exception.getMessage());
                throw new StreamTransformationException(exception.toString());

  • Skype Sign In Issue with Nokia E5

    Hi Friends,
    I am facing skype log in problem in my mobile Nokia E5 where as via PC i can logged in successfully. Through mobile whenever i try to log in skype it shows skype sining and later on after few seconds it stop working. Plz suggest how can i resolve this issue with my Nokia E5 ?

    Hi kishor12345,
    To further verify, are you using the internet browser when trying to access the Skype? If so, have you tried browsing the other website wherein you need to sign in your account first before you can proceed? In case that you are using mobile data, please use Wi-Fi connection instead. You may also restart your phone by switching the phone off, take the battery out, put it back in after a few seconds and switch your phone on.
    Let us know how it will go. 

  • Issue with email sync

    I have configured 5 gmail accounts, 3 yahoo accounts and 1 live account. Everything was working fine until a day came that I was forced to change the password of all my G accounts. I changed it in my phone also but since then I cant sync just 1 gmail account. Not that I cant sync but its not loading the mails in the viewer. Email app works fine with other accounts. I tried deleting all the account and re-created all the accounts still its not working. I tried deleting it from email.nokia.com and STILL its not working. a 3 months ago I had the same issue with another G account. What I did then was I stopped using the Email app. I sstarted using it only a 3 weeks ago as I really needed a client on my phone. Wish someone could help me out from this really awkward situation

    you do realize there isnt an ios 7.7.1 right?

  • Issue with emails being deleted from my Yahoo mail folders

    Hi, I am experiencing an issue where emails are being deleted from my Yahoo mail folders when the weekly Sunday night purge of the Yahoo Trash folder is carried out by Yahoo. These are mails that have been moved from my inbox via the iphone mail app.
    I have a similar problem with Outlook 2010 on my laptop but not with Outlook 2003 on my desktop.
    When I move the emails from my inbox I have noticed that using Outlook 2003, the moved email is left in my inbox in "strikethrough" mode whereas on Outlook 2010 it is deleted from my inbox. I subsequently purge the marked email from my inbox in 2003.
    I am able to see and access the emails in the folder I have moved them to until after midnight on Sunday when they dissappear. The emails moved via 2003 are ok and not lost.
    Funnily enough when using an earlier version of the iphone mail app I remember that I could see emails in "strikethrough" mode in Outlook 2003 when they had been moved via the iPhone mail app but you don't see that now.
    It feels like some sort of pointer issue to me ...... any ideas on how to stop this happening?.

    This is now fixed !!!! I am not sure how though :-((
    I reported the problem to Yahoo and in the process of them investigating the issue my sub-folders suddenly became invisible via my IMAP connection and then also were invisible on-line following a log out and a log in. After my initial panic, I contacted Yahoo who were able to restore my complete account. Since then, the problem has gone away.
    I have been testing this for two weeks and all is working perfectly from whatever device I use to connect to my mail (IMAP or via my browser).
    Phew!

  • Exchange 2010 issues with emails attachments on phones

    ok i have an issue with exchange 2010 server 2008 r2
    i currently have 7 phones running activesync
    only one phone has a problem sending attachments to other phones in the company....
    however the phone can send regular email to any of the other phones without any problems.
    I have exhausted my abilities to figure out what is going on and at this point Im lost which has never happened before
    I mirrored the setting on another phone to the one with the problems and still no difference
    I also changed to the readahead size notifications to 20mb
    and unrestricted retrieval size
    both phones are galaxy S3's
    I am leaning towards a configuration error
    anyone have any ideas i can try?

    Hi 
    I think most probably it could be a problem with the Android device and not to analyze on readahead
    size notifications since this occurs only on a particular device 
    As a part of testing please follow the below things
    1) Try to configure active sync profile for different user on that device and try sending email with attachments and see the results.
    2) Try to configure profile on a different mobile for that affected user account and see the results.
    Please mark as helpful if you find my contribution useful or as an answer if it does answer your question.That will encourage me - and others - to take time out to help you.
    Regards, 
    Sathish
    Sathish

  • Issue with Email

    Hello,
    I have set up an email account on the MAC program Mail. The email address originates from Go Daddy. The email program is up and running, able to send and receive emails. When running the account through a spam checker, the following message is received:
    [SPF] benevolenceinn.com does not allow your server 173.201.192.105 to use [email protected]
    Sender Policy Framework (SPF) is an email validation system designed to prevent email spam by detecting email spoofing, a common vulnerability, by verifying sender IP addresses.
    What we retained as your current SPF record is:
    "v=spf1 a mx include:secureserver.net ~all"
    More information about this error:
    benevolenceinn.com: Junk encountered in mechanism 'ptr:68.178.252.102'
    In addition, [Sender ID] benevolenceinn.com does not allow your server 173.201.192.231 to use [email protected], is also stated. This is the same message but for "Sender ID" as well.
    I spoke to Go Daddy and they stated that it could be an issue with MAC mail.  When I spoke to Apple, they suggested that the issue lies with my home IP address and not Go Daddy or Apple.  The IP address of Go Daddy is listed above but the tec online said that my home ip would be the real issue.  I spoke to Time Warner and they said there is absolutely no issue with my IP.
    Any tips on how to solve this?
    Thank you!
    Shane

    It could be that the server is seeing your source address as being "masked" by routing through GoDaddy. In other words, when you originate your mail from your own IP, it then passes through GoDaddy, and the recipient sees this as a spoofing attempt.
    I would suggest the problem isn't with you or GoDaddy but maybe the way they have their servers set up. I was having trouble not getting responses to a group I was trying to join and when I contacted one of the admins directly they told me that Verizon was blocking their site and marking their setup mails as spam. It was hardly a dubious group, someone at Verizon entered the wrong IP address into a list of "bad guys."

  • Issues with email with AT&T ,

    Is anyone getting error messages using email with their iPhones and iPads with AT&amp;T
    The message says that you cannot get mail
    These is a problem with your username and/ or password. Just began a week ago last Thursday..
    I called AT&amp;T last weekend and they told me that there was a problem with their servers (I live in ct)
    And they would have it fixed in 24-48 hours. And it was not an issue with my 2 iPhone 4 s and I pad. People at work were also having problems..
    Called again a week later . They had No record of my call from the week before and know idea about a server issue.

    OK...so this post is strictly about wanting to send your contacts to the SIM. That capability is one at a time only. And there's a reason for that.
    The BB Address Book is robust, allowing you to have one name with multiple phone numbers and addresses. The SIM phonebook, on the other hand, is much less capable...if, for instance, you have one contact with three phone numbers in your BB Address Book, the SIM phonebook would require three separate entries to contain the same data (with the obvious duplication of the name on three separate records).
    So, I must ask...why on earth do you want to send your contacts to your SIM? There are much better methods for moving your contacts from the BB to somewhere else...
    Let us know!
    Occam's Razor nearly always applies when troubleshooting technology issues!
    If anyone has been helpful to you, please show your appreciation by clicking the button inside of their post. Please click here and read, along with the threads to which it links, for helpful information to guide you as you proceed. I always recommend that you treat your BlackBerry like any other computing device, including using a regular backup schedule...click here for an article with instructions.
    Join our BBM Channels
    BSCF General Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • Issue with Email generation using MAPI32.OCX and Outlook 2010

    Our application use MAP32 OCX to generate an email with an attachment (PDF File), but no email address. The user will select the address from their contacts.
    Right now we have an issue with some Outlook 2010 clients that after about 8 emails , Outlook has an issue and hangs.
    Now if we do a mailto://[email protected] before we create the 8th email, Outlook 2010 doesn't hang.  Is there any setting we can set in Outlook 2010 to prevent the "address checking" when the email is generated or do I have to fill
    the email address with a "bogus" address that the user must then overwrite to prevent this from happening?
    Thanks,
    Chad Newman

    Hello Chad,
    Why do you need to use MAPI instead of OOM?
    I'd suggest automating Outlook instead. See
    How to automate Outlook from another program and
    How to automate Outlook and Word by using Visual C# .NET to create a pre-populated e-mail message that can be edited for more information.
    Also you may find the
    C# app automates Outlook (CSAutomateOutlook) sample project helpful.

  • Issue with emails unread on Blackberry but read in Outlook

    Hi guys,
    I'm having issues with this Blackberry and the email.
    I've setup the Blackberry (Bold 9700) via BIS to link their Exchange email (Exchange 2003). Once the emails are delivered to the Blackberry, on the Outlook 2003, it shows as it has been read.
    I've tried turning the wireless reconcilation on and off, turning the cache mode for outlook on and off, but it has fixed the problem. I've noticed alot of people are having the same problem, but no real solution has been provided. Please help. Thanks.

    Hi and Welcome to the Forums!
    Depending on if your conditions match, this KB might apply to your situation.
    Good luck!
    Occam's Razor nearly always applies when troubleshooting technology issues!
    If anyone has been helpful to you, please show your appreciation by clicking the button inside of their post. Please click here and read, along with the threads to which it links, for helpful information to guide you as you proceed. I always recommend that you treat your BlackBerry like any other computing device, including using a regular backup schedule...click here for an article with instructions.
    Join our BBM Channels
    BSCF General Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • Issues with Emailing

    For emailing through PDF files, is there something special the user has to have setup on their computer locally? An email client for example i.e. Groupwise or MS Outlook? Does Outlook actually have to be setup or does it just sent throught the Internet?
    I attempted to setup Outlook to test this but I got lost when it started asking me about POP3 addresses without telling me how or where to get such information, does the average user even have these programs setup? I seriously doubt the average computer user is going to have a clue what the heck that is either (I know you get those with your own website, if you have a mail system installed, but the average computer user just has an ISP).
    I was also having issues with sending to more then one users but I think I found a way around that, though my only remaining obsticle is that when I click the button to email it does nothing at all. It was trying to on the computer I have Adobe installed by on another computer with just Abobe Reader installed it does nothing at all.

    OK, now I seem to have it working, to some extent, it when I click to Email it brings up a menu asking if I want to use a program, the Internet, or Other, I select program and then it prompts me to log into GroupWise then it sends out the email to my test emails, only issue now is that I can't view the attachment, it says the encoding is not correct, so what is the proper way to save it and which encoding, I think the default was UTF-16 (IIRC or U**-something-16?).
    Another issue I just realized is that the GroupWise is actually sending the information out to FAX Numbers for automated printing rather then to actual email addresses, so is there a way to use FAX numbers rather then email addresses during this process or convert them?

  • Constant issue with email

    Hi
    My wife is experiencing constant problems with email. She is only able to log on via the web based portal and every time it requests that she enter a "captcha" string. She is only able to log on from her mobile devices (iPhone and Android tablet) if she happens to have a live session on a web page. Can anyone point me to a resource to get this sorted?
    Many thanks
    Simon Round

    simecircle wrote:
    Have I posted this in the wron forum? Can anyone tell me how to get support on this issue?
    Thanks
    You have posted in the right place on this forum.
    This is a customer to customer forum only, where forum members, who are only BT customers, can help each other with BT Retail products and services.
    Anything you post here does not go to BT. Although the forum is moderated by BT, not all posts are read.
    I expect that none of the forum members know the answer.
    There are known issues with Yahoo mail, which have been going on for years. There are plenty of other threads on this board, describing similar issues when using multiple devices.
    There are some useful help pages here, for BT Broadband customers only, on my personal website.
    BT Broadband customers - help with broadband, WiFi, networking, e-mail and phones.

Maybe you are looking for

  • Using Text module in report programs

    Hi All, Is it possible to use Text modules created in Smartforms in our report programs. if yes, please share some details on the same. Regards, Booma Ganesan

  • Running A Little Hot- How To Test The Fans?

    I left my Macbook on standby (on but closed) for a few days (not recommended, I know) and when I came back to it, it was rather unduly hot for a computer that hadn't actually been running. I opened it; it wouldn't wake up. I force-shut down by holdin

  • Question for everyone: Swing Design Patterns

    I've used kodo for many web projects, but I am currently looking at using it for a swing application and am having a hard time figuring out the best way to use it. My original attempt used a singleton PersistenceManager for the entire application tha

  • Library keeps corrupting, library keeps corrupting

    At least once a week when opening iTunes my library does not load and dissapears, I then have to reload all my music, podcasts etc, having over 80gb, this takes some time and is getting frustarting....

  • MRP run error Message: 64

    Dear All gurus, At the time of running MRP, getting some planned order with error message 64: Production finish after order finish. Henceforth the basic date of planned order comes less than production order date. Whereas any schedule margin key is n