Changeset 280ddc6 for owl.c


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
File:
1 edited

Legend:

Unmodified
Added
Removed
  • 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;
Note: See TracChangeset for help on using the changeset viewer.