- Timestamp:
- 2010-11-13T13:01:40Z (14 years ago)
- Branches:
- master
- Children:
- 6b96de6
- Parents:
- 70d7795
- Location:
- protocols/msn
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
protocols/msn/msn.c
r70d7795 red0589c 331 331 imcb_log( ic, "Warning: Persistent name changes for this account have to be done " 332 332 "in the profile. BitlBee doesn't currently support this." ); 333 334 if( md->flags & MSN_EMAIL_UNVERIFIED ) 335 imcb_log( ic, "Warning: Your e-mail address is unverified. MSN doesn't allow " 336 "changing your display name until your e-mail address if verified." ); 333 337 334 338 msn_soap_addressbook_set_display_name( ic, value ); -
protocols/msn/msn.h
r70d7795 red0589c 82 82 MSN_DONE_ADL = 4, 83 83 MSN_REAUTHING = 8, 84 MSN_EMAIL_UNVERIFIED = 16, 84 85 } msn_flags_t; 85 86 -
protocols/msn/ns.c
r70d7795 red0589c 278 278 else if( strcmp( cmd[2], "OK" ) == 0 ) 279 279 { 280 /* If the number after the handle is 0, the e-mail 281 address is unverified, which means we can't change 282 the display name. */ 283 if( cmd[4][0] == '0' ) 284 md->flags |= MSN_EMAIL_UNVERIFIED; 285 280 286 imcb_log( ic, "Authenticated, getting buddy list" ); 281 287 msn_soap_memlist_request( ic ); … … 870 876 871 877 if( ( md->flags & MSN_DONE_ADL ) && ( md->flags & MSN_GOT_PROFILE ) ) 872 return msn_ns_set_display_name( ic, set_getstr( &ic->acc->set, "display_name" ) ); 873 else 874 return 1; 875 } 878 { 879 if( md->flags & MSN_EMAIL_UNVERIFIED ) 880 imcb_connected( ic ); 881 else 882 return msn_ns_set_display_name( ic, set_getstr( &ic->acc->set, "display_name" ) ); 883 } 884 885 return 1; 886 }
Note: See TracChangeset
for help on using the changeset viewer.