Changeset 5282ffd


Ignore:
Timestamp:
2011-01-22T17:29:55Z (13 years ago)
Author:
Wilmer van der Gaast <wilmer@…>
Branches:
master
Children:
02e06b5
Parents:
50c9996
Message:

MSN changed the @msn.com login server URL and/or broke the old one. :-(

Location:
protocols/msn
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • protocols/msn/soap.c

    r50c9996 r5282ffd  
    278278                sd->redirect = NULL;
    279279        }
     280        /* MS changed this URL and broke the old MSN-specific one. The generic
     281           one works, forwarding us to a msn.com URL that works. Takes an extra
     282           second, but that's better than not being able to log in at all. :-/
    280283        else if( g_str_has_suffix( ic->acc->user, "@msn.com" ) )
    281284                soap_req->url = g_strdup( SOAP_PASSPORT_SSO_URL_MSN );
    282285        else
    283                 soap_req->url = g_strdup( SOAP_PASSPORT_SSO_URL );
     286        */
     287        soap_req->url = g_strdup( SOAP_PASSPORT_SSO_URL );
    284288       
    285289        strncpy( pass, ic->acc->pass, MAX_PASSPORT_PWLEN );
  • protocols/msn/soap.h

    r50c9996 r5282ffd  
    6262
    6363#define SOAP_PASSPORT_SSO_URL "https://login.live.com/RST.srf"
    64 #define SOAP_PASSPORT_SSO_URL_MSN "https://msnia.login.live.com/pp800/RST.srf"
     64#define SOAP_PASSPORT_SSO_URL_MSN "https://msnia.login.live.com/pp900/RST.srf"
    6565#define MAX_PASSPORT_PWLEN 16
    6666
Note: See TracChangeset for help on using the changeset viewer.