Changeset 280ddc6


Ignore:
Timestamp:
Dec 25, 2003, 9:28:03 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:
3038d13
Parents:
3895e23
Message:
Added the 'ignorelogins' variable
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • ChangeLog

    r3895e23 r280ddc6  
    1010          the current view and switches to it.  i.e. "show me all the
    1111          messages that are not these"
     12        Added the 'ignorelogins' variable
    1213       
    13142.1.1-pre-2
  • owl.c

    r5c1393d r280ddc6  
    461461      /* if this message it on the puntlist, nuke it and continue */
    462462      if (owl_global_message_is_puntable(&g, m)) {
     463        owl_message_free(m);
     464        continue;
     465      }
     466
     467      /*  login or logout that should be ignored? */
     468      if (owl_global_is_ignorelogins(&g) && owl_message_is_loginout(m)) {
    463469        owl_message_free(m);
    464470        continue;
  • variable.c

    r4b660cc r280ddc6  
    142142               "but sent no login message, or a user is not present that sent no\n"
    143143               "logout message a pseudo login or logout message wil be created\n"),
     144
     145  OWLVAR_BOOL( "ignorelogins" /* %OwlVarStub */, 0,
     146               "Enable printing of login notifications",
     147               "When this is enabled, Owl will print login and logout notifications\n"
     148               "and AIM, zephyr, or other protocols.  If disabled Owl will not print\n"
     149               "login or logout notifications\n"),
    144150
    145151  OWLVAR_ENUM_FULL( "disable-ctrl-d" /* %OwlVarStub:lockout_ctrld */, 1,
Note: See TracChangeset for help on using the changeset viewer.