source: functions.c @ 5a95b69

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