Email Access with Secure Password Authentication [SPA]

Hi All,
I am sorry if this question is repeated.
My company uses Secure Password Authentication [SPA] to access POP3/SMTP Email access. I was able to configure the email to my iPhone before Company forced SPA.
Can anybody provide instructions to configure the SPA in iphone?
Thanks for the help in advance.

45 Views and No reply. Please help.

Similar Messages

  • Outlook 2010 cannot use Secure Password Authentication

    I am the administrator of the server running Microsoft Windows 2003 Server POP3 service since 2008. It hosts my email account. Nobody but me manages the settings of the server and the client side. Until the moment I decided to install Microsoft Outlook
    2010 as a client there was Secure Password Authentication working between Outlook 2003 and Windows 2003 Server. After installing of Outlook 2010, when I try to sync, the SPA authentication doesn't work. Nothing is changed on the server side.
    Enabling the SPA authentication on the both sides results a communicaton problem between Microsoft Windows 2003 Server POP3 service and Microsoft Outlook 2010 client. When I disable SPA on both sides the connection works but password is sent
    as plain text. Actually I started a discussion on
    http://answers.microsoft.com/en-us/office/forum/office_2010-outlook/outlook-2010-cannot-use-secure-password/66dafd66-1b00-43b5-96fb-b8a26254fc77 but I didn't receive an answer with a solution.

    Snefels,
    This is actually a known issue that Outlook 2010 doesn't work well with Windows Server 2003 POP services.
    Here is the blog post for the issue:
    http://blogs.msdn.com/b/jjameson/archive/2010/04/26/outlook-2010-does-not-work-with-windows-server-2003-pop3-service.aspx
    If you read the comments below, you'll found that some readers' shared some workaround/solutions, which reportedly works for others. So you might want to have a look.
    Disable SPA on the Windows 2003 POP3 server and do the same in Outlook 2010 POP setup.. using the full email address, "[email protected]" instead of just doug (if using the Secure Password Authentication).
    Aravindhan Battepati

  • I created a second email account with a password but when I try to get mail for it and I put in password it says login failed. Why? and how do I fix it.

    I created second email account ([email protected]) with a Password but when I try to get mail and enter password, it says "Sending of Password did not succeed. Mail server mail.comcast.net responded: login failed". What am I doing wrong?

    Have you logged on to the webmail account using a browser and enabled either Pop or Imap forwarding for that email address?
    Have you created a mail account in Thunderbird that uses the chosen webmail forwarding option?
    Password - make sure caps lock is not switched - it must be the same password you use to access the webmail account.
    check:
    Tools > account Settings > Server Settings
    username = full email address
    Please post info:
    In Thunderbird
    Help > Troubleshooting information
    click on 'copy text to clipboard'
    paste info in this question
    edit /remove all info on fonts and printers.

  • How to access my secure password on my IPad

    HHow to access my secure passwords etc on Ipad

    See one of your duplicate posts : Unable to access secure passwords etc

  • Can i lock a file that only i can access with a password

    can i lock a file or folder that i can only access with a password???

    You could put it on a USB memory stick, the use Encrypt in Finder. MacOS Hints has notes on it.

  • Logon failure with username/password authentication in WLE 5.1

    Hi,
    I have WLE 5.1 configured and running on a Win2K system. I am able to
    build and run the simpapp sample program. I am also able to build the
    interceptor_cxx sample and run with all interceptors other than the
    security interceptor. What I realised in this case was that the
    PersonQueryClient did not perform any login of a user from which the
    security interceptor could extract user ID information (have I missed
    something? I am a WLE and CORBA newbie) so I modified the ubb config
    file to define SECURITY as USER_AUTH and add the AUTHSVC, modified
    personqueryclientc.cpp to get access to the SecurityLevel2 principal
    authenticator, built the app, created a user with the tpussradd command,
    and ran the app (the AUTHSVC successfully starts).
    The Tobj::AuthType returned by the get_auth_type method of the
    PrincipalAuthenticator is Tobj::TOBJ_APPAUTH as I expect. I call the
    logon method with the parameters (user_name, argv[0], sys_password,
    password, 0) where user_name is the same as the user I created with the
    tpusradd command, argv[0] is personqueryclient (I've tried tpusradd'ing
    the user both with the "-c personqueryclient" argument and without),
    sys_password is the password I specified when tmloadcf was run against
    the modified ubb config file, password is the password I specified when
    I ran tpusradd. The logon always fails returning
    Security::SecAuthFailure. In the ULOGxxxx file the following message is
    displayed:
    181605.NUMBAT!TMSYSEVT.2180: LIBTUX_CAT:1484: WARN: .SysClientSecurity:
    User tbartley on SITE1 authentication failure
    I've tried running in the following manners all with the same result:
    1. With or without the security_cxx interceptor registered
    2. With the user in or not in a group
    3. With the the user created using the "-c personqueryclient" arg to
    tpusradd or not
    If I change the security level down to APP_PW then everything works and
    the security_cxx interceptor sees a client name of personqueryclient and
    a username of personqueryclient. The logon fails if I use a sys_password
    other than the one specified to tmloadcf and succeeds if I use the
    correct password.
    Can anyone tell me what I might be doing wrong in the username/password
    authentication case?
    Here's the code I inserted to personqueryc.cpp to perform the logon:
    // Get SecurityCurrent object
    CORBA::Object_var var_security_current_oref
    = bootstrap.resolve_initial_references("SecurityCurrent");
    SecurityLevel2::Current_var var_security_current_ref =
    SecurityLevel2::Current::_narrow(var_security_current_oref.in());
    // Get the principal authenticator
    SecurityLevel2::PrincipalAuthenticator_var
    var_principal_authenticator_oref =
    var_security_current_ref->principal_authenticator();
    char user_name[100] = "";
    char password[100] = "";
    char sys_password[100] = "";
    // Narrow to a BEA Principal Authenticator
    Tobj::PrincipalAuthenticator_var v_bea_pa =
    Tobj::PrincipalAuthenticator::_narrow(var_principal_authenticator_oref.in());
    // See what level of logon has been turned on
    Tobj::AuthType auth_type = v_bea_pa->get_auth_type();
    cout << "Auth type: ";
    switch (auth_type) {
    case Tobj::TOBJ_APPAUTH: cout << "TOBJ_APPAUTH"; break;
    case Tobj::TOBJ_SYSAUTH: cout << "TOBJ_SYSAUTH"; password[0] = '\0';
    break;
    case Tobj::TOBJ_NOAUTH: cout << "TOBJ_NOAUTH"; break;
    default: cout << "TOBJ_<unknown>"; break;
    cout << endl;
    cout << "Username: ";
    cin >> user_name;
    switch (auth_type) {
    case Tobj::TOBJ_APPAUTH: {
    cout << "User password: ";
    cin >> password;
    // fall through
    case Tobj::TOBJ_SYSAUTH: {
    cout << "App password: "; cin >> sys_password;
    break;
    default: {
    break;
    // now that we've got all the data necessary, logon
    Security::AuthenticationStatus status =
    v_bea_pa->logon(user_name,
    argv[0],
    sys_password,
    password,
    0); // user data
    cout << "Logon result: ";
    switch (status) {
    case Security::SecAuthSuccess: cout << "SecAuthSuccess"; break;
    case Security::SecAuthFailure: cout << "SecAuthFailure"; break;
    case Security::SecAuthContinue: cout << "SecAuthContinue"; break;
    case Security::SecAuthExpired: cout << "SecAuthExpired"; break;
    default: cout << "SecAuth<unknown>"; break;
    cout << endl;
    if (status != Security::SecAuthSuccess) {
    cerr << "Invalid password." << endl;
    exit(1);
    Here are the entries I added to the ubb config file:
    *RESOURCES
    SECURITY USER_AUTH
    AUTHSVC AUTHSVR
    *SERVERS
    AUTHSVR SRVGRP=SYS_GRP SRVID=6 RESTART=Y GRACE=600 MAXGEN=2 CLOPT="-A"
    I do not have the WLE Security Services installed (i.e. the package
    that provides SSL and crypto). Is this required? It's not clear to me
    from the documentation if this is required for username/password based
    authentication or not.
    Thanks for any help,
    Tim Bartley

    Hi Michael
    I am using SSL in my application. So that it asks for the certificate username
    and password while startup. But now i want to mention the username and password
    in weblogic.properties file itself. So that the client need not have to provide
    the username and password everytime. I am using weblogic server 5.1 version.
    How do i do this?
    Hope my question is clear. Please help.
    with regds
    siva
    Michael Young <[email protected]> wrote:
    Hi.
    It's not 100% clear to me what you are asking for. Do you want authentication
    turned off for
    your application? That will certainly turn off prompting for authentication
    information. You
    can set your ACL for your application (in your properties file) to allow
    everyone to execute
    it. Something like:
    weblogic.allow.execute.<myApplication>=everyone
    But maybe you want some kind of silent authentication so that not everyone
    can execute your
    app? I suppose you could pass authentication info in a cookie. I really
    don't know enough
    about your application, though.
    I suggest you post this question in weblogic.developer.interest.security
    - you have a better
    chance of getting an answer there for security related questions.
    Hope this helps.
    Michael
    siva wrote:
    Hi all,
    I have the following requirements. I have an application which asksfor the authentication
    information like username and password at first. The application isrunning in
    weblogic5.1 server. Is there a way where in weblogic.properties file,i mention
    the username and password so that the application will not ask forin the browser.
    please help. It's urgent.
    with regds
    siva--
    Developer Relations Engineer
    BEA Support

  • ASA EasyVPN with Secure unit authentication issues

    Hi everyone,
      We have a VPN setup with EasyVPN with a requirement of secure unit authentication.  We are having intermittent issues with it.  Sometimes the client ASA will boot up and appears to attempt negotiate the VPN connection. Other times, it comes up fine and the credentials can be entered to connect.  I also noticed that when we tried user authentication, the Cisco phone behind the ASA would never work, even though we had it's mac address in the bypass list on the client ASA.  If someone has an example configuration, would appreciate it. Since it works sometimes, I wouldn't think a firewall would be blocking the connection.  I can upload snippets of the configuration later if needed.
    Thanks,
    Bill Hendrix

    Found the issue.  Problem was in configuration of the IPSec IKEV1 connection profiles under:
    Remote Access VPN>Network (Client) Access IPSec Connection profiles.
    In the profile config under Advanced>IPsec>IKE Authentication.
    We had to uncheck the setting SEND "Enter Username and Password" prompt in XAUTH request.

  • Is there a way to block computer access with a password?

    After years of owning my Imac, I find that I need to put some sort of security password on it to keep others from accessing it when I'm not around. I know there must be a very simple way to do this, but I can't figure it out.Please help!

    If you are the only user of the machine and prefer to not shut it down frequently, perhaps setting a password requirement to come out of screensaver or sleep is the solution. As Howker suggests, this setting can be made in System Preferences > Security & Privacy > General.
    In conjunction with that, you can set a hot corner to quickly activate the screensaver whenever you choose, such as when you will be leaving your computer for a while. Those can be set in System Preferences > Desktop & Screensaver.

  • Project Server 2010 Web services access with Client Certificate Authentication

    We switched our SharePoint/Project Server 2010 farm to use client certificate authentication with Active Directory Federation Services (AD FS) 2.0, which is working without issue. We have some administrative Project Server Interface (PSI)
    web service applications that no longer connect to server with the new authentication configuration.  Our custom applications are using the WCF interface to access the public web services.
    Please let us know if it is possible to authenticate with AD FS 2.0 and then call
    Project Server web services. Any help or coding examples would be greatly appreciated.

    what is the error occurred when the custom PSI app connects?
    can you upload the ULS logs here for research?
    What is the user account format you specified in the code for authentication?
    For proper authorization, the “user logon account” in PWA for the user needs to be changed from domain\username to the claims token (e.g.
    'I:0#.w|mybusinessdomain\ewmccarty').
    It requires you to manually call the UpnLogon method of
    “Claims to Windows Token Service”. if (Thread.CurrentPrincipal.Identity is ClaimsIdentity)  
    {  var identity = (ClaimsIdentity)Thread.CurrentPrincipal.Identity;  }  
    if (Thread.CurrentPrincipal.Identity is ClaimsIdentity)
    var identity = (ClaimsIdentity)Thread.CurrentPrincipal.Identity;
    Than you need to extract UPN-Claim from the identity.
    Upload the verbose log if possible.
    Did you see this?
    http://msdn.microsoft.com/en-us/library/ff181538(v=office.14).aspx
    Cheers. Happy troubleshooting !!! Sriram E - MSFT Enterprise Project Management

  • Form function, with security password on ipad

    Hi.
    I've been trying to create an acrobat form with form filling function - for people to type in to during an event on their ipads. BUT we want it to have a secure password. The idea is that the people attending the events download the document prior to the event, but can't open it until they are given a password at the event. It means we can save the surprise.
    The problem is, I can't seem to save a PDF document, with a fillable form function that you can save, AND give it a password. Once i add the password function, this seems to stop the form being fillable, on the ipad. I've tried loads of different ways to write it, and different versions of acroabt from 9, X, & XI. Tested it out on Acrobat Reader and on ipad. Am I going mad?
    If it's not possible, are there any genius' (plural of genius?!) out they with an idea how to work round this. I don't think ipads can open .zip files either (had thought to password protect one of those!).
    Oh orginal form created in Indesign 5.5, but also reopened and save in Indesign CC.
    Thank you

    It doesn't work with Adobe Reader, which should be considered a bug, but it does work with Readdle's PDF Expert, which is not free.

  • Login MS Exchange with secure password

    Hi guys,
    I'm trying to use JavaMail to log into MS Exchange Server (Microsoft Exchange IMAP4rev1 server version 5.5.2653.23).
    The MS Exchange is configured for authentication.
    When I try to connect them, then I get an exception:
    "javax.mail.AuthenticationFailedException: Clear text passwords have been disabled for this protocol"
    Is there any way to create secured passwords for the login, or other solutions?
    Please help me.
    Thanks

    can someone help on this topic? it seems important enough !

  • Unable to connect to 5ghz network band with security/password

    Hi, I've recently set up a 5ghz network band on my router. The problem is I can't connect to it while it has password enabled. However, I am able to connect while it has no security/password. I would like to connect to the router using some kind of security or password
           I am using a Netgear Router WNDR3400v2.

    You need to contact Netgear for support, it's their router they would probably know how to support it best.

  • SPA (Secure Password Authentication) exchange server

    Good day,
    The service provider is using Windows Exchange with SPA.
    With Thunderbird, all I need to do is to select “Use Secure Authentication”.
    How can I do the something with Mail?
    Thanks,

    I tried to connect to POP3 Service using telnet. Below are the session details:
    +OK Microsoft Windows POP3 Service Version 1.0 <149352948@trinetradome> ready.
    user mayur
    -ERR SPA Required, use AUTH or APOP
    auth
    +OK
    NTLM
    auth ntlm
    +OK
    user mayur
    -ERR Command not valid
    user bWF5dXI=
    -ERR SPA Required, use AUTH or APOP
    auth ntlm
    +OK
    user bWF5dXI=
    -ERR Command not valid
    quit
    +OK Microsoft Windows POP3 Service Version 1.0 <149352948@trinetradome> signing
    off.
    As you can see, 1st user command gives an error SPA required. Then I inquired about AUTH and it says NTLM. Then I start NTLM session by AUTH NTLM.
    Then I tried to provide username both in plain text and in base64 encoding but both of them fail.
    Any ideas how to go about it. However the ultimate goal is to put it to work in Java :).

  • Require Logon Using Secure Password Authentication does not work with plaintextlogin on the server side

    Hi All ;
    We are in the middle of a migration Project but we stuck with this pop3 setting. Most of the mailboxes uses pop3 to connect Exchange 2010 with the setting spa + port 110 on the client side. We want to give same authentication options for the pop3 settings
    on 2013 side but when spa is selected the pop3 rejects the connection with the following error.
    Your e-mail server rejected your login with SPA.
    So both settings for pop3 protocol is same but the client cannot connect from 2013 server.
    Where can i enable this feature from Exchange 2013 .

    Hi,
    Please make sure that we have enabled Outlook Anywhere and 2 pop3 services in Exchange 2013.
    More details in the following article:
    Enable POP3 in Exchange 2013
    http://technet.microsoft.com/en-us/library/bb124934(v=exchg.150).aspx
    Please make sure port 110, port 587, port 25 are available.
    Please try to disable the NTLM authentication on Exchange 2013 server for testing.
    Please also try to run Outlook client under safe mode to avoid some AVs and add-ins.
    Please also try to re-create new profile to refresh the caches for testing.
    Thanks
    Mavis
    Mavis Huang
    TechNet Community Support

  • I forgot my rescue email and my security passwords. Help?

    I need to know my secruity passwords to verify my account to buy stuff with my itunes card i bought recently, but i do not know them. I tried reseting them but my rescue email has been written wrong, instead of 'hotmail' it said 'homail' therefore i'm useless at this point.
    Any help would be great, thanks.

    You won't be able to update your rescue email address until you can answer your questions, you will need to contact Support in your country to get the questions reset.
    Contacting Apple about account security : http://support.apple.com/kb/HT5699
    When they've been reset you can then use the steps half-way down this page to correct your rescue email address for potential future use : http://support.apple.com/kb/HT5312

Maybe you are looking for