Changeset e22f27c


Ignore:
Timestamp:
Feb 21, 2004, 2:35:29 PM (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:
debb15d
Parents:
5d365f6
Message:
The 'loglogins' variable now controls whether login/logout messages
are logged.  It is off by default.  For now this affects only AIM
messages, later zephyr login/logout messages will also be logged if
this is set to 'on'
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • ChangeLog

    r5d365f6 re22f27c  
    55        The 'personalbell' variable can now be set to 'on' 'off' or
    66          the name of a filter to match against
     7        The 'loglogins' variable now controls whether login/logout
     8          messages are logged.  It is off by default.  For now this
     9          affects only AIM messages, later zephyr login/logout messages
     10          will also be logged if this is set to 'on'
    711       
    8122.1.4
  • logging.c

    r421c286f re22f27c  
    202202
    203203  if (owl_global_get_loggingdirection(&g)==OWL_LOGGING_DIRECTION_OUT) return;
     204
     205  /* skip login/logout messages if appropriate */
     206  if (!owl_global_is__loglogins(&g) && owl_message_is_loginout(m)) return;
    204207     
    205208  /* check for nolog */
  • variable.c

    r5d365f6 re22f27c  
    148148               "Enable printing of login notifications",
    149149               "When this is enabled, Owl will print login and logout notifications\n"
     150               "for AIM, zephyr, or other protocols.  If disabled Owl will not print\n"
     151               "login or logout notifications.\n"),
     152
     153  OWLVAR_BOOL( "loglogins" /* %OwlVarStub */, 0,
     154               "Enable logging of login notifications",
     155               "When this is enabled, Owl will login login and logout notifications\n"
    150156               "for AIM, zephyr, or other protocols.  If disabled Owl will not print\n"
    151157               "login or logout notifications.\n"),
Note: See TracChangeset for help on using the changeset viewer.