# HG changeset patch # User Mark Doliner # Date 1091417051 0 # Node ID 9981fcce85c16ad95979fb2fe41cb392e2503c1b # Parent bc2079a32fd906bd60def6a5bfd9350ed107ef56 [gaim-migrate @ 10489] Thanks to Stu for this piece o' eight committer: Tailor Script diff -r bc2079a32fd9 -r 9981fcce85c1 ChangeLog --- a/ChangeLog Mon Aug 02 03:21:32 2004 +0000 +++ b/ChangeLog Mon Aug 02 03:24:11 2004 +0000 @@ -36,6 +36,9 @@ * Prevent (null) or an empty string from being logged as the sender's name if the sender no longer has an alias because the account is signed off (Kevin Stange) + * The auto-reconnect plugin will no longer attempt to reconnect an + MSN account if you were disconnected because you signed on from + another location (Stu Tomlinson) version 0.80 (07/15/2004): New Features: diff -r bc2079a32fd9 -r 9981fcce85c1 src/protocols/msn/cmdproc.c --- a/src/protocols/msn/cmdproc.c Mon Aug 02 03:21:32 2004 +0000 +++ b/src/protocols/msn/cmdproc.c Mon Aug 02 03:24:11 2004 +0000 @@ -335,6 +335,7 @@ case MSN_ERROR_MISC: tmp = _("Miscellaneous error"); break; case MSN_ERROR_SIGNOTHER: + gc->wants_to_die = TRUE; tmp = _("You have signed on from another location."); break; case MSN_ERROR_SERVDOWN: tmp = _("The MSN servers are going down temporarily."); break;