Email signing in

Hi Does anyone have any idea why i have to sign in every single time i want to check my emails.This has only started happening since the new homepage was introduced.When i was able to switch back to the old page i had no problem it would keep me signed in for a couple of weeks.This happens on both my lap top and computer even when i tick the keep me signed in box it is driving me mad.I can get no help or answers from bt

See http://community.bt.com/t5/Other-BB-Queries/Where-is-the-quot-keep-me-logged-in-quot-box/m-p/1047318
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.

Similar Messages

  • Email Sign In Failed Notifications - Please Respond

    Duplicate message - Email Sign In Failed Notifications - Please Respond
    Message was edited by: Admin Moderator

        Let's ensure your e-mail is up and running properly. I would suggest clearing the application through Settings > Apps > Manage Apps > All > Clear Cache and Data from the e-mail application that you're using.
    YosefT_VZW
    Follow us on Twitter @VZWSupport

  • Email Sign-in Seal

    I have set up my Email sign-in seal on a number of occasions over the last year.....but after a while the sign-in seal disappears!!!!
    It is a worry ..... is there a valid reason for this loss?
    Mike D

    Hi Mike,
    Have you deleted cookies/temporary internet files or changed browsers around the time when the sign-in seal disappears? There shouldn't be any reason behind it disappearing on its own. This thread (albeit a few months old) might clarify things for you.
    Dean
    BTCare Community Mod
    If you like a post, or want to say thanks for a helpful answer, please click on the Ratings star on the left-hand side of the post.
    If someone answers your question correctly please let other members know by clicking on ’Mark as Accepted Solution’.

  • My email (sign-in) and password for iTunes is different than my email (sign-in) and password for iCloud. How do I change my sign in and password so they are the same for both iTunes and iCloud without losing my iTunes content?

    My email (sign-in) and password for iTunes is different  than my email (sign-in) and password for iCloud. How do I change my sign in and password so they are the same for both iTunes and iCloud without losing my iTunes content?

    Hey Lakedrive442,
    It sounds like you have changed your Apple ID which you use with iTunes.  If so there are several places you may need to update it as outlined in this article.
    Apple ID: What to do after you change your Apple ID - Apple Support
    Of course some might not apply, but many might.
    Thank you for thinking of Apple Support Communities for your support needs.
    Nubz

  • Could you please tell me how to turn off the email sign-in and password function when I open Itunes on my computer - I don not wish to sign in every time

    could someone please tell me how to turn off the email sign-in and password function when I open Itunes on my computer - I don not wish to sign in every time

    Try:
    - iOS: Not responding or does not turn on
    - Also try DFU mode after try recovery mode
    How to put iPod touch / iPhone into DFU mode « Karthik's scribblings
    - If not successful and you can't fully turn the iOS device fully off, let the battery fully drain. After charging for an least an hour try the above again.
    - If still not successful that usually indicates a hardware problem and an appointment at the Genius Bar of an Apple store is in order.

  • Email sign up boxes

    i am trying to add an email sign up box to my web sites. i
    have the html code from constant contact. they say to open the html
    source code and insert it there.... i can't figure out how to get
    to the code in contribute. if anyone can tell me how to do this i
    would GREATLY appreciate it! thank you in advance.

    To do that you need to be able to edit the code in an
    external application, Windows Notepad will do it. Check out the
    postings "Open to insert html?" (General Discussion), "Contribute
    source code" (Site Design) or "adding a weather magnet" (Site
    Design).
    You may need to get the administrator of the website to allow
    you to edit source code.

  • Problems with the private key at email signing

    Error when running the app: org.bouncycastle.cms.CMSStreamException: Inappropriate key for signature.
    I'm trying to sign an email with a smart card using Java, mime type multipart / signed, when I do a debug the code without saving the
    message or without sending, there is no error or warning, or exception. But when I save or send the message out, I'm getting errors,
    inappropriate key .
    When I save the message:
    body.writeTo(new FileOutputStream("signed.message"));
    Whe I send the message:
    Transport.send(body);
    The error:
    Exception in thread "main" org.bouncycastle.cms.CMSStreamException: key inappropriate for signature.
    at org.bouncycastle.cms.CMSSignedDataStreamGenerator$CmsSignedDataOutputStream.close(Unknown Source)
    at org.bouncycastle.mail.smime.SMIMESignedGenerator$ContentSigner.write(Unknown Source)
    at org.bouncycastle.mail.smime.handlers.PKCS7ContentHandler.writeTo(Unknown Source)
    at javax.activation.ObjectDataContentHandler.writeTo(DataHandler.java:869)
    at javax.activation.DataHandler.writeTo(DataHandler.java:302)
    at javax.mail.internet.MimeBodyPart.writeTo(MimeBodyPart.java:1383)
    at javax.mail.internet.MimeBodyPart.writeTo(MimeBodyPart.java:852)
    at org.bouncycastle.mail.smime.handlers.multipart_signed.outputBodyPart(Unknown Source)
    at org.bouncycastle.mail.smime.handlers.multipart_signed.outputBodyPart(Unknown Source)
    at org.bouncycastle.mail.smime.handlers.multipart_signed.writeTo(Unknown Source)
    at javax.activation.ObjectDataContentHandler.writeTo(DataHandler.java:869)
    at javax.activation.DataHandler.writeTo(DataHandler.java:302)
    at javax.mail.internet.MimeBodyPart.writeTo(MimeBodyPart.java:1383)
    at javax.mail.internet.MimeMessage.writeTo(MimeMessage.java:1743)
    at javax.mail.internet.MimeMessage.writeTo(MimeMessage.java:1719)
    at javaemail.SignedMultipartEmailTest.main(SignedMultipartEmailTest.java:537)
    Caused by: java.security.InvalidKeyException: Supplied key (sun.security.mscapi.RSAPrivateKey) is not a RSAPrivateKey instance
    at org.bouncycastle.jce.provider.JDKDigestSignature.engineInitSign(Unknown Source)
    at java.security.SignatureSpi.engineInitSign(SignatureSpi.java:86)
    at java.security.Signature$Delegate.engineInitSign(Signature.java:1104)
    at java.security.Signature.initSign(Signature.java:498)
    at org.bouncycastle.cms.CMSSignedDataStreamGenerator$SignerInf.toSignerInfo(Unknown Source)
    ... 16 more
    Java Result: 1
    BUILD SUCCESSFUL
    In the code:
    PrivateKey key = (PrivateKey)keyStore.getKey(aliasNm, null);
    gen.addSigner(key, signCert, SMIMESignedGenerator.DIGEST_SHA1, new AttributeTable(signedAttrs), null);
    where key is the private key of the alias from signature certificate at smart card of type RSAPrivateKey type, according to the debugger
    but according to the javadoc returns Type Key but is forced to type PrivateKey which extends to the other.
    This line is like a example which I'm using, is a bouncy castle example, but with generated certificates, I changed to use certificates
    from smarct card.
    signCert is the certificate associated with key , certificate of SIGNATURE from smartcard.
    At the debugger:
    In the method keyStore.getKey() I'm using null instead of char[] password because is using the windows certificate store which store the
    certificates at the smart card and is getting the PIN with PIN dialogue, and is loading the keystore perfectly and I'm getting the
    certificates from smart card.
    I tried to use:
    PrivateKey key = (PrivateKey)keyStore.getKey(aliasNm, PIN_FROM_SMARTCARD);
    And I'm getting the same value when I use null.
    The value at the debugger is:
    (java.security.PrivateKey) (sun.security.mscapi.RSAPrivateKey) RSAPrivateKey [size=2048 bits, type=Signature,
    container=hexadecimal_number](the same hexadecimal number in both cases)
    Obviously we can see in the error:
    Caused by: java.security.InvalidKeyException: Supplied key (sun.security.mscapi.RSAPrivateKey) is not a RSAPrivateKey instance
    And we can see too:
    RSAPrivateKey de 2048 bits
    at the debugger, in the key value.
    I can't understand why I'm getting the error only when the message is saved, or sended.
    If the key was inappropriate I would receive an error, or an exception when I'm not sending or saving the message.
    These are one, of the last lines of the code that I'm hidding with //
    When I save the message:
    //body.writeTo(new FileOutputStream("signed.message"));
    Whe I send the message:
    //Transport.send(body);
    If I uncomment one of these lines, I'm receiving the errors, previously written above
    Any suggestion?
    Than you
    Regards

    Try to reset the device by pressing hold of the home and power button for 15-20 seconds and letting of when the Apple logo appears.

  • I want my passwords to automatically be on the email sign in page, although only as dots, when I sign in. How do I do this?

    Previously, when I signed in to my email accounts, my passwords, shown as dots, appeared in the box under each gmail account. now, I have to type in my passwords in the box every time I try to access my emails. How do I go back to the way it was previously?

    Do you still see those names and passwords in the Password Manager?
    *Tools > Options > Security: Passwords: "Saved Passwords" > "Show Passwords"
    Make sure that you do not run Firefox in permanent Private Browsing mode (Never remember history).
    *https://support.mozilla.org/kb/Private+Browsing
    *Tools > Options > Privacy > Firefox will: "Use custom settings for history"
    *Deselect: [ ] "Always use Private Browsing mode"
    Start Firefox in <u>[[Safe Mode|Safe Mode]]</u> to check if one of the extensions (Firefox/Tools > Add-ons > Extensions) or if hardware acceleration is causing the problem.
    *Switch to the DEFAULT theme: Firefox/Tools > Add-ons > Appearance
    *Do NOT click the Reset button on the Safe Mode start window
    *https://support.mozilla.org/kb/Safe+Mode
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes

  • Missing the sign in seal (assuring validity) for Yahoo email sign in page

    The sign in seal is an option you build for sign in id and password for yahoo emails. it assures authenticity. It shows up, except on firefox. I would appreciate your comments please.
    Thanks in advance..

    Specifically, it appears the information is stored in the '''YL''' cookie from the ''login.yahoo.com'' domain. Either of the following add-ons can delete all but certain cookies, for those who regularly clear out cookies but need to keep a few.
    * https://addons.mozilla.org/firefox/addon/biscuit-220876/
    * https://addons.mozilla.org/firefox/addon/selectivecookiedelete/

  • Email sign in

    Why do I have to sign in every time? Is there a way to fix it?

    Are you talking about the new Verizon page's sign-in? I was able to do  IE Autocomplete when I first signed up with Verizon and of course then the sign-in page was Verizon Central, which I still get, and when I sign out there is the new sign-in page,  Eventually Verizon will probably just have the new page. A few weeks ago I marked the  box next to remember me for two weeks for  both the old Verizon Central page and for the new page. Then IE Autocomplete came up when I signed in,so now I don't have to sign in each time. I guess that's why auto  complete came on the new page as it hadn't come up before.   After two weeks I googled Verizon  Central, clicked on the site listed for Verizon Central  and made that my home page.  But if you don't want to keep that old page, just make the new sign in page your home page.
    Also on the new sign-in page , under the sign--in spot is a part marked Quick Links. Click on Check Email and you will get the Verizon Webmail sign-in page and you can use this sign in and will get IE AutoComplete. I imagine eventually all will just have the new sign-in page and the old one will probably be eliminated. If you don't want a preview of any new email,then you get your email page quickly if you click on Check email under Quick Links. 

  • Yahoo email signing out ?

    Yahoo is my default mail and it keeps requesting me to sign in.....It doesnt seem to be remembering my password......anything I should be checking or looking for??
    Thanks in Advance.
    Keith

    keithsm2, I was really interested in this issue because yahoo email is one of the largest email clients we as customers use and I know how much of a convenience it would be to have it open without prompting you for a password. I show that customers have reported this as an issue and we have found different fixes that have worked for our customers until we find a permanent fix. 
    1) Customers have had success by removing the Yahoo Mail from the account list by clicking settings-accounts -remove yahoo and then setting the email up by using a yahoo mail app from the market place. 
    2) Customers have also added the Yahoo mail account as OTHER in the settings instead of 'YAHOO". To do this go to email, click menu, long press on yahoo email account, click add account add as OTHER (not yahoo) type in email and password. 
    3) Also try setting the Yahoo Email as the first account within the email application instead of existing. 

  • How to stop email sign in from rembering email

    when logging into gmail, previous sign in emails show up. how can this be prevented?

    ''rexinewj [[#question-1043952|said]]''
    <blockquote>
    when logging into gmail, previous sign in emails show up. how can this be prevented?
    </blockquote>
    thanks to the many responses but the one I did find that works is the following:
    Prevent Firefox from storing form entries
    If you don't want Firefox to remember what you've entered into form fields, you can turn off the auto form fill feature:
    1. Click the menu/tools button and choose Options.
    2. Select the Privacy panel.
    3. In the drop-down menu next to Firefox will:, choose Use custom settings for history.
    4. Remove the check mark next to Remember search and form history.
    5. Click OK to close the Options window.
    Disabling form history also prevents Firefox from storing search history for the Search bar in the Navigation Toolbar.

  • OWA not verifying emails signed by OpenSSL

    I am trying to create an android app which can send sign and encrypted mails using OpenSSL.
    So far I am able to send Signed Emails and verify them using both web browsers and my android apps.
    Same is the case with Encryption and Decryption.
    But now when I am trying to send signed+encrypted mails from my android app. The Exchange server is unable to verify/decrypt the mails sent from my android app.
    When I am trying to open these mails using OWA I get this error:
    One or more errors occurred while the message was being loaded. Error: (0x800ccef6)
    The digital signature of this message couldn't be validated because an error occurred while the message was being loaded.
    Any pointers about what this error code means?
    Sign Code:
    public static boolean Java_PKCS7Sign(File inputFile, File outputFile, PrivateKey privateKey, X509Certificate certificate, String signingAlgorithm) {
    try {
    String inputFilePath = inputFile.getAbsolutePath();
    String outputFilePath = outputFile.getAbsolutePath();
    byte arr[] = android.security.Credentials.convertToPem(certificate);
    InputStream certIs = new ByteArrayInputStream(arr);
    OpenSSLX509Certificate openSSLcert = OpenSSLX509Certificate.fromX509PemInputStream(certIs);
    byte openSSLcertEncoded[] = openSSLcert.getEncoded();
    long signCertRef = NativeCrypto.d2i_X509(openSSLcertEncoded);
    OpenSSLKey oKey = OpenSSLKey.fromPrivateKey(privateKey);
    long evpKeyRef = oKey.getPkeyContext();
    //boolean res = PKCS7Sign(signCertRef, pkeyRef, certs, bioRef, flags, a, b)
    long arr1[] = new long[0];
    return PKCS7Sign(inputFilePath, signCertRef, evpKeyRef, arr1, outputFilePath);
    } catch (Exception e) {
    e.printStackTrace();
    return false;
    In the above code PKCS7Sign is
    a JNI call to OpenSSL. And the flags used are for signing are: int
    flgs = PKCS7_STREAM | PKCS7_DETACHED | PKCS7_BINARY ;
    Encrypt Code:
    public static boolean Java_PKCS7encrypt(File inputData, File output, X509Certificate[] recipientCertificates, String encryptionAlgorithm) {
    if(!inputData.exists() || !output.exists())
    return false;
    try {
    fis = new FileInputStream(inputData);
    OpenSSLBIOInputStream bis = new OpenSSLBIOInputStream(fis);
    long bioRef = NativeCrypto.create_BIO_InputStream(bis);
    int certsRefArrLength = recipientCertificates.length;
    long certsRefArr[] = new long[certsRefArrLength];
    for (int i = 0; i < certsRefArrLength; i++) {
    byte arr[] = android.security.Credentials.convertToPem(recipientCertificates[i]);
    InputStream certIs = new ByteArrayInputStream(arr);
    OpenSSLX509Certificate openSSLcert = OpenSSLX509Certificate.fromX509PemInputStream(certIs);
    byte openSSLcertEncoded[] = openSSLcert.getEncoded();
    certsRefArr[i] = NativeCrypto.d2i_X509(openSSLcertEncoded);
    String outputFilePath = output.getAbsolutePath();
    return PKCS7encrypt(bioRef, certsRefArr, outputFilePath, encryptionAlgorithm);
    } catch (FileNotFoundException e) {
    e.printStackTrace();
    } catch (CertificateEncodingException e) {
    e.printStackTrace();
    } catch (IOException e) {
    e.printStackTrace();
    } catch (Exception e) {
    e.printStackTrace();
    return false;
    Same as in case of sign PKCS7encrypt is
    a JNI call to OpenSSL. And flags used are:
    int flags = PKCS7_STREAM | PKCS7_BINARY;
    And cipher used for encryption is cipher
    = EVP_rc2_40_cbc();

    Hi Sohan,
    Agree with Ed.
    This error seems caused by the App that created by yourself. It is very hard to say whether the code is correct, since I am not good at coding. It is out of our support boundary.
    Thanks
    Mavis
    Mavis Huang
    TechNet Community Support

  • I received a signed email (signed by IdenTrust) that Thunderbird says the signature is invalid. It says that I don't trust the cert. authority. Help please.

    I sent a signed email from my work to home (which uses Thunderbird). I can read the email ok but get the following certificate error:
    This message includes a digital signature, but the signature is invalid. The certificate used to sign the message was issued by a certificate authority that you do not trust for issuing this kind of certificate.
    The issuing authority is: IdenTrust ECA 3
    How can I mitigate this issue? I will need to send encrypted emails back and forth but without this working, it's impossible.
    Thanks in advance.

    Thank you very much for your reply. It is greatly appreciated.
    I took a look there and IdenTrust isn't listed. How can I get what I need (I am assuming a cert) from IdenTrust making them a trusted authority?
    Thanks again in advance.

  • I can no longer use "sign out" tabs on numerous web sites such as the Yahoo email sign out, gmail sign out our bank sign out etc. What is wrong? How can I undo this unwanted feature?

    I log on to Yahoo mail. I read the mail and want to sign out by clicking the "sign out" tab and nothing! It is as if the tab is frozen. same with bank page, gmail and others. What do I do to eliminate this problem?

    See if this helps: [https://support.mozilla.org/en-US/questions/910511?s=yahoo+toolbar&r=3&e=sph&as=s https://support.mozilla.org/en-US/questions/910511?s=yahoo+toolbar&r=3&e=sph&as=s]
    Jack

Maybe you are looking for