Changeset 1db061d
- Timestamp:
- Oct 29, 2003, 11:02:51 AM (19 years ago)
- Branches:
- master, barnowl_perlaim, debian, owl, release-1.4, release-1.5, release-1.6, release-1.7, release-1.8, release-1.9
- Children:
- 252a5c2
- Parents:
- c7041b3
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
ChangeLog
rc7041b3 r1db061d 2 2 3 3 2.0.12-pre-2 4 Set aim_ignorelogin_timer to 15 by default 5 Admin message on login/logout of AIM 4 6 Fixed double quoting in smartzpunt 5 7 Added timestamp to login/logout messages -
aim.c
rd63690b r1db061d 208 208 void owl_aim_successful_login(char *screenname) 209 209 { 210 char *buff; 210 211 owl_function_debugmsg("doing owl_aim_successful_login"); 211 212 owl_global_set_aimloggedin(&g, screenname); 212 213 owl_global_set_doaimevents(&g); /* this should already be on */ 213 214 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); 214 218 215 219 owl_function_debugmsg("Successful AIM login for %s", screenname); … … 226 230 /* need to check if it's connected first, I think */ 227 231 logout(owl_global_get_aimsess(&g)); 232 233 owl_function_adminmsg("", "Logged out of AIM"); 234 228 235 owl_global_set_aimnologgedin(&g); 229 236 owl_global_set_no_doaimevents(&g); -
variable.c
r12c35df r1db061d 250 250 "than 60 columns, as a courtesy to recipients.\n"), 251 251 252 OWLVAR_INT( "aim_ignorelogin_timer" /* %OwlVarStub */, 0,252 OWLVAR_INT( "aim_ignorelogin_timer" /* %OwlVarStub */, 15, 253 253 "number of seconds after AIM login to ignore login messages", 254 254 "This specifies the number of seconds to wait after an\n" 255 255 "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."), 259 258 260 259
Note: See TracChangeset
for help on using the changeset viewer.