Changeset d023c25
- Timestamp:
- Oct 12, 2002, 10:59:11 AM (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:
- 2527615
- Parents:
- be97670
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
ChangeLog
rb45293f rd023c25 3 3 1.2.7 4 4 Outgoing messages now go through the config for formatting 5 Zaway now makes an outgoing message, instead of an admin message 5 6 6 7 1.2.6 -
zephyr.c
r2adaf1d rd023c25 339 339 if (!strcasecmp(owl_message_get_opcode(m), "ping")) return; 340 340 if (!strcasecmp(owl_message_get_opcode(m), "auto")) return; 341 if (!strcasecmp(owl_message_get_ notice(m)->z_message, "Automated reply:")) return;341 if (!strcasecmp(owl_message_get_zsig(m), "Automated reply:")) return; 342 342 if (!strcasecmp(owl_message_get_sender(m), ZGetSender())) return; 343 /* add one to not send to ourselves */344 343 345 344 send_zephyr("", … … 351 350 352 351 /* display the message as an admin message in the receive window */ 353 tmpbuff = owl_sprintf("Message sent to %s", owl_message_get_sender(m)); 354 owl_function_adminmsg(tmpbuff, owl_global_get_zaway_msg(&g)); 352 tmpbuff = owl_sprintf("zwrite -c %s -i %s %s", 353 owl_message_get_class(m), 354 owl_message_get_instance(m), 355 owl_message_get_sender(m)); 356 owl_function_make_outgoing_zephyr(owl_global_get_zaway_msg(&g), tmpbuff, "Automated reply:"); 355 357 owl_free(tmpbuff); 356 358 }
Note: See TracChangeset
for help on using the changeset viewer.