source: functions.c @ 5471a98

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