Changeset 1db061d


Ignore:
Timestamp:
Oct 29, 2003, 11:02:51 AM (20 years ago)
Author:
James M. Kretchmar <kretch@mit.edu>
Branches:
master, barnowl_perlaim, debian, owl, release-1.10, release-1.4, release-1.5, release-1.6, release-1.7, release-1.8, release-1.9
Children:
252a5c2
Parents:
c7041b3
Message:
Set aim_ignorelogin_timer to 15 by default
Admin message on login/logout of AIM
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • ChangeLog

    rc7041b3 r1db061d  
    22
    332.0.12-pre-2
     4        Set aim_ignorelogin_timer to 15 by default
     5        Admin message on login/logout of AIM
    46        Fixed double quoting in smartzpunt
    57        Added timestamp to login/logout messages
  • aim.c

    rd63690b r1db061d  
    208208void owl_aim_successful_login(char *screenname)
    209209{
     210  char *buff;
    210211  owl_function_debugmsg("doing owl_aim_successful_login");
    211212  owl_global_set_aimloggedin(&g, screenname);
    212213  owl_global_set_doaimevents(&g); /* this should already be on */
    213214  owl_function_makemsg("%s logged in", screenname);
     215  buff=owl_sprintf("Logged in to AIM as %s", screenname);
     216  owl_function_adminmsg("", buff);
     217  owl_free(buff);
    214218
    215219  owl_function_debugmsg("Successful AIM login for %s", screenname);
     
    226230  /* need to check if it's connected first, I think */
    227231  logout(owl_global_get_aimsess(&g));
     232
     233  owl_function_adminmsg("", "Logged out of AIM");
     234
    228235  owl_global_set_aimnologgedin(&g);
    229236  owl_global_set_no_doaimevents(&g);
  • variable.c

    r12c35df r1db061d  
    250250                 "than 60 columns, as a courtesy to recipients.\n"),
    251251
    252   OWLVAR_INT( "aim_ignorelogin_timer" /* %OwlVarStub */, 0,
     252  OWLVAR_INT( "aim_ignorelogin_timer" /* %OwlVarStub */, 15,
    253253              "number of seconds after AIM login to ignore login messages",
    254254              "This specifies the number of seconds to wait after an\n"
    255255              "AIM login before allowing the recipt of AIM login notifications.\n"
    256               "By default this is set to 0 and all login notifications are\n"
    257               "viewed immediately.  If you dislike this behavior try setting\n"
    258               "the value to 20 instead.\n"),
     256              "By default this is set to 15.  If you would like to view login\n"
     257              "notifications of buddies as soon as you login, set it to 0 instead."),
    259258
    260259             
Note: See TracChangeset for help on using the changeset viewer.