diff options
author | Wilmer van der Gaast <wilmer@gaast.net> | 2010-11-13 13:01:40 +0000 |
---|---|---|
committer | Wilmer van der Gaast <wilmer@gaast.net> | 2010-11-13 13:01:40 +0000 |
commit | ed0589ce0af33a8e199b6bc75f55e45904c85d1c (patch) | |
tree | ab1715fca6a3e01bcf0795fbcb3351d09adb03a5 /protocols/msn/msn.c | |
parent | 70d779590840164e3bda1c183ade00872d9786c2 (diff) |
Fixed issue with logging in to unverified MSN accounts.
Diffstat (limited to 'protocols/msn/msn.c')
-rw-r--r-- | protocols/msn/msn.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/protocols/msn/msn.c b/protocols/msn/msn.c index 161f7590..45185393 100644 --- a/protocols/msn/msn.c +++ b/protocols/msn/msn.c @@ -331,6 +331,10 @@ static char *set_eval_display_name( set_t *set, char *value ) imcb_log( ic, "Warning: Persistent name changes for this account have to be done " "in the profile. BitlBee doesn't currently support this." ); + if( md->flags & MSN_EMAIL_UNVERIFIED ) + imcb_log( ic, "Warning: Your e-mail address is unverified. MSN doesn't allow " + "changing your display name until your e-mail address if verified." ); + msn_soap_addressbook_set_display_name( ic, value ); return msn_ns_set_display_name( ic, value ) ? value : NULL; } |