Changeset 5a6e6b9
- Timestamp:
- Sep 23, 2002, 3:10:05 PM (22 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:
- 601a9e0
- Parents:
- bde7714
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
ChangeLog
rbde7714 r5a6e6b9 22 22 update .zephyr.subs by default. If either is given the '-t' 23 23 (for "temporary") option the .zephyr.subs will not be updated 24 Turned off beeping for hitting the top or bottom of the list of 25 messages 26 Made daemon.webzephyr a special case for smartstrip 27 Added 'out' as a default filter for outgoing messages 24 28 25 29 1.2.3 -
functions.c
rbde7714 r5a6e6b9 247 247 skip_deleted?" non-deleted":"", 248 248 filter?" in ":"", filter?filter:""); 249 if (!skip_deleted) owl_function_beep();249 /* if (!skip_deleted) owl_function_beep(); */ 250 250 } 251 251 … … 295 295 skip_deleted?" non-deleted":"", 296 296 filter?" in ":"", filter?filter:""); 297 if (!skip_deleted) owl_function_beep();297 /* if (!skip_deleted) owl_function_beep(); */ 298 298 } 299 299 -
owl.c
r65fc0900 r5a6e6b9 157 157 f=malloc(sizeof(owl_filter)); 158 158 owl_filter_init_fromstring(f, "reply-lockout", "class ^noc or class ^mail$"); 159 owl_list_append_element(owl_global_get_filterlist(&g), f); 160 161 f=malloc(sizeof(owl_filter)); 162 owl_filter_init_fromstring(f, "out", "direction ^out$"); 159 163 owl_list_append_element(owl_global_get_filterlist(&g), f); 160 164 -
util.c
rf9c43ae r5a6e6b9 425 425 426 426 char *smartstripped_user(char *in) { 427 /* strip out the instance from a zsender's principal. 428 * Preserves the realm if present.429 * thecaller must free the return */427 /* strip out the instance from a zsender's principal. Preserves the 428 * realm if present. daemon.webzephyr is a special case. The 429 * caller must free the return */ 430 430 431 431 char *ptr, *realm, *out; … … 436 436 ptr=strchr(in, '.'); 437 437 if (!strchr(in, '/') && !ptr) { 438 /* no '/' and no '.' */ 438 439 return(out); 439 440 } 440 441 if (ptr && strchr(in, '@') && (ptr > strchr(in, '@'))) { 442 /* There's a '.' but it's in the realm */ 441 443 return(out); 442 444 } 445 if (!strncasecmp(in, "daemon.webzephyr", strlen("daemon.webzephyr"))) { 446 return(out); 447 } 448 443 449 444 450 /* remove the realm from ptr, but hold on to it */
Note: See TracChangeset
for help on using the changeset viewer.