source: functions.c @ 72836b5

barnowl_perlaimdebianowlrelease-1.10release-1.4release-1.5release-1.6release-1.7release-1.8release-1.9
Last change on this file since 72836b5 was 72836b5, checked in by James M. Kretchmar <kretch@mit.edu>, 20 years ago
Don't print extra new lines in popless_file
  • Property mode set to 100644
File size: 90.5 KB
Line 
1#include <stdio.h>
2#include <stdlib.h>
3#include <unistd.h>
4#include <signal.h>
5#include <string.h>
6#include <time.h>
7#include <sys/types.h>
8#include <sys/stat.h>
9#include <sys/wait.h>
10#include <errno.h>
11#include <signal.h>
12#include "owl.h"
13
14static const char fileIdent[] = "$Id$";
15
16void owl_function_noop(void)
17{
18  return;
19}
20
21char *owl_function_command(char *cmdbuff)
22{
23  owl_function_debugmsg("executing command: %s", cmdbuff);
24  return owl_cmddict_execute(owl_global_get_cmddict(&g), 
25                             owl_global_get_context(&g), cmdbuff);
26}
27
28void owl_function_command_norv(char *cmdbuff)
29{
30  char *rv;
31  rv=owl_function_command(cmdbuff);
32  if (rv) owl_free(rv);
33}
34
35void owl_function_command_alias(char *alias_from, char *alias_to)
36{
37  owl_cmddict_add_alias(owl_global_get_cmddict(&g), alias_from, alias_to);
38}
39
40owl_cmd *owl_function_get_cmd(char *name)
41{
42  return owl_cmddict_find(owl_global_get_cmddict(&g), name);
43}
44
45void owl_function_show_commands()
46{
47  owl_list l;
48  owl_fmtext fm;
49
50  owl_fmtext_init_null(&fm);
51  owl_fmtext_append_bold(&fm, "Commands:  ");
52  owl_fmtext_append_normal(&fm, "(use 'show command <name>' for details)\n");
53  owl_cmddict_get_names(owl_global_get_cmddict(&g), &l);
54  owl_fmtext_append_list(&fm, &l, "\n", owl_function_cmd_describe);
55  owl_fmtext_append_normal(&fm, "\n");
56  owl_function_popless_fmtext(&fm);
57  owl_cmddict_namelist_free(&l);
58  owl_fmtext_free(&fm);
59}
60
61void owl_function_show_view(char *viewname)
62{
63  owl_view *v;
64  owl_fmtext fm;
65
66  /* we only have the one view right now */
67  v=owl_global_get_current_view(&g);
68  if (viewname && strcmp(viewname, owl_view_get_name(v))) {
69    owl_function_error("No view named '%s'", viewname);
70    return;
71  }
72
73  owl_fmtext_init_null(&fm);
74  owl_view_to_fmtext(v, &fm);
75  owl_function_popless_fmtext(&fm);
76  owl_fmtext_free(&fm);
77}
78
79void owl_function_show_styles() {
80  owl_list l;
81  owl_fmtext fm;
82
83  owl_fmtext_init_null(&fm);
84  owl_fmtext_append_bold(&fm, "Styles:\n");
85  owl_global_get_style_names(&g, &l);
86  owl_fmtext_append_list(&fm, &l, "\n", owl_function_style_describe);
87  owl_fmtext_append_normal(&fm, "\n");
88  owl_function_popless_fmtext(&fm);
89  owl_list_free_all(&l, owl_free);
90  owl_fmtext_free(&fm);
91}
92
93char *owl_function_style_describe(void *name) {
94  char *desc, *s;
95  owl_style *style;
96  style = owl_global_get_style_by_name(&g, name);
97  if (style) {
98    desc = owl_style_get_description(style);
99  } else {
100    desc = "???";
101  }
102  s = owl_sprintf("%-20s - %s%s", name, 
103                  0==owl_style_validate(style)?"":"[INVALID] ",
104                  desc);
105  return s;
106}
107
108char *owl_function_cmd_describe(void *name)
109{
110  owl_cmd *cmd = owl_cmddict_find(owl_global_get_cmddict(&g), name);
111  if (cmd) return owl_cmd_describe(cmd);
112  else return(NULL);
113}
114
115void owl_function_show_command(char *name)
116{
117  owl_function_help_for_command(name);
118}
119
120void owl_function_adminmsg(char *header, char *body)
121{
122  owl_message *m;
123  int followlast;
124
125  followlast=owl_global_should_followlast(&g);
126  m=owl_malloc(sizeof(owl_message));
127  owl_message_create_admin(m, header, body);
128  owl_messagelist_append_element(owl_global_get_msglist(&g), m);
129  owl_view_consider_message(owl_global_get_current_view(&g), m);
130
131  if (followlast) owl_function_lastmsg_noredisplay();
132
133  owl_mainwin_redisplay(owl_global_get_mainwin(&g));
134  if (owl_popwin_is_active(owl_global_get_popwin(&g))) {
135    owl_popwin_refresh(owl_global_get_popwin(&g));
136  }
137 
138  wnoutrefresh(owl_global_get_curs_recwin(&g));
139  owl_global_set_needrefresh(&g);
140}
141
142void owl_function_make_outgoing_zephyr(char *body, char *zwriteline, char *zsig)
143{
144  owl_message *m;
145  int followlast;
146  owl_zwrite z;
147 
148  followlast=owl_global_should_followlast(&g);
149
150  /* create a zwrite for the purpose of filling in other message fields */
151  owl_zwrite_create_from_line(&z, zwriteline);
152
153  /* create the message */
154  m=owl_malloc(sizeof(owl_message));
155  owl_message_create_from_zwriteline(m, zwriteline, body, zsig);
156
157  /* add it to the global list and current view */
158  owl_messagelist_append_element(owl_global_get_msglist(&g), m);
159  owl_view_consider_message(owl_global_get_current_view(&g), m);
160
161  if (followlast) owl_function_lastmsg_noredisplay();
162
163  owl_mainwin_redisplay(owl_global_get_mainwin(&g));
164  if (owl_popwin_is_active(owl_global_get_popwin(&g))) {
165    owl_popwin_refresh(owl_global_get_popwin(&g));
166  }
167 
168  wnoutrefresh(owl_global_get_curs_recwin(&g));
169  owl_global_set_needrefresh(&g);
170  owl_zwrite_free(&z);
171}
172
173int owl_function_make_outgoing_aim(char *body, char *to)
174{
175  owl_message *m;
176  int followlast;
177
178
179  if (!owl_global_is_aimloggedin(&g)) {
180    return(-1);
181  }
182 
183  followlast=owl_global_should_followlast(&g);
184
185  /* create the message */
186  m=owl_malloc(sizeof(owl_message));
187  owl_message_create_aim(m,
188                         owl_global_get_aim_screenname(&g),
189                         to,
190                         body,
191                         OWL_MESSAGE_DIRECTION_OUT,
192                         0);
193
194  /* add it to the global list and current view */
195  owl_messagelist_append_element(owl_global_get_msglist(&g), m);
196  owl_view_consider_message(owl_global_get_current_view(&g), m);
197
198  if (followlast) owl_function_lastmsg_noredisplay();
199
200  owl_mainwin_redisplay(owl_global_get_mainwin(&g));
201  if (owl_popwin_is_active(owl_global_get_popwin(&g))) {
202    owl_popwin_refresh(owl_global_get_popwin(&g));
203  }
204 
205  wnoutrefresh(owl_global_get_curs_recwin(&g));
206  owl_global_set_needrefresh(&g);
207  return(0);
208}
209
210int owl_function_make_outgoing_loopback(char *body)
211{
212  owl_message *m;
213  int followlast;
214
215  followlast=owl_global_should_followlast(&g);
216
217  /* create the message */
218  m=owl_malloc(sizeof(owl_message));
219  owl_message_create_loopback(m, body);
220  owl_message_set_direction_out(m);
221
222  /* add it to the global list and current view */
223  owl_messagelist_append_element(owl_global_get_msglist(&g), m);
224  owl_view_consider_message(owl_global_get_current_view(&g), m);
225
226  if (followlast) owl_function_lastmsg_noredisplay();
227
228  owl_mainwin_redisplay(owl_global_get_mainwin(&g));
229  if (owl_popwin_is_active(owl_global_get_popwin(&g))) {
230    owl_popwin_refresh(owl_global_get_popwin(&g));
231  }
232 
233  wnoutrefresh(owl_global_get_curs_recwin(&g));
234  owl_global_set_needrefresh(&g);
235  return(0);
236}
237
238void owl_function_zwrite_setup(char *line)
239{
240  owl_editwin *e;
241  char buff[1024];
242  owl_zwrite z;
243  int ret;
244
245  /* check the arguments */
246  ret=owl_zwrite_create_from_line(&z, line);
247  if (ret) {
248    owl_function_error("Error in zwrite arugments");
249    owl_zwrite_free(&z);
250    return;
251  }
252
253  /* send a ping if necessary */
254  if (owl_global_is_txping(&g)) {
255    owl_zwrite_send_ping(&z);
256  }
257  owl_zwrite_free(&z);
258
259  /* create and setup the editwin */
260  e=owl_global_get_typwin(&g);
261  owl_editwin_new_style(e, OWL_EDITWIN_STYLE_MULTILINE, owl_global_get_msg_history(&g));
262
263  if (!owl_global_get_lockout_ctrld(&g)) {
264    owl_function_makemsg("Type your zephyr below.  End with ^D or a dot on a line by itself.  ^C will quit.");
265  } else {
266    owl_function_makemsg("Type your zephyr below.  End with a dot on a line by itself.  ^C will quit.");
267  }
268
269  owl_editwin_clear(e);
270  owl_editwin_set_dotsend(e);
271  strcpy(buff, "----> ");
272  strcat(buff, line);
273  strcat(buff, "\n");
274  owl_editwin_set_locktext(e, buff);
275
276  /* make it active */
277  owl_global_set_typwin_active(&g);
278
279  owl_global_set_buffercommand(&g, line);
280}
281
282void owl_function_aimwrite_setup(char *line)
283{
284  owl_editwin *e;
285  char buff[1024];
286
287  /* check the arguments */
288
289  /* create and setup the editwin */
290  e=owl_global_get_typwin(&g);
291  owl_editwin_new_style(e, OWL_EDITWIN_STYLE_MULTILINE, owl_global_get_msg_history(&g));
292
293  if (!owl_global_get_lockout_ctrld(&g)) {
294    owl_function_makemsg("Type your message below.  End with ^D or a dot on a line by itself.  ^C will quit.");
295  } else {
296    owl_function_makemsg("Type your message below.  End with a dot on a line by itself.  ^C will quit.");
297  }
298
299  owl_editwin_clear(e);
300  owl_editwin_set_dotsend(e);
301  strcpy(buff, "----> ");
302  strcat(buff, line);
303  strcat(buff, "\n");
304  owl_editwin_set_locktext(e, buff);
305
306  /* make it active */
307  owl_global_set_typwin_active(&g);
308
309  owl_global_set_buffercommand(&g, line);
310}
311
312void owl_function_loopwrite_setup()
313{
314  owl_editwin *e;
315
316  /* create and setup the editwin */
317  e=owl_global_get_typwin(&g);
318  owl_editwin_new_style(e, OWL_EDITWIN_STYLE_MULTILINE, owl_global_get_msg_history(&g));
319
320  if (!owl_global_get_lockout_ctrld(&g)) {
321    owl_function_makemsg("Type your message below.  End with ^D or a dot on a line by itself.  ^C will quit.");
322  } else {
323    owl_function_makemsg("Type your message below.  End with a dot on a line by itself.  ^C will quit.");
324  }
325
326  owl_editwin_clear(e);
327  owl_editwin_set_dotsend(e);
328  owl_editwin_set_locktext(e, "----> loopwrite\n");
329
330  /* make it active */
331  owl_global_set_typwin_active(&g);
332
333  owl_global_set_buffercommand(&g, "loopwrite");
334}
335
336/* send, log and display an outgoing zephyr.  If 'msg' is NULL
337 * the message is expected to be set from the zwrite line itself
338 */
339void owl_function_zwrite(char *line, char *msg)
340{
341  owl_zwrite z;
342  int i, j;
343  char *mymsg;
344
345  /* create the zwrite and send the message */
346  owl_zwrite_create_from_line(&z, line);
347  if (msg) {
348    owl_zwrite_set_message(&z, msg);
349  }
350
351  owl_zwrite_send_message(&z);
352  owl_function_makemsg("Waiting for ack...");
353
354  mymsg=owl_zwrite_get_message(&z);
355
356  /* display the message as an outgoing message in the receive window */
357  if (owl_global_is_displayoutgoing(&g) && owl_zwrite_is_personal(&z)) {
358    owl_function_make_outgoing_zephyr(mymsg, line, owl_zwrite_get_zsig(&z));
359  }
360
361  /* log it if we have logging turned on */
362  if (owl_global_is_logging(&g) && owl_zwrite_is_personal(&z)) {
363    j=owl_zwrite_get_numrecips(&z);
364    for (i=0; i<j; i++) {
365      owl_log_outgoing_zephyr(owl_zwrite_get_recip_n(&z, i), mymsg);
366    }
367  }
368
369  /* free the zwrite */
370  owl_zwrite_free(&z);
371}
372
373/* send, log and display an outgoing zcrypt zephyr.  If 'msg' is NULL
374 * the message is expected to be set from the zwrite line itself
375 */
376void owl_function_zcrypt(char *line, char *msg)
377{
378  owl_zwrite z;
379  int i, j;
380  char *mymsg;
381  char *cryptmsg;
382#ifdef OWL_ENABLE_ZCRYPT
383  int ret;
384#endif
385
386  /* create the zwrite and send the message */
387  owl_zwrite_create_from_line(&z, line);
388  if (msg) {
389    owl_zwrite_set_message(&z, msg);
390  }
391
392  mymsg=owl_zwrite_get_message(&z);
393#ifdef OWL_ENABLE_ZCRYPT
394  cryptmsg=owl_malloc(strlen(mymsg)*4);
395  ret=owl_zcrypt_encrypt(cryptmsg, mymsg, owl_zwrite_get_class(&z), owl_zwrite_get_instance(&z));
396  if (ret) {
397    owl_function_error("Error in zcrypt, possibly no key found.  Message not sent.");
398    owl_function_beep();
399    owl_free(cryptmsg);
400    return;
401  }
402#else
403  cryptmsg=owl_strdup(mymsg);
404#endif
405
406  owl_zwrite_set_message(&z, cryptmsg);
407  owl_zwrite_set_opcode(&z, "crypt");
408  mymsg=cryptmsg;
409   
410  owl_zwrite_send_message(&z);
411  owl_function_makemsg("Waiting for ack...");
412
413  /* display the message as an outgoing message in the receive window */
414  if (owl_global_is_displayoutgoing(&g) && owl_zwrite_is_personal(&z)) {
415    owl_function_make_outgoing_zephyr(mymsg, line, owl_zwrite_get_zsig(&z));
416  }
417
418  /* log it if we have logging turned on */
419  if (owl_global_is_logging(&g) && owl_zwrite_is_personal(&z)) {
420    j=owl_zwrite_get_numrecips(&z);
421    for (i=0; i<j; i++) {
422      owl_log_outgoing_zephyr(owl_zwrite_get_recip_n(&z, i), mymsg);
423    }
424  }
425
426  /* free the zwrite */
427  owl_free(cryptmsg);
428  owl_zwrite_free(&z);
429}
430
431void owl_function_aimwrite(char *to)
432{
433  int ret;
434  char *msg, *format_msg;
435
436  /* make a formatted copy of the message */
437  msg=owl_editwin_get_text(owl_global_get_typwin(&g));
438  format_msg=owl_strdup(msg);
439  owl_text_wordunwrap(format_msg);
440 
441  /* send the message */
442  ret=owl_aim_send_im(to, format_msg);
443  if (!ret) {
444    owl_function_makemsg("AIM message sent.");
445  } else {
446    owl_function_error("Could not send AIM message.");
447  }
448
449  /* display the message as an outgoing message in the receive window */
450  if (owl_global_is_displayoutgoing(&g)) {
451    owl_function_make_outgoing_aim(msg, to);
452  }
453
454  /* log it if we have logging turned on */
455  if (owl_global_is_logging(&g)) {
456    owl_log_outgoing_aim(to, msg);
457  }
458
459  owl_free(format_msg);
460}
461
462void owl_function_loopwrite()
463{
464  owl_message *m;
465
466  /* create a message and put it on the message queue.  This simulates
467   * an incoming message */
468  m=owl_malloc(sizeof(owl_message));
469  owl_message_create_loopback(m, owl_editwin_get_text(owl_global_get_typwin(&g)));
470  owl_message_set_direction_in(m);
471  owl_global_messagequeue_addmsg(&g, m);
472
473  /* display the message as an outgoing message in the receive window */
474  if (owl_global_is_displayoutgoing(&g)) {
475    owl_function_make_outgoing_loopback(owl_editwin_get_text(owl_global_get_typwin(&g)));
476  }
477
478  /* fake a makemsg */
479  owl_function_makemsg("loopback message sent");
480
481  /* log it if we have logging turned on */
482  if (owl_global_is_logging(&g)) {
483    owl_log_outgoing_loopback(owl_editwin_get_text(owl_global_get_typwin(&g)));
484  }
485}
486
487/* If filter is non-null, looks for the next message matching
488 * that filter.  If skip_deleted, skips any deleted messages.
489 * If last_if_none, will stop at the last message in the view
490 * if no matching messages are found.  */
491void owl_function_nextmsg_full(char *filter, int skip_deleted, int last_if_none)
492{
493  int curmsg, i, viewsize, found;
494  owl_view *v;
495  owl_filter *f = NULL;
496  owl_message *m;
497
498  v=owl_global_get_current_view(&g);
499
500  if (filter) {
501    f=owl_global_get_filter(&g, filter);
502    if (!f) {
503      owl_function_error("No %s filter defined", filter);
504      return;
505    }
506  }
507
508  curmsg=owl_global_get_curmsg(&g);
509  viewsize=owl_view_get_size(v);
510  found=0;
511
512  /* just check to make sure we're in bounds... */
513  if (curmsg>viewsize-1) curmsg=viewsize-1;
514  if (curmsg<0) curmsg=0;
515
516  for (i=curmsg+1; i<viewsize; i++) {
517    m=owl_view_get_element(v, i);
518    if (skip_deleted && owl_message_is_delete(m)) continue;
519    if (f && !owl_filter_message_match(f, m)) continue;
520    found = 1;
521    break;
522  }
523
524  if (i>owl_view_get_size(v)-1) i=owl_view_get_size(v)-1;
525
526  if (!found) {
527    owl_function_makemsg("already at last%s message%s%s",
528                         skip_deleted?" non-deleted":"",
529                         filter?" in ":"", filter?filter:"");
530    /* if (!skip_deleted) owl_function_beep(); */
531  }
532
533  if (last_if_none || found) {
534    owl_global_set_curmsg(&g, i);
535    owl_function_calculate_topmsg(OWL_DIRECTION_DOWNWARDS);
536    owl_mainwin_redisplay(owl_global_get_mainwin(&g));
537    owl_global_set_direction_downwards(&g);
538  }
539}
540
541void owl_function_prevmsg_full(char *filter, int skip_deleted, int first_if_none)
542{
543  int curmsg, i, viewsize, found;
544  owl_view *v;
545  owl_filter *f = NULL;
546  owl_message *m;
547
548  v=owl_global_get_current_view(&g);
549
550  if (filter) {
551    f=owl_global_get_filter(&g, filter);
552    if (!f) {
553      owl_function_error("No %s filter defined", filter);
554      return;
555    }
556  }
557
558  curmsg=owl_global_get_curmsg(&g);
559  viewsize=owl_view_get_size(v);
560  found=0;
561
562  /* just check to make sure we're in bounds... */
563  if (curmsg<0) curmsg=0;
564
565  for (i=curmsg-1; i>=0; i--) {
566    m=owl_view_get_element(v, i);
567    if (skip_deleted && owl_message_is_delete(m)) continue;
568    if (f && !owl_filter_message_match(f, m)) continue;
569    found = 1;
570    break;
571  }
572
573  if (i<0) i=0;
574
575  if (!found) {
576    owl_function_makemsg("already at first%s message%s%s",
577                         skip_deleted?" non-deleted":"",
578                         filter?" in ":"", filter?filter:"");
579    /* if (!skip_deleted) owl_function_beep(); */
580  }
581
582  if (first_if_none || found) {
583    owl_global_set_curmsg(&g, i);
584    owl_function_calculate_topmsg(OWL_DIRECTION_UPWARDS);
585    owl_mainwin_redisplay(owl_global_get_mainwin(&g));
586    owl_global_set_direction_upwards(&g);
587  }
588}
589
590void owl_function_nextmsg()
591{
592  owl_function_nextmsg_full(NULL, 0, 1);
593}
594
595void owl_function_prevmsg()
596{
597  owl_function_prevmsg_full(NULL, 0, 1);
598}
599
600void owl_function_nextmsg_notdeleted()
601{
602  owl_function_nextmsg_full(NULL, 1, 1);
603}
604
605void owl_function_prevmsg_notdeleted()
606{
607  owl_function_prevmsg_full(NULL, 1, 1);
608}
609
610void owl_function_nextmsg_personal()
611{
612  owl_function_nextmsg_full("personal", 0, 0);
613}
614
615void owl_function_prevmsg_personal()
616{
617  owl_function_prevmsg_full("personal", 0, 0);
618}
619
620
621/* if move_after is 1, moves after the delete */
622void owl_function_deletecur(int move_after)
623{
624  int curmsg;
625  owl_view *v;
626
627  v=owl_global_get_current_view(&g);
628
629  /* bail if there's no current message */
630  if (owl_view_get_size(v) < 1) {
631    owl_function_error("No current message to delete");
632    return;
633  }
634
635  /* mark the message for deletion */
636  curmsg=owl_global_get_curmsg(&g);
637  owl_view_delete_element(v, curmsg);
638
639  if (move_after) {
640    /* move the poiner in the appropriate direction
641     * to the next undeleted msg */
642    if (owl_global_get_direction(&g)==OWL_DIRECTION_UPWARDS) {
643      owl_function_prevmsg_notdeleted();
644    } else {
645      owl_function_nextmsg_notdeleted();
646    }
647  }
648}
649
650void owl_function_undeletecur(int move_after)
651{
652  int curmsg;
653  owl_view *v;
654
655  v=owl_global_get_current_view(&g);
656 
657  if (owl_view_get_size(v) < 1) {
658    owl_function_error("No current message to undelete");
659    return;
660  }
661  curmsg=owl_global_get_curmsg(&g);
662
663  owl_view_undelete_element(v, curmsg);
664
665  if (move_after) {
666    if (owl_global_get_direction(&g)==OWL_DIRECTION_UPWARDS) {
667      if (curmsg>0) {
668        owl_function_prevmsg();
669      } else {
670        owl_function_nextmsg();
671      }
672    } else {
673      owl_function_nextmsg();
674    }
675  }
676
677  owl_mainwin_redisplay(owl_global_get_mainwin(&g));
678}
679
680void owl_function_expunge()
681{
682  int curmsg;
683  owl_message *m;
684  owl_messagelist *ml;
685  owl_view *v;
686  int lastmsgid=0;
687
688  curmsg=owl_global_get_curmsg(&g);
689  v=owl_global_get_current_view(&g);
690  ml=owl_global_get_msglist(&g);
691
692  m=owl_view_get_element(v, curmsg);
693  if (m) lastmsgid = owl_message_get_id(m);
694
695  /* expunge the message list */
696  owl_messagelist_expunge(ml);
697
698  /* update all views (we only have one right now) */
699  owl_view_recalculate(v);
700
701  /* find where the new position should be
702     (as close as possible to where we last where) */
703  curmsg = owl_view_get_nearest_to_msgid(v, lastmsgid);
704  if (curmsg>owl_view_get_size(v)-1) curmsg = owl_view_get_size(v)-1;
705  if (curmsg<0) curmsg = 0;
706  owl_global_set_curmsg(&g, curmsg);
707  owl_function_calculate_topmsg(OWL_DIRECTION_NONE);
708  /* if there are no messages set the direction to down in case we
709     delete everything upwards */
710  owl_global_set_direction_downwards(&g);
711 
712  owl_function_makemsg("Messages expunged");
713  owl_mainwin_redisplay(owl_global_get_mainwin(&g));
714}
715
716void owl_function_firstmsg()
717{
718  owl_global_set_curmsg(&g, 0);
719  owl_global_set_topmsg(&g, 0);
720  owl_mainwin_redisplay(owl_global_get_mainwin(&g));
721  owl_global_set_direction_downwards(&g);
722}
723
724void owl_function_lastmsg_noredisplay()
725{
726  int oldcurmsg, curmsg;
727  owl_view *v;
728
729  v=owl_global_get_current_view(&g);
730  oldcurmsg=owl_global_get_curmsg(&g);
731  curmsg=owl_view_get_size(v)-1; 
732  if (curmsg<0) curmsg=0;
733  owl_global_set_curmsg(&g, curmsg);
734  if (oldcurmsg < curmsg) {
735    owl_function_calculate_topmsg(OWL_DIRECTION_DOWNWARDS);
736  } else if (curmsg<owl_view_get_size(v)) {
737    /* If already at the end, blank the screen and move curmsg
738     * past the end of the messages. */
739    owl_global_set_topmsg(&g, curmsg+1);
740    owl_global_set_curmsg(&g, curmsg+1);
741  } 
742  owl_mainwin_redisplay(owl_global_get_mainwin(&g));
743  owl_global_set_direction_downwards(&g);
744}
745
746void owl_function_lastmsg()
747{
748  owl_function_lastmsg_noredisplay();
749  owl_mainwin_redisplay(owl_global_get_mainwin(&g)); 
750}
751
752void owl_function_shift_right()
753{
754  owl_global_set_rightshift(&g, owl_global_get_rightshift(&g)+10);
755  owl_mainwin_redisplay(owl_global_get_mainwin(&g));
756  owl_global_set_needrefresh(&g);
757}
758
759void owl_function_shift_left()
760{
761  int shift;
762
763  shift=owl_global_get_rightshift(&g);
764  if (shift>=10) {
765    owl_global_set_rightshift(&g, shift-10);
766    owl_mainwin_redisplay(owl_global_get_mainwin(&g));
767    owl_global_set_needrefresh(&g);
768  } else {
769    owl_function_beep();
770    owl_function_makemsg("Already full left");
771  }
772}
773
774void owl_function_unsuball()
775{
776  unsuball();
777  owl_function_makemsg("Unsubscribed from all messages.");
778}
779
780void owl_function_loadsubs(char *file)
781{
782  int ret;
783
784  ret=owl_zephyr_loadsubs(file);
785
786  if (!owl_context_is_interactive(owl_global_get_context(&g))) return;
787  if (ret==0) {
788    owl_function_makemsg("Subscribed to messages from file.");
789  } else if (ret==-1) {
790    owl_function_error("Could not open file.");
791  } else {
792    owl_function_error("Error subscribing to messages from file.");
793  }
794}
795
796void owl_function_loadloginsubs(char *file)
797{
798  int ret;
799
800  ret=owl_zephyr_loadloginsubs(file);
801
802  if (!owl_context_is_interactive(owl_global_get_context(&g))) return;
803  if (ret==0) {
804    owl_function_makemsg("Subscribed to login messages from file.");
805  } else if (ret==-1) {
806    owl_function_error("Could not open file for login subscriptions.");
807  } else {
808    owl_function_error("Error subscribing to login messages from file.");
809  }
810}
811
812void owl_function_suspend()
813{
814  endwin();
815  printf("\n");
816  kill(getpid(), SIGSTOP);
817
818  /* resize to reinitialize all the windows when we come back */
819  owl_command_resize();
820}
821
822void owl_function_zaway_toggle()
823{
824  if (!owl_global_is_zaway(&g)) {
825    owl_global_set_zaway_msg(&g, owl_global_get_zaway_msg_default(&g));
826    owl_function_zaway_on();
827  } else {
828    owl_function_zaway_off();
829  }
830}
831
832void owl_function_zaway_on()
833{
834  owl_global_set_zaway_on(&g);
835  owl_aim_set_awaymsg(owl_global_get_zaway_msg(&g));
836  owl_function_makemsg("zaway set (%s)", owl_global_get_zaway_msg(&g));
837}
838
839void owl_function_zaway_off()
840{
841  owl_global_set_zaway_off(&g);
842  owl_function_makemsg("zaway off");
843}
844
845void owl_function_quit()
846{
847  char *ret;
848 
849  /* zlog out if we need to */
850  if (owl_global_is_shutdownlogout(&g)) {
851    owl_zephyr_zlog_out();
852  }
853
854  /* execute the commands in shutdown */
855  ret = owl_perlconfig_execute("owl::shutdown();");
856  if (ret) owl_free(ret);
857
858  /* signal our child process, if any */
859  if (owl_global_get_newmsgproc_pid(&g)) {
860    kill(owl_global_get_newmsgproc_pid(&g), SIGHUP);
861  }
862
863  /* Quit zephyr */
864  owl_zephyr_shutdown();
865
866 
867  /* Quit AIM */
868  if (owl_global_is_aimloggedin(&g)) {
869    owl_aim_logout();
870  }
871
872  /* final clean up */
873  endwin();
874  owl_function_debugmsg("Quitting Owl");
875  exit(0);
876}
877
878void owl_function_openurl()
879{
880  /* visit the first url in the current message */
881  owl_message *m;
882  owl_view *v;
883  char *ptr1, *ptr2, *text, url[LINE], tmpbuff[LINE];
884  int webbrowser;
885
886  webbrowser = owl_global_get_webbrowser(&g);
887
888  if (webbrowser < 0 || webbrowser == OWL_WEBBROWSER_NONE) {
889    owl_function_error("No browser selected");
890    return;
891  }
892
893  v=owl_global_get_current_view(&g);
894 
895  m=owl_view_get_element(v, owl_global_get_curmsg(&g));
896
897  if (!m || owl_view_get_size(v)==0) {
898    owl_function_error("No current message selected");
899    return;
900  }
901
902  text=owl_message_get_text(m);
903
904  /* First look for a good URL */ 
905  if ((ptr1=strstr(text, "http://"))!=NULL) {
906    ptr2=strpbrk(ptr1, " \n\t");
907    if (ptr2) {
908      strncpy(url, ptr1, ptr2-ptr1+1);
909      url[ptr2-ptr1+1]='\0';
910    } else {
911      strcpy(url, ptr1);
912    }
913
914    /* if we had <http strip a trailing > */
915    if (ptr1>text && ptr1[-1]=='<') {
916      if (url[strlen(url)-1]=='>') {
917        url[strlen(url)-1]='\0';
918      }
919    }
920  } else if ((ptr1=strstr(text, "https://"))!=NULL) {
921    /* Look for an https URL */ 
922    ptr2=strpbrk(ptr1, " \n\t");
923    if (ptr2) {
924      strncpy(url, ptr1, ptr2-ptr1+1);
925      url[ptr2-ptr1+1]='\0';
926    } else {
927      strcpy(url, ptr1);
928    }
929   
930    /* if we had <http strip a trailing > */
931    if (ptr1>text && ptr1[-1]=='<') {
932      if (url[strlen(url)-1]=='>') {
933        url[strlen(url)-1]='\0';
934      }
935    }
936  } else if ((ptr1=strstr(text, "www."))!=NULL) {
937    /* if we can't find a real url look for www.something */
938    ptr2=strpbrk(ptr1, " \n\t");
939    if (ptr2) {
940      strncpy(url, ptr1, ptr2-ptr1+1);
941      url[ptr2-ptr1+1]='\0';
942    } else {
943      strcpy(url, ptr1);
944    }
945  } else {
946    owl_function_beep();
947    owl_function_error("Could not find URL to open.");
948    return;
949  }
950
951  /* Make sure there aren't any quotes or \'s in the url */
952  for (ptr1 = url; *ptr1; ptr1++) {
953    if (*ptr1 == '"' || *ptr1 == '\\') {
954      owl_function_beep();
955      owl_function_error("URL contains invalid characters.");
956      return;
957    }
958  }
959 
960  /* NOTE: There are potentially serious security issues here... */
961
962  /* open the page */
963  owl_function_makemsg("Opening %s", url);
964  if (webbrowser == OWL_WEBBROWSER_NETSCAPE) {
965    snprintf(tmpbuff, LINE, "netscape -remote \"openURL(%s)\" > /dev/null 2> /dev/null", url);
966    system(tmpbuff); 
967  } else if (webbrowser == OWL_WEBBROWSER_GALEON) {
968    snprintf(tmpbuff, LINE, "galeon \"%s\" > /dev/null 2> /dev/null &", url);
969    system(tmpbuff); 
970  } else if (webbrowser == OWL_WEBBROWSER_OPERA) {
971    snprintf(tmpbuff, LINE, "opera \"%s\" > /dev/null 2> /dev/null &", url);
972    system(tmpbuff); 
973  }
974}
975
976void owl_function_calculate_topmsg(int direction)
977{
978  int recwinlines, topmsg, curmsg;
979  owl_view *v;
980
981  v=owl_global_get_current_view(&g);
982  curmsg=owl_global_get_curmsg(&g);
983  topmsg=owl_global_get_topmsg(&g);
984  recwinlines=owl_global_get_recwin_lines(&g);
985
986  /*
987  if (owl_view_get_size(v) < 1) {
988    return;
989  }
990  */
991
992  switch (owl_global_get_scrollmode(&g)) {
993  case OWL_SCROLLMODE_TOP:
994    topmsg = owl_function_calculate_topmsg_top(direction, v, curmsg, topmsg, recwinlines);
995    break;
996  case OWL_SCROLLMODE_NEARTOP:
997    topmsg = owl_function_calculate_topmsg_neartop(direction, v, curmsg, topmsg, recwinlines);
998    break;
999  case OWL_SCROLLMODE_CENTER:
1000    topmsg = owl_function_calculate_topmsg_center(direction, v, curmsg, topmsg, recwinlines);
1001    break;
1002  case OWL_SCROLLMODE_PAGED:
1003    topmsg = owl_function_calculate_topmsg_paged(direction, v, curmsg, topmsg, recwinlines, 0);
1004    break;
1005  case OWL_SCROLLMODE_PAGEDCENTER:
1006    topmsg = owl_function_calculate_topmsg_paged(direction, v, curmsg, topmsg, recwinlines, 1);
1007    break;
1008  case OWL_SCROLLMODE_NORMAL:
1009  default:
1010    topmsg = owl_function_calculate_topmsg_normal(direction, v, curmsg, topmsg, recwinlines);
1011  }
1012  owl_function_debugmsg("Calculated a topmsg of %i", topmsg);
1013  owl_global_set_topmsg(&g, topmsg);
1014}
1015
1016/* Returns what the new topmsg should be. 
1017 * Passed the last direction of movement,
1018 * the current view,
1019 * the current message number in the view,
1020 * the top message currently being displayed,
1021 * and the number of lines in the recwin.
1022 */
1023int owl_function_calculate_topmsg_top(int direction, owl_view *v, int curmsg, int topmsg, int recwinlines)
1024{
1025  return(curmsg);
1026}
1027
1028int owl_function_calculate_topmsg_neartop(int direction, owl_view *v, int curmsg, int topmsg, int recwinlines)
1029{
1030  if (curmsg>0 
1031      && (owl_message_get_numlines(owl_view_get_element(v, curmsg-1))
1032          <  recwinlines/2)) {
1033    return(curmsg-1);
1034  } else {
1035    return(curmsg);
1036  }
1037}
1038 
1039int owl_function_calculate_topmsg_center(int direction, owl_view *v, int curmsg, int topmsg, int recwinlines)
1040{
1041  int i, last, lines;
1042
1043  last = curmsg;
1044  lines = 0;
1045  for (i=curmsg-1; i>=0; i--) {
1046    lines += owl_message_get_numlines(owl_view_get_element(v, i));
1047    if (lines > recwinlines/2) break;
1048    last = i;
1049  }
1050  return(last);
1051}
1052 
1053int owl_function_calculate_topmsg_paged(int direction, owl_view *v, int curmsg, int topmsg, int recwinlines, int center_on_page)
1054{
1055  int i, last, lines, savey;
1056 
1057  /* If we're off the top of the screen, scroll up such that the
1058   * curmsg is near the botton of the screen. */
1059  if (curmsg < topmsg) {
1060    last = curmsg;
1061    lines = 0;
1062    for (i=curmsg; i>=0; i--) {
1063      lines += owl_message_get_numlines(owl_view_get_element(v, i));
1064      if (lines > recwinlines) break;
1065    last = i;
1066    }
1067    if (center_on_page) {
1068      return(owl_function_calculate_topmsg_center(direction, v, curmsg, 0, recwinlines));
1069    } else {
1070      return(last);
1071    }
1072  }
1073
1074  /* Find number of lines from top to bottom of curmsg (store in savey) */
1075  savey=0;
1076  for (i=topmsg; i<=curmsg; i++) {
1077    savey+=owl_message_get_numlines(owl_view_get_element(v, i));
1078  }
1079
1080  /* if we're off the bottom of the screen, scroll down */
1081  if (savey > recwinlines) {
1082    if (center_on_page) {
1083      return(owl_function_calculate_topmsg_center(direction, v, curmsg, 0, recwinlines));
1084    } else {
1085      return(curmsg);
1086    }
1087  }
1088
1089  /* else just stay as we are... */
1090  return(topmsg);
1091}
1092
1093int owl_function_calculate_topmsg_normal(int direction, owl_view *v, int curmsg, int topmsg, int recwinlines)
1094{
1095  int savey, j, i, foo, y;
1096
1097  if (curmsg<0) return(topmsg);
1098   
1099  /* If we're off the top of the screen then center */
1100  if (curmsg<topmsg) {
1101    topmsg=owl_function_calculate_topmsg_center(direction, v, curmsg, 0, recwinlines);
1102  }
1103
1104  /* Find number of lines from top to bottom of curmsg (store in savey) */
1105  savey=0;
1106  for (i=topmsg; i<=curmsg; i++) {
1107    savey+=owl_message_get_numlines(owl_view_get_element(v, i));
1108  }
1109
1110  /* If we're off the bottom of the screen, set the topmsg to curmsg
1111   * and scroll upwards */
1112  if (savey > recwinlines) {
1113    topmsg=curmsg;
1114    savey=owl_message_get_numlines(owl_view_get_element(v, i));
1115    direction=OWL_DIRECTION_UPWARDS;
1116  }
1117 
1118  /* If our bottom line is less than 1/4 down the screen then scroll up */
1119  if (direction == OWL_DIRECTION_UPWARDS || direction == OWL_DIRECTION_NONE) {
1120    if (savey < (recwinlines / 4)) {
1121      y=0;
1122      for (j=curmsg; j>=0; j--) {
1123        foo=owl_message_get_numlines(owl_view_get_element(v, j));
1124        /* will we run the curmsg off the screen? */
1125        if ((foo+y) >= recwinlines) {
1126          j++;
1127          if (j>curmsg) j=curmsg;
1128          break;
1129        }
1130        /* have saved 1/2 the screen space? */
1131        y+=foo;
1132        if (y > (recwinlines / 2)) break;
1133      }
1134      if (j<0) j=0;
1135      return(j);
1136    }
1137  }
1138
1139  if (direction == OWL_DIRECTION_DOWNWARDS || direction == OWL_DIRECTION_NONE) {
1140    /* If curmsg bottom line is more than 3/4 down the screen then scroll down */
1141    if (savey > ((recwinlines * 3)/4)) {
1142      y=0;
1143      /* count lines from the top until we can save 1/2 the screen size */
1144      for (j=topmsg; j<curmsg; j++) {
1145        y+=owl_message_get_numlines(owl_view_get_element(v, j));
1146        if (y > (recwinlines / 2)) break;
1147      }
1148      if (j==curmsg) {
1149        j--;
1150      }
1151      return(j+1);
1152    }
1153  }
1154
1155  return(topmsg);
1156}
1157
1158void owl_function_resize()
1159{
1160  owl_global_set_resize_pending(&g);
1161}
1162
1163void owl_function_run_buffercommand()
1164{
1165  char *buff, *ptr;
1166
1167  buff=owl_global_get_buffercommand(&g);
1168  if (!strncmp(buff, "zwrite ", 7)) {
1169    owl_function_zwrite(buff, owl_editwin_get_text(owl_global_get_typwin(&g)));
1170  } else if (!strncmp(buff, "zcrypt ", 7)) {
1171    owl_function_zcrypt(buff, owl_editwin_get_text(owl_global_get_typwin(&g)));
1172  } else if (!strncmp(buff, "aimwrite ", 9)) {
1173    owl_function_aimwrite(buff+9);
1174  } else if (!strncmp(buff, "loopwrite", 9) || !strncmp(buff, "loopwrite ", 10)) {
1175    owl_function_loopwrite();
1176  } else if (!strncmp(buff, "aimlogin ", 9)) {
1177    ptr=owl_sprintf("%s %s", buff, owl_global_get_response(&g));
1178    owl_function_command(ptr);
1179    owl_free(ptr);
1180  } else {
1181    owl_function_error("Internal error: invalid buffercommand %s", buff);
1182  }
1183}
1184
1185void owl_function_debugmsg(char *fmt, ...)
1186{
1187  FILE *file;
1188  time_t now;
1189  char buff1[LINE], buff2[LINE];
1190  va_list ap;
1191  va_start(ap, fmt);
1192
1193  if (!owl_global_is_debug_fast(&g)) return;
1194
1195  file=fopen(owl_global_get_debug_file(&g), "a");
1196  if (!file) return;
1197
1198  now=time(NULL);
1199  strcpy(buff1, ctime(&now));
1200  buff1[strlen(buff1)-1]='\0';
1201
1202  owl_global_get_runtime_string(&g, buff2);
1203 
1204  fprintf(file, "[%i -  %s - %s]: ", (int) getpid(), buff1, buff2);
1205  vfprintf(file, fmt, ap);
1206  fprintf(file, "\n");
1207  fclose(file);
1208
1209  va_end(ap);
1210}
1211
1212void owl_function_refresh()
1213{
1214  owl_function_resize();
1215}
1216
1217void owl_function_beep()
1218{
1219  if (owl_global_is_bell(&g)) {
1220    beep();
1221    owl_global_set_needrefresh(&g); /* do we really need this? */
1222  }
1223}
1224
1225void owl_function_subscribe(char *class, char *inst, char *recip)
1226{
1227  int ret;
1228
1229  ret=owl_zephyr_sub(class, inst, recip);
1230  if (ret) {
1231    owl_function_error("Error subscribing.");
1232  } else {
1233    owl_function_makemsg("Subscribed.");
1234  }
1235}
1236
1237void owl_function_unsubscribe(char *class, char *inst, char *recip)
1238{
1239  int ret;
1240
1241  ret=owl_zephyr_unsub(class, inst, recip);
1242  if (ret) {
1243    owl_function_error("Error subscribing.");
1244  } else {
1245    owl_function_makemsg("Unsubscribed.");
1246  }
1247}
1248
1249void owl_function_set_cursor(WINDOW *win)
1250{
1251  wnoutrefresh(win);
1252}
1253
1254void owl_function_full_redisplay()
1255{
1256  redrawwin(owl_global_get_curs_recwin(&g));
1257  redrawwin(owl_global_get_curs_sepwin(&g));
1258  redrawwin(owl_global_get_curs_typwin(&g));
1259  redrawwin(owl_global_get_curs_msgwin(&g));
1260
1261  wnoutrefresh(owl_global_get_curs_recwin(&g));
1262  wnoutrefresh(owl_global_get_curs_sepwin(&g));
1263  wnoutrefresh(owl_global_get_curs_typwin(&g));
1264  wnoutrefresh(owl_global_get_curs_msgwin(&g));
1265 
1266  sepbar("");
1267  owl_function_makemsg("");
1268
1269  owl_global_set_needrefresh(&g);
1270}
1271
1272void owl_function_popless_text(char *text)
1273{
1274  owl_popwin *pw;
1275  owl_viewwin *v;
1276
1277  pw=owl_global_get_popwin(&g);
1278  v=owl_global_get_viewwin(&g);
1279
1280  owl_popwin_up(pw);
1281  owl_viewwin_init_text(v, owl_popwin_get_curswin(pw),
1282                        owl_popwin_get_lines(pw), owl_popwin_get_cols(pw),
1283                        text);
1284  owl_popwin_refresh(pw);
1285  owl_viewwin_redisplay(v, 0);
1286  owl_global_set_needrefresh(&g);
1287}
1288
1289void owl_function_popless_fmtext(owl_fmtext *fm)
1290{
1291  owl_popwin *pw;
1292  owl_viewwin *v;
1293
1294  pw=owl_global_get_popwin(&g);
1295  v=owl_global_get_viewwin(&g);
1296
1297  owl_popwin_up(pw);
1298  owl_viewwin_init_fmtext(v, owl_popwin_get_curswin(pw),
1299                   owl_popwin_get_lines(pw), owl_popwin_get_cols(pw),
1300                   fm);
1301  owl_popwin_refresh(pw);
1302  owl_viewwin_redisplay(v, 0);
1303  owl_global_set_needrefresh(&g);
1304}
1305
1306void owl_function_popless_file(char *filename)
1307{
1308  owl_fmtext fm;
1309  FILE *file;
1310  char buff[1024];
1311
1312  file=fopen(filename, "r");
1313  if (!file) {
1314    owl_function_error("Could not open file: %s", filename);
1315    return;
1316  }
1317
1318  owl_fmtext_init_null(&fm);
1319  while (fgets(buff, 1024, file)) {
1320    owl_fmtext_append_normal(&fm, buff);
1321    /*    owl_fmtext_append_normal(&fm, "\n"); */
1322  }
1323
1324  owl_function_popless_fmtext(&fm);
1325  owl_fmtext_free(&fm);
1326  fclose(file);
1327}
1328
1329void owl_function_about()
1330{
1331  char buff[5000];
1332
1333  sprintf(buff, "This is owl version %s\n", OWL_VERSION_STRING);
1334  strcat(buff, "\nOwl was written by James Kretchmar at the Massachusetts\n");
1335  strcat(buff, "Institute of Technology.  The first version, 0.5, was\n");
1336  strcat(buff, "released in March 2002.\n");
1337  strcat(buff, "\n");
1338  strcat(buff, "The name 'owl' was chosen in reference to the owls in the\n");
1339  strcat(buff, "Harry Potter novels, who are tasked with carrying messages\n");
1340  strcat(buff, "between Witches and Wizards.\n");
1341  strcat(buff, "\n");
1342  strcat(buff, "Copyright 2002 Massachusetts Institute of Technology\n");
1343  strcat(buff, "\n");
1344  strcat(buff, "Permission to use, copy, modify, and distribute this\n");
1345  strcat(buff, "software and its documentation for any purpose and without\n");
1346  strcat(buff, "fee is hereby granted, provided that the above copyright\n");
1347  strcat(buff, "notice and this permission notice appear in all copies\n");
1348  strcat(buff, "and in supporting documentation.  No representation is\n");
1349  strcat(buff, "made about the suitability of this software for any\n");
1350  strcat(buff, "purpose.  It is provided \"as is\" without express\n");
1351  strcat(buff, "or implied warranty.\n");
1352  owl_function_popless_text(buff);
1353}
1354
1355void owl_function_info()
1356{
1357  owl_message *m;
1358  owl_fmtext fm, attrfm;
1359  char buff[10000];
1360  owl_view *v;
1361#ifdef HAVE_LIBZEPHYR
1362  ZNotice_t *n;
1363#endif
1364
1365  owl_fmtext_init_null(&fm);
1366 
1367  v=owl_global_get_current_view(&g);
1368  m=owl_view_get_element(v, owl_global_get_curmsg(&g));
1369  if (!m || owl_view_get_size(v)==0) {
1370    owl_function_error("No message selected\n");
1371    return;
1372  }
1373
1374  owl_fmtext_append_bold(&fm, "General Information:\n");
1375  owl_fmtext_append_normal(&fm, "  Msg Id    : ");
1376  sprintf(buff, "%i", owl_message_get_id(m));
1377  owl_fmtext_append_normal(&fm, buff);
1378  owl_fmtext_append_normal(&fm, "\n");
1379
1380  owl_fmtext_append_normal(&fm, "  Type      : ");
1381  owl_fmtext_append_bold(&fm, owl_message_get_type(m));
1382  owl_fmtext_append_normal(&fm, "\n");
1383
1384  if (owl_message_is_direction_in(m)) {
1385    owl_fmtext_append_normal(&fm, "  Direction : in\n");
1386  } else if (owl_message_is_direction_out(m)) {
1387    owl_fmtext_append_normal(&fm, "  Direction : out\n");
1388  } else if (owl_message_is_direction_none(m)) {
1389    owl_fmtext_append_normal(&fm, "  Direction : none\n");
1390  } else {
1391    owl_fmtext_append_normal(&fm, "  Direction : unknown\n");
1392  }
1393
1394  owl_fmtext_append_normal(&fm, "  Time      : ");
1395  owl_fmtext_append_normal(&fm, owl_message_get_timestr(m));
1396  owl_fmtext_append_normal(&fm, "\n");
1397
1398  if (!owl_message_is_type_admin(m)) {
1399    owl_fmtext_append_normal(&fm, "  Sender    : ");
1400    owl_fmtext_append_normal(&fm, owl_message_get_sender(m));
1401    owl_fmtext_append_normal(&fm, "\n");
1402   
1403    owl_fmtext_append_normal(&fm, "  Recipient : ");
1404    owl_fmtext_append_normal(&fm, owl_message_get_recipient(m));
1405    owl_fmtext_append_normal(&fm, "\n");
1406  }
1407   
1408  if (owl_message_is_type_zephyr(m)) {
1409    owl_fmtext_append_bold(&fm, "\nZephyr Specific Information:\n");
1410   
1411    owl_fmtext_append_normal(&fm, "  Class     : ");
1412    owl_fmtext_append_normal(&fm, owl_message_get_class(m));
1413    owl_fmtext_append_normal(&fm, "\n");
1414    owl_fmtext_append_normal(&fm, "  Instance  : ");
1415    owl_fmtext_append_normal(&fm, owl_message_get_instance(m));
1416    owl_fmtext_append_normal(&fm, "\n");
1417    owl_fmtext_append_normal(&fm, "  Opcode    : ");
1418    owl_fmtext_append_normal(&fm, owl_message_get_opcode(m));
1419    owl_fmtext_append_normal(&fm, "\n");
1420   
1421    owl_fmtext_append_normal(&fm, "  Time      : ");
1422    owl_fmtext_append_normal(&fm, owl_message_get_timestr(m));
1423    owl_fmtext_append_normal(&fm, "\n");
1424#ifdef HAVE_LIBZEPHYR
1425    if (owl_message_is_direction_in(m)) {
1426      char *ptr, tmpbuff[1024];
1427      int i, j, fields, len;
1428
1429      n=owl_message_get_notice(m);
1430
1431      if (!owl_message_is_pseudo(m)) {
1432        owl_fmtext_append_normal(&fm, "  Kind      : ");
1433        if (n->z_kind==UNSAFE) {
1434          owl_fmtext_append_normal(&fm, "UNSAFE\n");
1435        } else if (n->z_kind==UNACKED) {
1436          owl_fmtext_append_normal(&fm, "UNACKED\n");
1437        } else if (n->z_kind==ACKED) {
1438          owl_fmtext_append_normal(&fm, "ACKED\n");
1439        } else if (n->z_kind==HMACK) {
1440          owl_fmtext_append_normal(&fm, "HMACK\n");
1441        } else if (n->z_kind==HMCTL) {
1442          owl_fmtext_append_normal(&fm, "HMCTL\n");
1443        } else if (n->z_kind==SERVACK) {
1444          owl_fmtext_append_normal(&fm, "SERVACK\n");
1445        } else if (n->z_kind==SERVNAK) {
1446          owl_fmtext_append_normal(&fm, "SERVNACK\n");
1447        } else if (n->z_kind==CLIENTACK) {
1448          owl_fmtext_append_normal(&fm, "CLIENTACK\n");
1449        } else if (n->z_kind==STAT) {
1450          owl_fmtext_append_normal(&fm, "STAT\n");
1451        } else {
1452          owl_fmtext_append_normal(&fm, "ILLEGAL VALUE\n");
1453        }
1454      }
1455      owl_fmtext_append_normal(&fm, "  Host      : ");
1456      owl_fmtext_append_normal(&fm, owl_message_get_hostname(m));
1457
1458      if (!owl_message_is_pseudo(m)) {
1459        owl_fmtext_append_normal(&fm, "\n");
1460        sprintf(buff, "  Port      : %i\n", n->z_port);
1461        owl_fmtext_append_normal(&fm, buff);
1462
1463        owl_fmtext_append_normal(&fm,    "  Auth      : ");
1464        owl_fmtext_append_normal(&fm, owl_zephyr_get_authstr(n));
1465        owl_fmtext_append_normal(&fm, "\n");
1466       
1467        /* fix this */
1468        sprintf(buff, "  Checkd Ath: %i\n", n->z_checked_auth);
1469        sprintf(buff, "%s  Multi notc: %s\n", buff, n->z_multinotice);
1470        sprintf(buff, "%s  Num other : %i\n", buff, n->z_num_other_fields);
1471        sprintf(buff, "%s  Msg Len   : %i\n", buff, n->z_message_len);
1472        owl_fmtext_append_normal(&fm, buff);
1473       
1474        sprintf(buff, "  Fields    : %i\n", owl_zephyr_get_num_fields(n));
1475        owl_fmtext_append_normal(&fm, buff);
1476       
1477        fields=owl_zephyr_get_num_fields(n);
1478        for (i=0; i<fields; i++) {
1479          sprintf(buff, "  Field %i   : ", i+1);
1480         
1481          ptr=owl_zephyr_get_field(n, i+1, &len);
1482          if (!ptr) break;
1483          if (len<30) {
1484            strncpy(tmpbuff, ptr, len);
1485            tmpbuff[len]='\0';
1486          } else {
1487            strncpy(tmpbuff, ptr, 30);
1488            tmpbuff[30]='\0';
1489            strcat(tmpbuff, "...");
1490          }
1491         
1492          for (j=0; j<strlen(tmpbuff); j++) {
1493            if (tmpbuff[j]=='\n') tmpbuff[j]='~';
1494            if (tmpbuff[j]=='\r') tmpbuff[j]='!';
1495          }
1496         
1497          strcat(buff, tmpbuff);
1498          strcat(buff, "\n");
1499          owl_fmtext_append_normal(&fm, buff);
1500        }
1501        owl_fmtext_append_normal(&fm, "  Default Fm:");
1502        owl_fmtext_append_normal(&fm, n->z_default_format);
1503      }
1504     
1505    }
1506#endif   
1507  }
1508
1509  if (owl_message_is_type_aim(m)) {
1510    owl_fmtext_append_bold(&fm, "\nAIM Specific Information:\n");
1511  }
1512
1513  owl_fmtext_append_bold(&fm, "\nOwl Message Attributes:\n");
1514  owl_message_attributes_tofmtext(m, &attrfm);
1515  owl_fmtext_append_fmtext(&fm, &attrfm);
1516 
1517  owl_function_popless_fmtext(&fm);
1518  owl_fmtext_free(&fm);
1519  owl_fmtext_free(&attrfm);
1520}
1521
1522/* print the current message in a popup window.
1523 * Use the 'default' style regardless of whatever
1524 * style the user may be using
1525 */
1526void owl_function_curmsg_to_popwin()
1527{
1528  owl_popwin *pw;
1529  owl_view *v;
1530  owl_message *m;
1531  owl_style *s;
1532  owl_fmtext fm;
1533
1534  v=owl_global_get_current_view(&g);
1535  s=owl_global_get_style_by_name(&g, "default");
1536  pw=owl_global_get_popwin(&g);
1537
1538  m=owl_view_get_element(v, owl_global_get_curmsg(&g));
1539
1540  if (!m || owl_view_get_size(v)==0) {
1541    owl_function_error("No current message");
1542    return;
1543  }
1544
1545  owl_fmtext_init_null(&fm);
1546  owl_style_get_formattext(s, &fm, m);
1547
1548  owl_function_popless_fmtext(&fm);
1549  owl_fmtext_free(&fm);
1550}
1551
1552void owl_function_page_curmsg(int step)
1553{
1554  /* scroll down or up within the current message IF the message is truncated */
1555
1556  int offset, curmsg, lines;
1557  owl_view *v;
1558  owl_message *m;
1559
1560  offset=owl_global_get_curmsg_vert_offset(&g);
1561  v=owl_global_get_current_view(&g);
1562  curmsg=owl_global_get_curmsg(&g);
1563  m=owl_view_get_element(v, curmsg);
1564  if (!m || owl_view_get_size(v)==0) return;
1565  lines=owl_message_get_numlines(m);
1566
1567  if (offset==0) {
1568    /* Bail if the curmsg isn't the last one displayed */
1569    if (curmsg != owl_mainwin_get_last_msg(owl_global_get_mainwin(&g))) {
1570      owl_function_makemsg("The entire message is already displayed");
1571      return;
1572    }
1573   
1574    /* Bail if we're not truncated */
1575    if (!owl_mainwin_is_curmsg_truncated(owl_global_get_mainwin(&g))) {
1576      owl_function_makemsg("The entire message is already displayed");
1577      return;
1578    }
1579  }
1580 
1581 
1582  /* don't scroll past the last line */
1583  if (step>0) {
1584    if (offset+step > lines-1) {
1585      owl_global_set_curmsg_vert_offset(&g, lines-1);
1586    } else {
1587      owl_global_set_curmsg_vert_offset(&g, offset+step);
1588    }
1589  }
1590
1591  /* would we be before the beginning of the message? */
1592  if (step<0) {
1593    if (offset+step<0) {
1594      owl_global_set_curmsg_vert_offset(&g, 0);
1595    } else {
1596      owl_global_set_curmsg_vert_offset(&g, offset+step);
1597    }
1598  }
1599 
1600  /* redisplay */
1601  owl_mainwin_redisplay(owl_global_get_mainwin(&g));
1602  owl_global_set_needrefresh(&g);
1603}
1604
1605void owl_function_resize_typwin(int newsize)
1606{
1607  owl_global_set_typwin_lines(&g, newsize);
1608  owl_function_resize();
1609}
1610
1611void owl_function_typwin_grow()
1612{
1613  int i;
1614
1615  i=owl_global_get_typwin_lines(&g);
1616  owl_function_resize_typwin(i+1);
1617}
1618
1619void owl_function_typwin_shrink()
1620{
1621  int i;
1622
1623  i=owl_global_get_typwin_lines(&g);
1624  if (i>2) {
1625    owl_function_resize_typwin(i-1);
1626  }
1627}
1628
1629void owl_function_mainwin_pagedown()
1630{
1631  int i;
1632
1633  i=owl_mainwin_get_last_msg(owl_global_get_mainwin(&g));
1634  if (i<0) return;
1635  if (owl_mainwin_is_last_msg_truncated(owl_global_get_mainwin(&g))
1636      && (owl_global_get_curmsg(&g) < i)
1637      && (i>0)) {
1638    i--;
1639  }
1640  owl_global_set_curmsg(&g, i);
1641  owl_function_nextmsg();
1642}
1643
1644void owl_function_mainwin_pageup()
1645{
1646  owl_global_set_curmsg(&g, owl_global_get_topmsg(&g));
1647  owl_function_prevmsg();
1648}
1649
1650void owl_function_getsubs()
1651{
1652  char *buff;
1653
1654  buff=owl_zephyr_getsubs();
1655
1656  if (buff) {
1657    owl_function_popless_text(buff);
1658  } else {
1659    owl_function_popless_text("Error getting subscriptions");
1660  }
1661           
1662  owl_free(buff);
1663}
1664
1665#define PABUFLEN 5000
1666void owl_function_printallvars()
1667{
1668  char buff[PABUFLEN], *pos, *name;
1669  owl_list varnames;
1670  int i, numvarnames, rem;
1671
1672  pos = buff;
1673  pos += sprintf(pos, "%-20s = %s\n", "VARIABLE", "VALUE");
1674  pos += sprintf(pos, "%-20s   %s\n",  "--------", "-----");
1675  owl_variable_dict_get_names(owl_global_get_vardict(&g), &varnames);
1676  rem = (buff+PABUFLEN)-pos-1;
1677  numvarnames = owl_list_get_size(&varnames);
1678  for (i=0; i<numvarnames; i++) {
1679    name = owl_list_get_element(&varnames, i);
1680    if (name && name[0]!='_') {
1681      rem = (buff+PABUFLEN)-pos-1;   
1682      pos += snprintf(pos, rem, "\n%-20s = ", name);
1683      rem = (buff+PABUFLEN)-pos-1;   
1684      owl_variable_get_tostring(owl_global_get_vardict(&g), name, pos, rem);
1685      pos = buff+strlen(buff);
1686    }
1687  }
1688  rem = (buff+PABUFLEN)-pos-1;   
1689  snprintf(pos, rem, "\n");
1690  owl_variable_dict_namelist_free(&varnames);
1691 
1692  owl_function_popless_text(buff);
1693}
1694
1695void owl_function_show_variables()
1696{
1697  owl_list varnames;
1698  owl_fmtext fm; 
1699  int i, numvarnames;
1700  char *varname;
1701
1702  owl_fmtext_init_null(&fm);
1703  owl_fmtext_append_bold(&fm, 
1704      "Variables: (use 'show variable <name>' for details)\n");
1705  owl_variable_dict_get_names(owl_global_get_vardict(&g), &varnames);
1706  numvarnames = owl_list_get_size(&varnames);
1707  for (i=0; i<numvarnames; i++) {
1708    varname = owl_list_get_element(&varnames, i);
1709    if (varname && varname[0]!='_') {
1710      owl_variable_describe(owl_global_get_vardict(&g), varname, &fm);
1711    }
1712  }
1713  owl_variable_dict_namelist_free(&varnames);
1714  owl_function_popless_fmtext(&fm);
1715  owl_fmtext_free(&fm);
1716}
1717
1718void owl_function_show_variable(char *name)
1719{
1720  owl_fmtext fm; 
1721
1722  owl_fmtext_init_null(&fm);
1723  owl_variable_get_help(owl_global_get_vardict(&g), name, &fm);
1724  owl_function_popless_fmtext(&fm);
1725  owl_fmtext_free(&fm); 
1726}
1727
1728/* note: this applies to global message list, not to view.
1729 * If flag is 1, deletes.  If flag is 0, undeletes. */
1730void owl_function_delete_by_id(int id, int flag)
1731{
1732  owl_messagelist *ml;
1733  owl_message *m;
1734  ml = owl_global_get_msglist(&g);
1735  m = owl_messagelist_get_by_id(ml, id);
1736  if (m) {
1737    if (flag == 1) {
1738      owl_message_mark_delete(m);
1739    } else if (flag == 0) {
1740      owl_message_unmark_delete(m);
1741    }
1742    owl_mainwin_redisplay(owl_global_get_mainwin(&g));
1743    owl_global_set_needrefresh(&g);
1744  } else {
1745    owl_function_error("No message with id %d: unable to mark for (un)delete",id);
1746  }
1747}
1748
1749void owl_function_delete_automsgs()
1750{
1751  /* mark for deletion all messages in the current view that match the
1752   * 'trash' filter */
1753
1754  int i, j, count;
1755  owl_message *m;
1756  owl_view *v;
1757  owl_filter *f;
1758
1759  /* get the trash filter */
1760  f=owl_global_get_filter(&g, "trash");
1761  if (!f) {
1762    owl_function_error("No trash filter defined");
1763    return;
1764  }
1765
1766  v=owl_global_get_current_view(&g);
1767
1768  count=0;
1769  j=owl_view_get_size(v);
1770  for (i=0; i<j; i++) {
1771    m=owl_view_get_element(v, i);
1772    if (owl_filter_message_match(f, m)) {
1773      count++;
1774      owl_message_mark_delete(m);
1775    }
1776  }
1777  owl_mainwin_redisplay(owl_global_get_mainwin(&g));
1778  owl_function_makemsg("%i messages marked for deletion", count);
1779  owl_global_set_needrefresh(&g);
1780}
1781
1782void owl_function_status()
1783{
1784  char buff[5000];
1785  time_t start;
1786  int up, days, hours, minutes;
1787  owl_fmtext fm;
1788
1789  owl_fmtext_init_null(&fm);
1790
1791  start=owl_global_get_starttime(&g);
1792
1793  owl_fmtext_append_normal(&fm, "General Information:\n");
1794
1795  owl_fmtext_append_normal(&fm, "  Version: ");
1796  owl_fmtext_append_normal(&fm, OWL_VERSION_STRING);
1797  owl_fmtext_append_normal(&fm, "\n");
1798
1799  owl_fmtext_append_normal(&fm, "  Startup Arugments: ");
1800  owl_fmtext_append_normal(&fm, owl_global_get_startupargs(&g));
1801  owl_fmtext_append_normal(&fm, "\n");
1802
1803  owl_fmtext_append_normal(&fm, "  Current Directory: ");
1804  (void) getcwd(buff, MAXPATHLEN);
1805  owl_fmtext_append_normal(&fm, buff);
1806  owl_fmtext_append_normal(&fm, "\n");
1807
1808  sprintf(buff, "  Startup Time: %s", ctime(&start));
1809  owl_fmtext_append_normal(&fm, buff);
1810
1811  up=owl_global_get_runtime(&g);
1812  days=up/86400;
1813  up-=days*86400;
1814  hours=up/3600;
1815  up-=hours*3600;
1816  minutes=up/60;
1817  up-=minutes*60;
1818  sprintf(buff, "  Run Time: %i days %2.2i:%2.2i:%2.2i\n", days, hours, minutes, up);
1819  owl_fmtext_append_normal(&fm, buff);
1820
1821  owl_fmtext_append_normal(&fm, "\nProtocol Options:\n");
1822  owl_fmtext_append_normal(&fm, "  Zephyr included    : ");
1823  if (owl_global_is_havezephyr(&g)) {
1824    owl_fmtext_append_normal(&fm, "yes\n");
1825  } else {
1826    owl_fmtext_append_normal(&fm, "no\n");
1827  }
1828  owl_fmtext_append_normal(&fm, "  AIM included       : yes\n");
1829  owl_fmtext_append_normal(&fm, "  Loopback included  : yes\n");
1830
1831
1832  owl_fmtext_append_normal(&fm, "\nBuild Options:\n");
1833  owl_fmtext_append_normal(&fm, "  Stderr redirection : ");
1834#if OWL_STDERR_REDIR
1835  owl_fmtext_append_normal(&fm, "yes\n");
1836#else
1837  owl_fmtext_append_normal(&fm, "no\n");
1838#endif
1839 
1840
1841  owl_fmtext_append_normal(&fm, "\nMemory Usage:\n");
1842  owl_fmtext_append_normal(&fm, "  Not currently available.\n");
1843  /*
1844  sprintf(buff, "%sMemory Malloced: %i\n", buff, owl_global_get_malloced(&g));
1845  sprintf(buff, "%sMemory Freed: %i\n", buff, owl_global_get_freed(&g));
1846  sprintf(buff, "%sMemory In Use: %i\n", buff, owl_global_get_meminuse(&g));
1847  */
1848
1849  owl_fmtext_append_normal(&fm, "\nAIM Status:\n");
1850  owl_fmtext_append_normal(&fm, "  Logged in: ");
1851  if (owl_global_is_aimloggedin(&g)) {
1852    owl_fmtext_append_normal(&fm, owl_global_get_aim_screenname(&g));
1853    owl_fmtext_append_normal(&fm, "\n");
1854  } else {
1855    owl_fmtext_append_normal(&fm, "(not logged in)\n");
1856  }
1857
1858  owl_fmtext_append_normal(&fm, "  Processing events: ");
1859  if (owl_global_is_doaimevents(&g)) {
1860    owl_fmtext_append_normal(&fm, "yes\n");
1861  } else {
1862    owl_fmtext_append_normal(&fm, "no\n");
1863  }
1864
1865  owl_function_popless_fmtext(&fm);
1866  owl_fmtext_free(&fm);
1867}
1868
1869void owl_function_show_term()
1870{
1871  owl_fmtext fm;
1872  char buff[LINE];
1873
1874  owl_fmtext_init_null(&fm);
1875  sprintf(buff, "Terminal Lines: %i\nTerminal Columns: %i\n",
1876          owl_global_get_lines(&g),
1877          owl_global_get_cols(&g));
1878  owl_fmtext_append_normal(&fm, buff);
1879
1880  if (owl_global_get_hascolors(&g)) {
1881    owl_fmtext_append_normal(&fm, "Color: Yes\n");
1882    sprintf(buff, "Number of color pairs: %i\n", owl_global_get_colorpairs(&g));
1883    owl_fmtext_append_normal(&fm, buff);
1884    sprintf(buff, "Can change colors: %s\n", can_change_color() ? "yes" : "no");
1885    owl_fmtext_append_normal(&fm, buff);
1886  } else {
1887    owl_fmtext_append_normal(&fm, "Color: No\n");
1888  }
1889
1890  owl_function_popless_fmtext(&fm);
1891  owl_fmtext_free(&fm);
1892}
1893
1894/* if type = 0 then normal reply.
1895 * if type = 1 then it's a reply to sender
1896 * if enter = 0 then allow the command to be edited
1897 * if enter = 1 then don't wait for editing
1898 */
1899void owl_function_reply(int type, int enter)
1900{
1901  char *buff=NULL, *oldbuff;
1902  owl_message *m;
1903  owl_filter *f;
1904 
1905  if (owl_view_get_size(owl_global_get_current_view(&g))==0) {
1906    owl_function_error("No message selected");
1907  } else {
1908    char *class, *inst, *to, *cc=NULL;
1909   
1910    m=owl_view_get_element(owl_global_get_current_view(&g), owl_global_get_curmsg(&g));
1911    if (!m) {
1912      owl_function_error("No message selected");
1913      return;
1914    }
1915
1916    /* first check if we catch the reply-lockout filter */
1917    f=owl_global_get_filter(&g, "reply-lockout");
1918    if (f) {
1919      if (owl_filter_message_match(f, m)) {
1920        owl_function_error("Sorry, replies to this message have been disabled by the reply-lockout filter");
1921        return;
1922      }
1923    }
1924
1925    /* admin */
1926    if (owl_message_is_type_admin(m)) {
1927      owl_function_error("You cannot reply to an admin message");
1928      return;
1929    }
1930
1931    /* loopback */
1932    if (owl_message_is_type_loopback(m)) {
1933      owl_function_loopwrite_setup();
1934      return;
1935    }
1936
1937    /* zephyr */
1938    if (owl_message_is_type_zephyr(m)) {
1939      /* if it's a zephyr we sent, send it out the same way again */
1940      if (owl_message_is_direction_out(m)) {
1941        owl_function_zwrite_setup(owl_message_get_zwriteline(m));
1942        owl_global_set_buffercommand(&g, owl_message_get_zwriteline(m));
1943        return;
1944      }
1945
1946      /* Special case a personal reply to a webzephyr user on a class */
1947      if ((type==1) && !strcasecmp(owl_message_get_opcode(m), OWL_WEBZEPHYR_OPCODE)) {
1948        class=OWL_WEBZEPHYR_CLASS;
1949        inst=owl_message_get_sender(m);
1950        to=OWL_WEBZEPHYR_PRINCIPAL;
1951      } else if (!strcasecmp(owl_message_get_class(m), OWL_WEBZEPHYR_CLASS) && owl_message_is_loginout(m)) {
1952        /* Special case LOGIN/LOGOUT notifications on class "webzephyr" */
1953        class=OWL_WEBZEPHYR_CLASS;
1954        inst=owl_message_get_instance(m);
1955        to=OWL_WEBZEPHYR_PRINCIPAL;
1956      } else if (owl_message_is_loginout(m)) {
1957        /* Normal LOGIN/LOGOUT messages */
1958        class="MESSAGE";
1959        inst="PERSONAL";
1960        to=owl_message_get_sender(m);
1961      } else if (type==1) {
1962        /* Personal reply */
1963        class="MESSAGE";
1964        inst="PERSONAL";
1965        to=owl_message_get_sender(m);
1966      } else {
1967        /* General reply */
1968        class=owl_message_get_class(m);
1969        inst=owl_message_get_instance(m);
1970        to=owl_message_get_recipient(m);
1971        cc=owl_message_get_cc(m);
1972        if (!strcmp(to, "") || !strcmp(to, "*")) {
1973          to="";
1974        } else if (to[0]=='@') {
1975          /* leave it, to get the realm */
1976        } else {
1977          to=owl_message_get_sender(m);
1978        }
1979      }
1980       
1981      /* create the command line */
1982      if (!strcasecmp(owl_message_get_opcode(m), "CRYPT")) {
1983        buff=owl_strdup("zcrypt");
1984      } else {
1985        buff = owl_strdup("zwrite");
1986      }
1987      if (strcasecmp(class, "message")) {
1988        buff = owl_sprintf("%s -c %s%s%s", oldbuff=buff, owl_getquoting(class), class, owl_getquoting(class));
1989        owl_free(oldbuff);
1990      }
1991      if (strcasecmp(inst, "personal")) {
1992        buff = owl_sprintf("%s -i %s%s%s", oldbuff=buff, owl_getquoting(inst), inst, owl_getquoting(inst));
1993        owl_free(oldbuff);
1994      }
1995      if (*to != '\0') {
1996        char *tmp, *oldtmp, *tmp2;
1997        tmp=short_zuser(to);
1998        if (cc) {
1999          tmp = owl_util_uniq(oldtmp=tmp, cc, "-");
2000          owl_free(oldtmp);
2001          buff = owl_sprintf("%s -C %s", oldbuff=buff, tmp);
2002          owl_free(oldbuff);
2003        } else {
2004          if (owl_global_is_smartstrip(&g)) {
2005            tmp2=tmp;
2006            tmp=owl_zephyr_smartstripped_user(tmp2);
2007            owl_free(tmp2);
2008          }
2009          buff = owl_sprintf("%s %s", oldbuff=buff, tmp);
2010          owl_free(oldbuff);
2011        }
2012        owl_free(tmp);
2013      }
2014      if (cc) owl_free(cc);
2015    }
2016
2017    /* aim */
2018    if (owl_message_is_type_aim(m)) {
2019      if (owl_message_is_direction_out(m)) {
2020        buff=owl_sprintf("aimwrite %s", owl_message_get_recipient(m));
2021      } else {
2022        buff=owl_sprintf("aimwrite %s", owl_message_get_sender(m));
2023      }
2024    }
2025   
2026    if (enter) {
2027      owl_history *hist = owl_global_get_cmd_history(&g);
2028      owl_history_store(hist, buff);
2029      owl_history_reset(hist);
2030      owl_function_command_norv(buff);
2031    } else {
2032      owl_function_start_command(buff);
2033    }
2034    owl_free(buff);
2035  }
2036}
2037
2038void owl_function_zlocate(int argc, char **argv, int auth)
2039{
2040  owl_fmtext fm;
2041  char *ptr, buff[LINE];
2042  int i;
2043
2044  owl_fmtext_init_null(&fm);
2045
2046  for (i=0; i<argc; i++) {
2047    ptr=long_zuser(argv[i]);
2048    owl_zephyr_zlocate(ptr, buff, auth);
2049    owl_fmtext_append_normal(&fm, buff);
2050    owl_free(ptr);
2051  }
2052
2053  owl_function_popless_fmtext(&fm);
2054  owl_fmtext_free(&fm);
2055}
2056
2057void owl_function_start_command(char *line)
2058{
2059  int i, j;
2060  owl_editwin *tw;
2061
2062  tw=owl_global_get_typwin(&g);
2063  owl_global_set_typwin_active(&g);
2064  owl_editwin_new_style(tw, OWL_EDITWIN_STYLE_ONELINE, 
2065                        owl_global_get_cmd_history(&g));
2066
2067  owl_editwin_set_locktext(tw, "command: ");
2068  owl_global_set_needrefresh(&g);
2069
2070  j=strlen(line);
2071  for (i=0; i<j; i++) {
2072    owl_editwin_process_char(tw, line[i]);
2073  }
2074  owl_editwin_redisplay(tw, 0);
2075
2076  owl_context_set_editline(owl_global_get_context(&g), tw);
2077  owl_function_activate_keymap("editline");
2078}
2079
2080void owl_function_start_question(char *line)
2081{
2082  owl_editwin *tw;
2083
2084  tw=owl_global_get_typwin(&g);
2085  owl_global_set_typwin_active(&g);
2086  owl_editwin_new_style(tw, OWL_EDITWIN_STYLE_ONELINE, owl_global_get_cmd_history(&g));
2087
2088  owl_editwin_set_locktext(tw, line);
2089  owl_global_set_needrefresh(&g);
2090
2091  owl_editwin_redisplay(tw, 0);
2092
2093  owl_context_set_editresponse(owl_global_get_context(&g), tw);
2094  owl_function_activate_keymap("editresponse");
2095}
2096
2097void owl_function_start_password(char *line)
2098{
2099  owl_editwin *tw;
2100
2101  tw=owl_global_get_typwin(&g);
2102  owl_global_set_typwin_active(&g);
2103  owl_editwin_new_style(tw, OWL_EDITWIN_STYLE_ONELINE, owl_global_get_cmd_history(&g));
2104  owl_editwin_set_echochar(tw, '*');
2105
2106  owl_editwin_set_locktext(tw, line);
2107  owl_global_set_needrefresh(&g);
2108
2109  owl_editwin_redisplay(tw, 0);
2110
2111  owl_context_set_editresponse(owl_global_get_context(&g), tw);
2112  owl_function_activate_keymap("editresponse");
2113}
2114
2115char *owl_function_exec(int argc, char **argv, char *buff, int type)
2116{
2117  /* if type == 1 display in a popup
2118   * if type == 2 display an admin messages
2119   * if type == 0 return output
2120   * else display in a popup
2121   */
2122  char *newbuff, *redirect = " 2>&1 < /dev/null";
2123  char *out, buff2[1024];
2124  int size;
2125  FILE *p;
2126
2127#if OWL_STDERR_REDIR
2128  redirect = " < /dev/null";
2129#endif
2130
2131  if (argc<2) {
2132    owl_function_error("Wrong number of arguments to the exec command");
2133    return NULL;
2134  }
2135
2136  buff = skiptokens(buff, 1);
2137  newbuff = owl_malloc(strlen(buff)+strlen(redirect)+1);
2138  strcpy(newbuff, buff);
2139  strcat(newbuff, redirect);
2140
2141  p=popen(newbuff, "r");
2142  out=owl_malloc(1024);
2143  size=1024;
2144  strcpy(out, "");
2145  while (fgets(buff2, 1024, p)!=NULL) {
2146    size+=1024;
2147    out=owl_realloc(out, size);
2148    strcat(out, buff2);
2149  }
2150  pclose(p);
2151
2152  if (type==1) {
2153    owl_function_popless_text(out);
2154  } else if (type==0) {
2155    return out;
2156  } else if (type==2) {
2157    owl_function_adminmsg(buff, out);
2158  } else {
2159    owl_function_popless_text(out);
2160  }
2161  owl_free(out);
2162  return NULL;
2163}
2164
2165char *owl_function_perl(int argc, char **argv, char *buff, int type)
2166{
2167  /* if type == 1 display in a popup
2168   * if type == 2 display an admin messages
2169   * if type == 0 return output
2170   * else display in a popup
2171   */
2172  char *perlout;
2173
2174  if (argc<2) {
2175    owl_function_error("Wrong number of arguments to perl command");
2176    return NULL;
2177  }
2178
2179  /* consume first token (argv[0]) */
2180  buff = skiptokens(buff, 1);
2181
2182  perlout = owl_perlconfig_execute(buff);
2183  if (perlout) { 
2184    if (type==1) {
2185      owl_function_popless_text(perlout);
2186    } else if (type==2) {
2187      owl_function_adminmsg(buff, perlout);
2188    } else if (type==0) {
2189      return perlout;
2190    } else {
2191      owl_function_popless_text(perlout);
2192    }
2193    owl_free(perlout);
2194  }
2195  return NULL;
2196}
2197
2198#if 0
2199void owl_function_change_view_old(char *filtname)
2200{
2201  owl_view *v;
2202  owl_filter *f;
2203  int curid=-1, newpos, curmsg;
2204  owl_message *curm=NULL;
2205
2206  v=owl_global_get_current_view(&g);
2207  curmsg=owl_global_get_curmsg(&g);
2208  if (curmsg==-1) {
2209    owl_function_debugmsg("Hit the curmsg==-1 case in change_view");
2210  } else {
2211    curm=owl_view_get_element(v, curmsg);
2212    if (curm) {
2213      curid=owl_message_get_id(curm);
2214      owl_view_save_curmsgid(v, curid);
2215    }
2216  }
2217
2218  /* grab the filter */;
2219  f=owl_global_get_filter(&g, filtname);
2220  if (!f) {
2221    owl_function_error("Unknown filter %s", filtname);
2222    return;
2223  }
2224
2225  /* free the existing view and create a new one based on the filter */
2226  owl_view_free(v);
2227  owl_view_create(v, f);
2228
2229  /* Figure out what to set the current message to.
2230   * - If the view we're leaving has messages in it, go to the closest message
2231   *   to the last message pointed to in that view.
2232   * - If the view we're leaving is empty, try to restore the position
2233   *   from the last time we were in the new view.  */
2234  if (curm) {
2235    newpos = owl_view_get_nearest_to_msgid(v, curid);
2236  } else {
2237    newpos = owl_view_get_nearest_to_saved(v);
2238  }
2239
2240  owl_global_set_curmsg(&g, newpos);
2241
2242  owl_function_calculate_topmsg(OWL_DIRECTION_DOWNWARDS);
2243  owl_mainwin_redisplay(owl_global_get_mainwin(&g));
2244  owl_global_set_direction_downwards(&g);
2245}
2246#endif
2247
2248void owl_function_change_view(char *filtname)
2249{
2250  owl_view *v;
2251  owl_filter *f;
2252  int curid=-1, newpos, curmsg;
2253  owl_message *curm=NULL;
2254
2255  v=owl_global_get_current_view(&g);
2256
2257  curmsg=owl_global_get_curmsg(&g);
2258  if (curmsg==-1) {
2259    owl_function_debugmsg("Hit the curmsg==-1 case in change_view");
2260  } else {
2261    curm=owl_view_get_element(v, curmsg);
2262    if (curm) {
2263      curid=owl_message_get_id(curm);
2264      owl_view_save_curmsgid(v, curid);
2265    }
2266  }
2267
2268  f=owl_global_get_filter(&g, filtname);
2269  if (!f) {
2270    owl_function_error("Unknown filter %s", filtname);
2271    return;
2272  }
2273
2274  owl_view_new_filter(v, f);
2275
2276  /* Figure out what to set the current message to.
2277   * - If the view we're leaving has messages in it, go to the closest message
2278   *   to the last message pointed to in that view.
2279   * - If the view we're leaving is empty, try to restore the position
2280   *   from the last time we were in the new view.  */
2281  if (curm) {
2282    newpos = owl_view_get_nearest_to_msgid(v, curid);
2283  } else {
2284    newpos = owl_view_get_nearest_to_saved(v);
2285  }
2286
2287  owl_global_set_curmsg(&g, newpos);
2288  owl_function_calculate_topmsg(OWL_DIRECTION_DOWNWARDS);
2289  owl_mainwin_redisplay(owl_global_get_mainwin(&g));
2290  owl_global_set_direction_downwards(&g);
2291}
2292
2293void owl_function_create_filter(int argc, char **argv)
2294{
2295  owl_filter *f;
2296  owl_view *v;
2297  int ret, inuse=0;
2298
2299  if (argc < 2) {
2300    owl_function_error("Wrong number of arguments to filter command");
2301    return;
2302  }
2303
2304  v=owl_global_get_current_view(&g);
2305
2306  /* don't touch the all filter */
2307  if (!strcmp(argv[1], "all")) {
2308    owl_function_error("You may not change the 'all' filter.");
2309    return;
2310  }
2311
2312  /* deal with the case of trying change the filter color */
2313  if (argc==4 && !strcmp(argv[2], "-c")) {
2314    f=owl_global_get_filter(&g, argv[1]);
2315    if (!f) {
2316      owl_function_error("The filter '%s' does not exist.", argv[1]);
2317      return;
2318    }
2319    if (owl_util_string_to_color(argv[3])==-1) {
2320      owl_function_error("The color '%s' is not available.", argv[3]);
2321      return;
2322    }
2323    owl_filter_set_color(f, owl_util_string_to_color(argv[3]));
2324    owl_global_set_needrefresh(&g);
2325    owl_mainwin_redisplay(owl_global_get_mainwin(&g));
2326    return;
2327  }
2328
2329  /* create the filter and check for errors */
2330  f=owl_malloc(sizeof(owl_filter));
2331  ret=owl_filter_init(f, argv[1], argc-2, argv+2);
2332  if (ret==-1) {
2333    owl_free(f);
2334    owl_function_error("Invalid filter syntax");
2335    return;
2336  }
2337
2338  /* if the named filter is in use by the current view, remember it */
2339  if (!strcmp(owl_view_get_filtname(v), argv[1])) {
2340    inuse=1;
2341  }
2342
2343  /* if the named filter already exists, nuke it */
2344  if (owl_global_get_filter(&g, argv[1])) {
2345    owl_global_remove_filter(&g, argv[1]);
2346  }
2347
2348  /* add the filter */
2349  owl_global_add_filter(&g, f);
2350
2351  /* if it was in use by the current view then update */
2352  if (inuse) {
2353    owl_function_change_view(argv[1]);
2354  }
2355  owl_global_set_needrefresh(&g);
2356  owl_mainwin_redisplay(owl_global_get_mainwin(&g));
2357}
2358
2359void owl_function_show_filters()
2360{
2361  owl_list *l;
2362  owl_filter *f;
2363  int i, j;
2364  owl_fmtext fm;
2365
2366  owl_fmtext_init_null(&fm);
2367
2368  l=owl_global_get_filterlist(&g);
2369  j=owl_list_get_size(l);
2370
2371  owl_fmtext_append_bold(&fm, "Filters:\n");
2372
2373  for (i=0; i<j; i++) {
2374    f=owl_list_get_element(l, i);
2375    owl_fmtext_append_normal(&fm, "   ");
2376    if (owl_global_get_hascolors(&g)) {
2377      owl_fmtext_append_normal_color(&fm, owl_filter_get_name(f), owl_filter_get_color(f));
2378    } else {
2379      owl_fmtext_append_normal(&fm, owl_filter_get_name(f));
2380    }
2381    owl_fmtext_append_normal(&fm, "\n");
2382  }
2383  owl_function_popless_fmtext(&fm);
2384  owl_fmtext_free(&fm);
2385}
2386
2387void owl_function_show_filter(char *name)
2388{
2389  owl_filter *f;
2390  char buff[5000];
2391
2392  f=owl_global_get_filter(&g, name);
2393  if (!f) {
2394    owl_function_error("There is no filter named %s", name);
2395    return;
2396  }
2397  owl_filter_print(f, buff);
2398  owl_function_popless_text(buff);
2399}
2400
2401void owl_function_show_zpunts()
2402{
2403  owl_filter *f;
2404  owl_list *fl;
2405  char buff[5000];
2406  owl_fmtext fm;
2407  int i, j;
2408
2409  owl_fmtext_init_null(&fm);
2410
2411  fl=owl_global_get_puntlist(&g);
2412  j=owl_list_get_size(fl);
2413  owl_fmtext_append_bold(&fm, "Active zpunt filters:\n");
2414
2415  for (i=0; i<j; i++) {
2416    f=owl_list_get_element(fl, i);
2417    owl_filter_print(f, buff);
2418    owl_fmtext_append_normal(&fm, buff);
2419  }
2420  owl_function_popless_fmtext(&fm);
2421  owl_fmtext_free(&fm);
2422}
2423
2424/* Create a filter for a class, instance if one doesn't exist.  If
2425 * instance is NULL then catch all messgaes in the class.  Returns the
2426 * name of the filter, which the caller must free.
2427 */
2428char *owl_function_classinstfilt(char *class, char *instance) 
2429{
2430  owl_list *fl;
2431  owl_filter *f;
2432  char *argbuff, *filtname;
2433  char *tmpclass, *tmpinstance = NULL;
2434  int len;
2435
2436  fl=owl_global_get_filterlist(&g);
2437
2438  /* name for the filter */
2439  len=strlen(class)+30;
2440  if (instance) len+=strlen(instance);
2441  filtname=owl_malloc(len);
2442  if (!instance) {
2443    sprintf(filtname, "class-%s", class);
2444  } else {
2445    sprintf(filtname, "class-%s-instance-%s", class, instance);
2446  }
2447  /* downcase it */
2448  downstr(filtname);
2449  /* turn spaces into dots */
2450  owl_text_tr(filtname, ' ', '.');
2451 
2452  /* if it already exists then go with it.  This lets users override */
2453  if (owl_global_get_filter(&g, filtname)) {
2454    return(filtname);
2455  }
2456
2457  /* create the new filter */
2458  argbuff=owl_malloc(len+20);
2459  tmpclass=owl_text_quote(class, OWL_REGEX_QUOTECHARS, OWL_REGEX_QUOTEWITH);
2460  owl_text_tr(tmpclass, ' ', '.');
2461  if (instance) {
2462    tmpinstance=owl_text_quote(instance, OWL_REGEX_QUOTECHARS, OWL_REGEX_QUOTEWITH);
2463    owl_text_tr(tmpinstance, ' ', '.');
2464  }
2465  sprintf(argbuff, "( class ^%s$ )", tmpclass);
2466  if (tmpinstance) {
2467    sprintf(argbuff, "%s and ( instance ^%s$ )", argbuff, tmpinstance);
2468  }
2469  owl_free(tmpclass);
2470  if (tmpinstance) owl_free(tmpinstance);
2471
2472  f=owl_malloc(sizeof(owl_filter));
2473  owl_filter_init_fromstring(f, filtname, argbuff);
2474
2475  /* add it to the global list */
2476  owl_global_add_filter(&g, f);
2477
2478  owl_free(argbuff);
2479  return(filtname);
2480}
2481
2482/* Create a filter for personal zephyrs to or from the specified
2483 * zephyr user.  Includes login/logout notifications for the user.
2484 * The name of the filter will be 'user-<user>'.  If a filter already
2485 * exists with this name, no new filter will be created.  This allows
2486 * the configuration to override this function.  Returns the name of
2487 * the filter, which the caller must free.
2488 */
2489char *owl_function_zuserfilt(char *user)
2490{
2491  owl_filter *f;
2492  char *argbuff, *longuser, *shortuser, *filtname;
2493
2494  /* stick the local realm on if it's not there */
2495  longuser=long_zuser(user);
2496  shortuser=short_zuser(user);
2497
2498  /* name for the filter */
2499  filtname=owl_malloc(strlen(shortuser)+20);
2500  sprintf(filtname, "user-%s", shortuser);
2501
2502  /* if it already exists then go with it.  This lets users override */
2503  if (owl_global_get_filter(&g, filtname)) {
2504    return(owl_strdup(filtname));
2505  }
2506
2507  /* create the new-internal filter */
2508  f=owl_malloc(sizeof(owl_filter));
2509
2510  argbuff=owl_malloc(strlen(longuser)+1000);
2511  sprintf(argbuff, "( type ^zephyr$ and ( class ^message$ and instance ^personal$ and ");
2512  sprintf(argbuff, "%s ( ( direction ^in$ and sender ^%s$ ) or ( direction ^out$ and recipient ^%s$ ) ) )", argbuff, longuser, longuser);
2513  sprintf(argbuff, "%s or ( ( class ^login$ ) and ( sender ^%s$ ) ) )", argbuff, longuser);
2514
2515  owl_filter_init_fromstring(f, filtname, argbuff);
2516
2517  /* add it to the global list */
2518  owl_global_add_filter(&g, f);
2519
2520  /* free stuff */
2521  owl_free(argbuff);
2522  owl_free(longuser);
2523  owl_free(shortuser);
2524
2525  return(filtname);
2526}
2527
2528/* Create a filter for AIM IM messages to or from the specified
2529 * screenname.  The name of the filter will be 'aimuser-<user>'.  If a
2530 * filter already exists with this name, no new filter will be
2531 * created.  This allows the configuration to override this function.
2532 * Returns the name of the filter, which the caller must free.
2533 */
2534char *owl_function_aimuserfilt(char *user)
2535{
2536  owl_filter *f;
2537  char *argbuff, *filtname;
2538
2539  /* name for the filter */
2540  filtname=owl_malloc(strlen(user)+40);
2541  sprintf(filtname, "aimuser-%s", user);
2542
2543  /* if it already exists then go with it.  This lets users override */
2544  if (owl_global_get_filter(&g, filtname)) {
2545    return(owl_strdup(filtname));
2546  }
2547
2548  /* create the new-internal filter */
2549  f=owl_malloc(sizeof(owl_filter));
2550
2551  argbuff=owl_malloc(1000);
2552  sprintf(argbuff,
2553          "( type ^aim$ and ( ( sender ^%s$ and recipient ^%s$ ) or ( sender ^%s$ and recipient ^%s$ ) ) )",
2554          user, owl_global_get_aim_screenname(&g), owl_global_get_aim_screenname(&g), user);
2555
2556  owl_filter_init_fromstring(f, filtname, argbuff);
2557
2558  /* add it to the global list */
2559  owl_global_add_filter(&g, f);
2560
2561  /* free stuff */
2562  owl_free(argbuff);
2563
2564  return(filtname);
2565}
2566
2567char *owl_function_typefilt(char *type)
2568{
2569  owl_filter *f;
2570  char *argbuff, *filtname;
2571
2572  /* name for the filter */
2573  filtname=owl_sprintf("type-%s", type);
2574
2575  /* if it already exists then go with it.  This lets users override */
2576  if (owl_global_get_filter(&g, filtname)) {
2577    return filtname;
2578  }
2579
2580  /* create the new-internal filter */
2581  f=owl_malloc(sizeof(owl_filter));
2582
2583  argbuff = owl_sprintf("type ^%s$", type);
2584
2585  owl_filter_init_fromstring(f, filtname, argbuff);
2586
2587  /* add it to the global list */
2588  owl_global_add_filter(&g, f);
2589
2590  /* free stuff */
2591  owl_free(argbuff);
2592
2593  return filtname;
2594}
2595
2596/* If flag is 1, marks for deletion.  If flag is 0,
2597 * unmarks for deletion. */
2598void owl_function_delete_curview_msgs(int flag)
2599{
2600  owl_view *v;
2601  int i, j;
2602
2603  v=owl_global_get_current_view(&g);
2604  j=owl_view_get_size(v);
2605  for (i=0; i<j; i++) {
2606    if (flag == 1) {
2607      owl_message_mark_delete(owl_view_get_element(v, i));
2608    } else if (flag == 0) {
2609      owl_message_unmark_delete(owl_view_get_element(v, i));
2610    }
2611  }
2612
2613  owl_function_makemsg("%i messages marked for %sdeletion", j, flag?"":"un");
2614
2615  owl_mainwin_redisplay(owl_global_get_mainwin(&g)); 
2616}
2617
2618/* Create a filter based on the current message.  Returns the name of
2619 * a filter or null.  The caller must free this name.
2620 *
2621 * if the curmsg is a personal zephyr return a filter name
2622 *    to the zephyr converstaion with that user.
2623 * If the curmsg is a zephyr class message, instance foo, recip *,
2624 *    return a filter name to the class, inst.
2625 * If the curmsg is a zephyr class message and type==0 then
2626 *    return a filter name for just the class.
2627 * If the curmsg is a zephyr class message and type==1 then
2628 *    return a filter name for the class and instance.
2629 * If the curmsg is a personal AIM message returna  filter
2630 *    name to the AIM conversation with that user
2631 */
2632char *owl_function_smartfilter(int type)
2633{
2634  owl_view *v;
2635  owl_message *m;
2636  char *zperson, *filtname=NULL;
2637 
2638  v=owl_global_get_current_view(&g);
2639  m=owl_view_get_element(v, owl_global_get_curmsg(&g));
2640
2641  if (!m || owl_view_get_size(v)==0) {
2642    owl_function_error("No message selected\n");
2643    return(NULL);
2644  }
2645
2646  /* very simple handling of admin messages for now */
2647  if (owl_message_is_type_admin(m)) {
2648    return(owl_function_typefilt("admin"));
2649  }
2650
2651  /* very simple handling of loopback messages for now */
2652  if (owl_message_is_type_loopback(m)) {
2653    return(owl_function_typefilt("loopback"));
2654  }
2655
2656  /* aim messages */
2657  if (owl_message_is_type_aim(m)) {
2658    if (owl_message_is_direction_in(m)) {
2659      filtname=owl_function_aimuserfilt(owl_message_get_sender(m));
2660    } else if (owl_message_is_direction_out(m)) {
2661      filtname=owl_function_aimuserfilt(owl_message_get_recipient(m));
2662    }
2663    return(filtname);
2664  }
2665
2666  /* narrow personal and login messages to the sender or recip as appropriate */
2667  if (owl_message_is_personal(m) || owl_message_is_loginout(m)) {
2668    if (owl_message_is_type_zephyr(m)) {
2669      if (owl_message_is_direction_in(m)) {
2670        zperson=short_zuser(owl_message_get_sender(m));
2671      } else {
2672        zperson=short_zuser(owl_message_get_recipient(m));
2673      }
2674      filtname=owl_function_zuserfilt(zperson);
2675      owl_free(zperson);
2676      return(filtname);
2677    }
2678    return(NULL);
2679  }
2680
2681  /* narrow class MESSAGE, instance foo, recip * messages to class, inst */
2682  if (!strcasecmp(owl_message_get_class(m), "message") && !owl_message_is_personal(m)) {
2683    filtname=owl_function_classinstfilt(owl_message_get_class(m), owl_message_get_instance(m));
2684    return(filtname);
2685  }
2686
2687  /* otherwise narrow to the class */
2688  if (type==0) {
2689    filtname=owl_function_classinstfilt(owl_message_get_class(m), NULL);
2690  } else if (type==1) {
2691    filtname=owl_function_classinstfilt(owl_message_get_class(m), owl_message_get_instance(m));
2692  }
2693  return(filtname);
2694}
2695
2696void owl_function_smartzpunt(int type)
2697{
2698  /* Starts a zpunt command based on the current class,instance pair.
2699   * If type=0, uses just class.  If type=1, uses instance as well. */
2700  owl_view *v;
2701  owl_message *m;
2702  char *cmd, *cmdprefix, *mclass, *minst;
2703 
2704  v=owl_global_get_current_view(&g);
2705  m=owl_view_get_element(v, owl_global_get_curmsg(&g));
2706
2707  if (!m || owl_view_get_size(v)==0) {
2708    owl_function_error("No message selected\n");
2709    return;
2710  }
2711
2712  /* for now we skip admin messages. */
2713  if (owl_message_is_type_admin(m)
2714      || owl_message_is_loginout(m)
2715      || !owl_message_is_type_zephyr(m)) {
2716    owl_function_error("smartzpunt doesn't support this message type.");
2717    return;
2718  }
2719
2720  mclass = owl_message_get_class(m);
2721  minst = owl_message_get_instance(m);
2722  if (!mclass || !*mclass || *mclass==' '
2723      || (!strcasecmp(mclass, "message") && !strcasecmp(minst, "personal"))
2724      || (type && (!minst || !*minst|| *minst==' '))) {
2725    owl_function_error("smartzpunt can't safely do this for <%s,%s>",
2726                         mclass, minst);
2727  } else {
2728    cmdprefix = "start-command zpunt ";
2729    cmd = owl_malloc(strlen(cmdprefix)+strlen(mclass)+strlen(minst)+10);
2730    strcpy(cmd, cmdprefix);
2731    strcat(cmd, owl_getquoting(mclass));
2732    strcat(cmd, mclass);
2733    strcat(cmd, owl_getquoting(mclass));
2734    if (type) {
2735      strcat(cmd, " ");
2736      strcat(cmd, owl_getquoting(minst));
2737      strcat(cmd, minst);
2738      strcat(cmd, owl_getquoting(minst));
2739    } else {
2740      strcat(cmd, " *");
2741    }
2742    owl_function_command(cmd);
2743    owl_free(cmd);
2744  }
2745}
2746
2747void owl_function_color_current_filter(char *color)
2748{
2749  owl_filter *f;
2750  char *name;
2751
2752  name=owl_view_get_filtname(owl_global_get_current_view(&g));
2753  f=owl_global_get_filter(&g, name);
2754  if (!f) {
2755    owl_function_error("Unknown filter");
2756    return;
2757  }
2758
2759  /* don't touch the all filter */
2760  if (!strcmp(name, "all")) {
2761    owl_function_error("You may not change the 'all' filter.");
2762    return;
2763  }
2764
2765  /* deal with the case of trying change the filter color */
2766  if (owl_util_string_to_color(color)==-1) {
2767    owl_function_error("No color named '%s' avilable.");
2768    return;
2769  }
2770  owl_filter_set_color(f, owl_util_string_to_color(color));
2771  owl_global_set_needrefresh(&g);
2772  owl_mainwin_redisplay(owl_global_get_mainwin(&g));
2773}
2774
2775void owl_function_show_colors()
2776{
2777  owl_fmtext fm;
2778
2779  owl_fmtext_init_null(&fm);
2780  owl_fmtext_append_normal_color(&fm, "default\n", OWL_COLOR_DEFAULT);
2781  owl_fmtext_append_normal_color(&fm, "red\n", OWL_COLOR_RED);
2782  owl_fmtext_append_normal_color(&fm, "green\n", OWL_COLOR_GREEN);
2783  owl_fmtext_append_normal_color(&fm, "yellow\n", OWL_COLOR_YELLOW);
2784  owl_fmtext_append_normal_color(&fm, "blue\n", OWL_COLOR_BLUE);
2785  owl_fmtext_append_normal_color(&fm, "magenta\n", OWL_COLOR_MAGENTA);
2786  owl_fmtext_append_normal_color(&fm, "cyan\n", OWL_COLOR_CYAN);
2787  owl_fmtext_append_normal_color(&fm, "white\n", OWL_COLOR_WHITE);
2788
2789  owl_function_popless_fmtext(&fm);
2790  owl_fmtext_free(&fm);
2791}
2792
2793/* add the given class, inst, recip to the punt list for filtering.
2794 *   if direction==0 then punt
2795 *   if direction==1 then unpunt
2796 */
2797void owl_function_zpunt(char *class, char *inst, char *recip, int direction)
2798{
2799  owl_filter *f;
2800  owl_list *fl;
2801  char *buff;
2802  char *quoted;
2803  int ret, i, j;
2804
2805  fl=owl_global_get_puntlist(&g);
2806
2807  /* first, create the filter */
2808  f=malloc(sizeof(owl_filter));
2809  buff=malloc(strlen(class)+strlen(inst)+strlen(recip)+100);
2810  strcpy(buff, "class");
2811  if (!strcmp(class, "*")) {
2812    strcat(buff, " .*");
2813  } else {
2814    quoted=owl_text_quote(class, OWL_REGEX_QUOTECHARS, OWL_REGEX_QUOTEWITH);
2815    owl_text_tr(quoted, ' ', '.');
2816    sprintf(buff, "%s ^%s$", buff, quoted);
2817    owl_free(quoted);
2818  }
2819  if (!strcmp(inst, "*")) {
2820    strcat(buff, " and instance .*");
2821  } else {
2822    quoted=owl_text_quote(inst, OWL_REGEX_QUOTECHARS, OWL_REGEX_QUOTEWITH);
2823    owl_text_tr(quoted, ' ', '.');
2824    sprintf(buff, "%s and instance ^%s$", buff, quoted);
2825    owl_free(quoted);
2826  }
2827  if (strcmp(recip, "*")) {
2828    quoted=owl_text_quote(recip, OWL_REGEX_QUOTECHARS, OWL_REGEX_QUOTEWITH);
2829    owl_text_tr(quoted, ' ', '.');
2830    sprintf(buff, "%s and recipient ^%s$", buff, quoted);
2831    owl_free(quoted);
2832  }
2833 
2834  owl_function_debugmsg("About to filter %s", buff);
2835  ret=owl_filter_init_fromstring(f, "punt-filter", buff);
2836  owl_free(buff);
2837  if (ret) {
2838    owl_function_error("Error creating filter for zpunt");
2839    owl_filter_free(f);
2840    return;
2841  }
2842
2843  /* Check for an identical filter */
2844  j=owl_list_get_size(fl);
2845  for (i=0; i<j; i++) {
2846    if (owl_filter_equiv(f, owl_list_get_element(fl, i))) {
2847      /* if we're punting, then just silently bow out on this duplicate */
2848      if (direction==0) {
2849        owl_filter_free(f);
2850        return;
2851      }
2852
2853      /* if we're unpunting, then remove this filter from the puntlist */
2854      if (direction==1) {
2855        owl_filter_free(owl_list_get_element(fl, i));
2856        owl_list_remove_element(fl, i);
2857        return;
2858      }
2859    }
2860  }
2861
2862  /* If we're punting, add the filter to the global punt list */
2863  if (direction==0) {
2864    owl_list_append_element(fl, f);
2865  }
2866}
2867
2868void owl_function_activate_keymap(char *keymap)
2869{
2870  if (!owl_keyhandler_activate(owl_global_get_keyhandler(&g), keymap)) {
2871    owl_function_error("Unable to activate keymap '%s'", keymap);
2872  }
2873}
2874
2875void owl_function_show_keymaps()
2876{
2877  owl_list l;
2878  owl_fmtext fm;
2879  owl_keymap *km;
2880  owl_keyhandler *kh;
2881  int i, numkm;
2882  char *kmname;
2883
2884  kh = owl_global_get_keyhandler(&g);
2885  owl_fmtext_init_null(&fm);
2886  owl_fmtext_append_bold(&fm, "Keymaps:   ");
2887  owl_fmtext_append_normal(&fm, "(use 'show keymap <name>' for details)\n");
2888  owl_keyhandler_get_keymap_names(kh, &l);
2889  owl_fmtext_append_list(&fm, &l, "\n", owl_function_keymap_summary);
2890  owl_fmtext_append_normal(&fm, "\n");
2891
2892  numkm = owl_list_get_size(&l);
2893  for (i=0; i<numkm; i++) {
2894    kmname = owl_list_get_element(&l, i);
2895    km = owl_keyhandler_get_keymap(kh, kmname);
2896    owl_fmtext_append_bold(&fm, "\n\n----------------------------------------------------------------------------------------------------\n\n");
2897    owl_keymap_get_details(km, &fm);   
2898  }
2899  owl_fmtext_append_normal(&fm, "\n");
2900 
2901  owl_function_popless_fmtext(&fm);
2902  owl_keyhandler_keymap_namelist_free(&l);
2903  owl_fmtext_free(&fm);
2904}
2905
2906char *owl_function_keymap_summary(void *name)
2907{
2908  owl_keymap *km
2909    = owl_keyhandler_get_keymap(owl_global_get_keyhandler(&g), name);
2910  if (km) return owl_keymap_summary(km);
2911  else return(NULL);
2912}
2913
2914/* TODO: implement for real */
2915void owl_function_show_keymap(char *name)
2916{
2917  owl_fmtext fm;
2918  owl_keymap *km;
2919
2920  owl_fmtext_init_null(&fm);
2921  km = owl_keyhandler_get_keymap(owl_global_get_keyhandler(&g), name);
2922  if (km) {
2923    owl_keymap_get_details(km, &fm);
2924  } else {
2925    owl_fmtext_append_normal(&fm, "No such keymap...\n");
2926  } 
2927  owl_function_popless_fmtext(&fm);
2928  owl_fmtext_free(&fm);
2929}
2930
2931void owl_function_help_for_command(char *cmdname)
2932{
2933  owl_fmtext fm;
2934
2935  owl_fmtext_init_null(&fm);
2936  owl_cmd_get_help(owl_global_get_cmddict(&g), cmdname, &fm);
2937  owl_function_popless_fmtext(&fm); 
2938  owl_fmtext_free(&fm);
2939}
2940
2941void owl_function_search_start(char *string, int direction)
2942{
2943  /* direction is OWL_DIRECTION_DOWNWARDS or OWL_DIRECTION_UPWARDS */
2944  owl_global_set_search_active(&g, string);
2945  owl_function_search_helper(0, direction);
2946}
2947
2948void owl_function_search_continue(int direction)
2949{
2950  /* direction is OWL_DIRECTION_DOWNWARDS or OWL_DIRECTION_UPWARDS */
2951  owl_function_search_helper(1, direction);
2952}
2953
2954void owl_function_search_helper(int mode, int direction)
2955{
2956  /* move to a message that contains the string.  If direction is
2957   * OWL_DIRECTION_DOWNWARDS then search fowards, if direction is
2958   * OWL_DIRECTION_UPWARDS then search backwards.
2959   *
2960   * If mode==0 then it will stay on the current message if it
2961   * contains the string.
2962   */
2963
2964  owl_view *v;
2965  int viewsize, i, curmsg, start;
2966  owl_message *m;
2967
2968  v=owl_global_get_current_view(&g);
2969  viewsize=owl_view_get_size(v);
2970  curmsg=owl_global_get_curmsg(&g);
2971 
2972  if (viewsize==0) {
2973    owl_function_error("No messages present");
2974    return;
2975  }
2976
2977  if (mode==0) {
2978    start=curmsg;
2979  } else if (direction==OWL_DIRECTION_DOWNWARDS) {
2980    start=curmsg+1;
2981  } else {
2982    start=curmsg-1;
2983  }
2984
2985  /* bounds check */
2986  if (start>=viewsize || start<0) {
2987    owl_function_error("No further matches found");
2988    return;
2989  }
2990
2991  for (i=start; i<viewsize && i>=0;) {
2992    m=owl_view_get_element(v, i);
2993    if (owl_message_search(m, owl_global_get_search_string(&g))) {
2994      owl_global_set_curmsg(&g, i);
2995      owl_function_calculate_topmsg(direction);
2996      owl_mainwin_redisplay(owl_global_get_mainwin(&g));
2997      if (direction==OWL_DIRECTION_DOWNWARDS) {
2998        owl_global_set_direction_downwards(&g);
2999      } else {
3000        owl_global_set_direction_upwards(&g);
3001      }
3002      return;
3003    }
3004    if (direction==OWL_DIRECTION_DOWNWARDS) {
3005      i++;
3006    } else {
3007      i--;
3008    }
3009  }
3010  owl_mainwin_redisplay(owl_global_get_mainwin(&g));
3011  owl_function_error("No matches found");
3012}
3013
3014/* strips formatting from ztext and returns the unformatted text.
3015 * caller is responsible for freeing. */
3016char *owl_function_ztext_stylestrip(char *zt)
3017{
3018  owl_fmtext fm;
3019  char *plaintext;
3020
3021  owl_fmtext_init_null(&fm);
3022  owl_fmtext_append_ztext(&fm, zt);
3023  plaintext = owl_fmtext_print_plain(&fm);
3024  owl_fmtext_free(&fm);
3025  return(plaintext);
3026}
3027
3028/* Popup a buddylisting.  If filename is NULL use the default .anyone */
3029void owl_function_buddylist(int aim, int zephyr, char *filename)
3030{
3031  int i, j, x, idle;
3032  owl_fmtext fm;
3033  owl_buddylist *bl;
3034  owl_buddy *b;
3035  owl_list anyone;
3036  char *foo, *timestr;
3037#ifdef HAVE_LIBZEPHYR
3038  char *tmp, *user, *line;
3039  ZLocations_t location[200];
3040  int numlocs, ret;
3041#endif
3042
3043  owl_fmtext_init_null(&fm);
3044
3045  /* AIM first */
3046  if (aim && owl_global_is_aimloggedin(&g)) {
3047    bl=owl_global_get_buddylist(&g);
3048
3049    owl_fmtext_append_bold(&fm, "AIM users logged in:\n");
3050    /* we're assuming AIM for now */
3051    j=owl_buddylist_get_size(bl);
3052    for (i=0; i<j; i++) {
3053      b=owl_buddylist_get_buddy_n(bl, i);
3054      idle=owl_buddy_get_idle_time(b);
3055      if (idle!=0) {
3056        timestr=owl_util_minutes_to_timestr(idle);
3057      } else {
3058        timestr=owl_strdup("");
3059      }
3060      foo=owl_sprintf("  %-20.20s %-12.12s\n", owl_buddy_get_name(b), timestr);
3061      owl_fmtext_append_normal(&fm, foo);
3062      owl_free(timestr);
3063      owl_free(foo);
3064    }
3065  }
3066
3067#ifdef HAVE_LIBZEPHYR
3068  if (zephyr) {
3069    owl_fmtext_append_bold(&fm, "Zephyr users logged in:\n");
3070    owl_list_create(&anyone);
3071    ret=owl_zephyr_get_anyone_list(&anyone, filename);
3072    if (ret) {
3073      owl_fmtext_append_normal(&fm, "  Error opening file for zephyr buddies.\n");
3074    } else {
3075      j=owl_list_get_size(&anyone);
3076      for (i=0; i<j; i++) {
3077        user=owl_list_get_element(&anyone, i);
3078        ret=ZLocateUser(user, &numlocs, ZAUTH);
3079        if (ret!=ZERR_NONE) {
3080          owl_function_error("Error getting location for %s", user);
3081          continue;
3082        }
3083       
3084        numlocs=200;
3085        ret=ZGetLocations(location, &numlocs);
3086        if (ret==0) {
3087          for (x=0; x<numlocs; x++) {
3088            line=malloc(strlen(location[x].host)+strlen(location[x].time)+strlen(location[x].tty)+100);
3089            tmp=short_zuser(user);
3090            sprintf(line, "  %-10.10s %-24.24s %-12.12s  %20.20s\n",
3091                    tmp,
3092                    location[x].host,
3093                    location[x].tty,
3094                    location[x].time);
3095            owl_fmtext_append_normal(&fm, line);
3096            owl_free(tmp);
3097          }
3098          if (numlocs>=200) {
3099            owl_fmtext_append_normal(&fm, "  Too many locations found for this user, truncating.\n");
3100          }
3101        }
3102      }
3103    }
3104  }
3105#endif
3106 
3107  owl_function_popless_fmtext(&fm);
3108  owl_fmtext_free(&fm);
3109  owl_list_free_all(&anyone, owl_free);
3110}
3111
3112/* Dump messages in the current view to the file 'filename'. */
3113void owl_function_dump(char *filename) 
3114{
3115  int i, j, count;
3116  owl_message *m;
3117  owl_view *v;
3118  FILE *file;
3119
3120  v=owl_global_get_current_view(&g);
3121
3122  /* in the future make it ask yes/no */
3123  /*
3124  ret=stat(filename, &sbuf);
3125  if (!ret) {
3126    ret=owl_function_askyesno("File exists, continue? [Y/n]");
3127    if (!ret) return;
3128  }
3129  */
3130
3131  file=fopen(filename, "w");
3132  if (!file) {
3133    owl_function_error("Error opening file");
3134    return;
3135  }
3136
3137  count=0;
3138  j=owl_view_get_size(v);
3139  for (i=0; i<j; i++) {
3140    m=owl_view_get_element(v, i);
3141    fputs(owl_message_get_text(m), file);
3142  }
3143  fclose(file);
3144  owl_function_makemsg("Messages dumped to %s", filename);
3145}
3146
3147void owl_function_do_newmsgproc(void)
3148{
3149  if (owl_global_get_newmsgproc(&g) && strcmp(owl_global_get_newmsgproc(&g), "")) {
3150    /* if there's a process out there, we need to check on it */
3151    if (owl_global_get_newmsgproc_pid(&g)) {
3152      owl_function_debugmsg("Checking on newmsgproc pid==%i", owl_global_get_newmsgproc_pid(&g));
3153      owl_function_debugmsg("Waitpid return is %i", waitpid(owl_global_get_newmsgproc_pid(&g), NULL, WNOHANG));
3154      waitpid(owl_global_get_newmsgproc_pid(&g), NULL, WNOHANG);
3155      if (waitpid(owl_global_get_newmsgproc_pid(&g), NULL, WNOHANG)==-1) {
3156        /* it exited */
3157        owl_global_set_newmsgproc_pid(&g, 0);
3158        owl_function_debugmsg("newmsgproc exited");
3159      } else {
3160        owl_function_debugmsg("newmsgproc did not exit");
3161      }
3162    }
3163   
3164    /* if it exited, fork & exec a new one */
3165    if (owl_global_get_newmsgproc_pid(&g)==0) {
3166      int i, myargc;
3167      i=fork();
3168      if (i) {
3169        /* parent set the child's pid */
3170        owl_global_set_newmsgproc_pid(&g, i);
3171        owl_function_debugmsg("I'm the parent and I started a new newmsgproc with pid %i", i);
3172      } else {
3173        /* child exec's the program */
3174        char **parsed;
3175        parsed=owl_parseline(owl_global_get_newmsgproc(&g), &myargc);
3176        if (myargc < 0) {
3177          owl_function_debugmsg("Could not parse newmsgproc '%s': unbalanced quotes?", owl_global_get_newmsgproc(&g));
3178        }
3179        if (myargc <= 0) {
3180          _exit(127);
3181        }
3182        parsed=realloc(parsed, sizeof(*parsed) * (myargc+1));
3183        parsed[myargc] = NULL;
3184       
3185        owl_function_debugmsg("About to exec \"%s\" with %d arguments", parsed[0], myargc);
3186       
3187        execvp(parsed[0], parsed);
3188       
3189       
3190        /* was there an error exec'ing? */
3191        owl_function_debugmsg("Cannot run newmsgproc '%s': cannot exec '%s': %s", 
3192                              owl_global_get_newmsgproc(&g), parsed[0], strerror(errno));
3193        _exit(127);
3194      }
3195    }
3196  }
3197}
3198
3199/* print the xterm escape sequence to raise the window */
3200void owl_function_xterm_raise(void)
3201{
3202  printf("\033[5t");
3203}
3204
3205/* print the xterm escape sequence to deiconify the window */
3206void owl_function_xterm_deiconify(void)
3207{
3208  printf("\033[1t");
3209}
3210
3211/* Add the specified command to the startup file.  Eventually this
3212 * should be clever, and rewriting settings that will obviosly
3213 * override earlier settings with 'set' 'bindkey' and 'alias'
3214 * commands.  For now though we just remove any line that would
3215 * duplicate this one and then append this line to the end of
3216 * startupfile.
3217 */
3218void owl_function_addstartup(char *buff)
3219{
3220  FILE *file;
3221  char *filename;
3222
3223  filename=owl_sprintf("%s/%s", owl_global_get_homedir(&g), OWL_STARTUP_FILE);
3224  file=fopen(filename, "a");
3225  if (!file) {
3226    owl_function_error("Error opening startupfile for new command");
3227    owl_free(filename);
3228    return;
3229  }
3230
3231  /* delete earlier copies */
3232  owl_util_file_deleteline(filename, buff, 1);
3233  owl_free(filename);
3234
3235  /* add this line */
3236  fprintf(file, "%s\n", buff);
3237
3238  fclose(file);
3239}
3240
3241/* Remove the specified command from the startup file. */
3242void owl_function_delstartup(char *buff)
3243{
3244  char *filename;
3245  filename=owl_sprintf("%s/%s", owl_global_get_homedir(&g), OWL_STARTUP_FILE);
3246  owl_util_file_deleteline(filename, buff, 1);
3247  owl_free(filename);
3248}
3249
3250/* Execute owl commands from the given filename.  If the filename
3251 * is NULL, use the default owl startup commands file.
3252 */
3253void owl_function_source(char *filename)
3254{
3255  FILE *file;
3256  char buff[LINE];
3257
3258  if (!filename) {
3259    filename=owl_sprintf("%s/%s", owl_global_get_homedir(&g), OWL_STARTUP_FILE);
3260    file=fopen(filename, "r");
3261    owl_free(filename);
3262  } else {
3263    file=fopen(filename, "r");
3264  }
3265  if (!file) {
3266    /* just fail silently if it doesn't exist */
3267    return;
3268  }
3269  while (fgets(buff, LINE, file)!=NULL) {
3270    buff[strlen(buff)-1]='\0';
3271    owl_function_command(buff);
3272  }
3273  fclose(file);
3274}
3275
3276void owl_function_change_style(owl_view *v, char *stylename)
3277{
3278  owl_style *s;
3279
3280  s=owl_global_get_style_by_name(&g, stylename);
3281  if (!s) {
3282    owl_function_error("No style named %s", stylename);
3283    return;
3284  }
3285  owl_view_set_style(v, s);
3286  owl_messagelist_invalidate_formats(owl_global_get_msglist(&g));
3287  owl_function_calculate_topmsg(OWL_DIRECTION_DOWNWARDS);
3288  owl_mainwin_redisplay(owl_global_get_mainwin(&g));
3289}
3290
3291void owl_function_toggleoneline()
3292{
3293  owl_view *v;
3294  owl_style *s;
3295
3296  v=owl_global_get_current_view(&g);
3297  s=owl_view_get_style(v);
3298
3299  if (!owl_style_matches_name(s, "oneline")) {
3300    owl_function_change_style(v, "oneline");
3301  } else {
3302    owl_function_change_style(v, owl_global_get_default_style(&g));
3303  }
3304
3305  owl_messagelist_invalidate_formats(owl_global_get_msglist(&g));
3306  owl_function_calculate_topmsg(OWL_DIRECTION_DOWNWARDS);
3307  owl_mainwin_redisplay(owl_global_get_mainwin(&g));
3308}
3309
3310void owl_function_error(char *fmt, ...)
3311{
3312  va_list ap;
3313  char buff[2048], buff2[2048];
3314  char *date;
3315  time_t now;
3316
3317  now=time(NULL);
3318  date=owl_strdup(ctime(&now));
3319  date[strlen(date)-1]='\0';
3320
3321  va_start(ap, fmt);
3322
3323  vsnprintf(buff, 2048, fmt, ap);
3324  sprintf(buff2, "%s %s", date, buff);
3325  owl_function_debugmsg("ERROR: %s", buff);
3326  if (owl_global_get_curs_msgwin(&g)) {
3327    werase(owl_global_get_curs_msgwin(&g));
3328    waddstr(owl_global_get_curs_msgwin(&g), buff); 
3329    wnoutrefresh(owl_global_get_curs_msgwin(&g));
3330    owl_global_set_needrefresh(&g);
3331  }
3332  owl_errqueue_append_err(owl_global_get_errqueue(&g), buff2);
3333  va_end(ap);
3334  owl_free(date);
3335}
3336
3337void owl_function_showerrs()
3338{
3339  owl_fmtext fm;
3340
3341  owl_fmtext_init_null(&fm);
3342  owl_fmtext_append_normal(&fm, "Errors:\n\n");
3343  owl_errqueue_to_fmtext(owl_global_get_errqueue(&g), &fm);
3344  owl_function_popless_fmtext(&fm);
3345}
3346
3347void owl_function_makemsg(char *fmt, ...)
3348{
3349  va_list ap;
3350  char buff[2048];
3351
3352  if (!owl_global_get_curs_msgwin(&g)) return;
3353
3354  va_start(ap, fmt);
3355  werase(owl_global_get_curs_msgwin(&g));
3356 
3357  vsnprintf(buff, 2048, fmt, ap);
3358  owl_function_debugmsg("makemsg: %s", buff);
3359  waddstr(owl_global_get_curs_msgwin(&g), buff); 
3360  wnoutrefresh(owl_global_get_curs_msgwin(&g));
3361  owl_global_set_needrefresh(&g);
3362  va_end(ap);
3363}
3364
3365/* get locations for everyone in .anyone.  If 'notify' is '1' then
3366 * send a pseudo login or logout message for everyone not in sync with
3367 * the global zephyr buddy list.  The list is updated regardless of
3368 * the status of 'notify'.
3369 */
3370void owl_function_zephyr_buddy_check(int notify)
3371{
3372#ifdef HAVE_LIBZEPHYR
3373  int i, j;
3374  owl_list anyone;
3375  owl_message *m;
3376  owl_zbuddylist *zbl;
3377  char *user;
3378  ZLocations_t location[200];
3379  int numlocs, ret;
3380
3381  zbl=owl_global_get_zephyr_buddylist(&g);
3382
3383  owl_list_create(&anyone);
3384  ret=owl_zephyr_get_anyone_list(&anyone, NULL);
3385
3386  j=owl_list_get_size(&anyone);
3387  for (i=0; i<j; i++) {
3388    user=owl_list_get_element(&anyone, i);
3389    ret=ZLocateUser(user, &numlocs, ZAUTH);
3390    if (ret!=ZERR_NONE) {
3391      owl_function_error("Error getting location for %s", user);
3392      continue;
3393    }
3394    numlocs=200;
3395    ret=ZGetLocations(location, &numlocs);
3396    if (ret==0) {
3397      if ((numlocs>0) && !owl_zbuddylist_contains_user(zbl, user)) {
3398        /* Send a PSEUDO LOGIN! */
3399        if (notify) {
3400          m=owl_malloc(sizeof(owl_message));
3401          owl_message_create_pseudo_zlogin(m, 0, user, location[0].host, location[0].time, location[0].tty);
3402          owl_global_messagequeue_addmsg(&g, m);
3403        }
3404        owl_zbuddylist_adduser(zbl, user);
3405        owl_function_debugmsg("owl_function_zephyr_buddy_check: login for %s ", user);
3406      } else if ((numlocs==0) && owl_zbuddylist_contains_user(zbl, user)) {
3407        /* I don't think this ever happens (if there are 0 locations we should get an error from
3408         * ZGetLocations)
3409         */
3410        owl_function_error("owl_function_zephyr_buddy_check: exceptional case logout for %s ",user);
3411      }
3412    } else if ((ret==ZERR_NOLOCATIONS) && owl_zbuddylist_contains_user(zbl, user)) {
3413      /* Send a PSEUDO LOGOUT! */
3414      if (notify) {
3415        m=owl_malloc(sizeof(owl_message));
3416        owl_message_create_pseudo_zlogin(m, 1, user, location[0].host, location[0].time, location[0].tty);
3417        owl_global_messagequeue_addmsg(&g, m);
3418      }
3419      owl_zbuddylist_deluser(zbl, user);
3420      owl_function_debugmsg("owl_function_zephyr_buddy_check: logout for %s ",user);
3421    }
3422  }
3423
3424  owl_list_free_all(&anyone, owl_free);
3425#endif
3426}
Note: See TracBrowser for help on using the repository browser.