Changeset 49d467c
- Timestamp:
- Oct 20, 2003, 1:45:23 AM (21 years ago)
- 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:
- 269ed34
- Parents:
- 4664c96
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
ChangeLog
r4664c96 r49d467c 1 1 $Id$ 2 2 3 2.0.10-pre-1 4 Allow 'hostname' in filters. 5 3 6 2.0.9 4 7 Added the 'fancylines' variable. -
commands.c
rf17bff98 r49d467c 482 482 " realm - zephyr realm\n" 483 483 " body - message body\n" 484 " hostname - hostname of sending host\n" 484 485 " type - message type (zephyr, aim, admin)\n" 485 486 " direction - either 'in' 'out' or 'none'\n" -
filter.c
r09489b89 r49d467c 68 68 !strcasecmp(argv[i], "type") || 69 69 !strcasecmp(argv[i], "direction") || 70 !strcasecmp(argv[i], "hostname") || 70 71 !strcasecmp(argv[i], "login")) { 71 72 regexstr=owl_util_substitute(argv[i+1], "%me%", owl_zephyr_get_sender()); … … 162 163 } else if (!strcasecmp(field, "type")) { 163 164 match=owl_message_type_to_string(m); 165 } else if (!strcasecmp(field, "hostname")) { 166 match=owl_message_get_hostname(m); 164 167 } else if (!strcasecmp(field, "direction")) { 165 168 if (owl_message_is_direction_out(m)) { -
owl.h
r4664c96 r49d467c 19 19 static const char owl_h_fileIdent[] = "$Id$"; 20 20 21 #define OWL_VERSION 2.0. 922 #define OWL_VERSION_STRING "2.0. 9"21 #define OWL_VERSION 2.0.10-pre-1 22 #define OWL_VERSION_STRING "2.0.10-pre-1" 23 23 24 24 /* Feature that is being tested to redirect stderr through a pipe.
Note: See TracChangeset
for help on using the changeset viewer.