File: group.c

package info (click to toggle)
nn 6.7.3-10
  • links: PTS
  • area: main
  • in suites: buster, stretch
  • size: 2,508 kB
  • ctags: 3,198
  • sloc: ansic: 32,035; sh: 1,491; awk: 138; makefile: 98
file content (1275 lines) | stat: -rw-r--r-- 29,350 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
/*
 *	(c) Copyright 1990, Kim Fabricius Storm.  All rights reserved.
 *      Copyright (c) 1996-2005 Michael T Pins.  All rights reserved.
 *
 *	News group access.
 */

#include <stdlib.h>
#include <sys/types.h>
#include <time.h>
#include <string.h>
#include "config.h"
#include "global.h"
#include "articles.h"
#include "db.h"
#include "folder.h"
#include "macro.h"
#include "match.h"
#include "menu.h"
#include "newsrc.h"
#include "nn.h"
#include "nntp.h"
#include "regexp.h"
#include "sort.h"
#include "nn_term.h"
#include "variable.h"

#ifdef HAVE_SYSLOG
#include <syslog.h>
#endif

/* group.c */

static int      print_header(void);
static int      l_re_query(char *pr, group_header * gh);
static int      merged_header(void);
static int      disp_group(group_header * gh);



int             dont_split_digests = 0;
int             dont_sort_articles = 0;
int             also_cross_postings = 0;
int             also_unsub_groups = 0;
int             entry_message_limit = 400;
int             merge_report_rate = 1;

extern int      article_limit, also_read_articles;
extern int      no_update, novice, case_fold_search;
extern int      merged_menu, keep_unsubscribed, keep_unsub_long;
extern int      killed_articles;
extern int      seq_cross_filtering;
extern char    *default_save_file, *folder_save_file;

extern char     delayed_msg[];
extern int32    db_read_counter;

extern long     unread_articles;
extern int      unread_groups;
extern int      rc_merged_groups_hack;
extern int      get_from_macro;
extern group_header *jump_to_group;
extern int      bypass_consolidation;

/*
 * completion of group name
 */

int
group_completion(char *hbuf, int ix)
{
    static group_number next_group, n1, n2;
    static char    *head, *tail, *last;
    static int      tail_offset, prev_lgt, l1, l2;
    static group_header *prev_group, *p1, *p2;
    register group_header *gh;
    register char  *t1, *t2;
    int             order;

    if (ix < 0)
	return 0;

    if (hbuf) {
	n2 = next_group = 0;
	p2 = prev_group = NULL;
	l2 = 0;

	if ((head = strrchr(hbuf, ',')))
	    head++;
	else
	    head = hbuf;
	tail = hbuf + ix;
	tail_offset = ix - (head - hbuf);
	if ((last = strrchr(head, '.')))
	    last++;
	else
	    last = head;
	return 1;
    }
    if (ix) {
	n1 = next_group, p1 = prev_group, l1 = prev_lgt;
	next_group = n2, prev_group = p2, prev_lgt = l2;
	list_completion((char *) NULL);
    }
    *tail = NUL;

    while (next_group < master.number_of_groups) {
	gh = sorted_groups[next_group++];
	if (gh->master_flag & M_IGNORE_GROUP)
	    continue;
	if (gh->group_name_length <= tail_offset)
	    continue;

	if (prev_group &&
	    strncmp(prev_group->group_name, gh->group_name, prev_lgt) == 0)
	    continue;

	order = strncmp(gh->group_name, head, tail_offset);
	if (order < 0)
	    continue;
	if (order > 0)
	    break;

	t1 = gh->group_name + tail_offset;
	if ((t2 = strchr(t1, '.'))) {
	    strncpy(tail, t1, t2 - t1 + 1);
	    tail[t2 - t1 + 1] = NUL;
	} else
	    strcpy(tail, t1);

	prev_group = gh;
	prev_lgt = tail_offset + strlen(tail);
	if (ix) {
	    if (list_completion(last) == 0)
		break;
	} else
	    return 1;
    }

    if (ix) {
	n2 = next_group, p2 = prev_group, l2 = prev_lgt;
	if (n2 > master.number_of_groups)
	    n2 = 0, p2 = NULL, l2 = 0;
	next_group = n1, prev_group = p1, prev_lgt = l1;
	return 1;
    }
    next_group = 0;
    prev_group = NULL;
    return 0;
}

static int      group_level = 0;
static article_number entry_first_article;
static int      only_unread_articles;	/* menu contains only unread art. */

static int
print_header(void)
{
    so_printxy(0, 0, "Newsgroup: %s", current_group->group_name);

    if (current_group->group_flag & G_MERGED)
	tprintf("    MERGED");

    clrline();

    so_gotoxy(-1, 0, 0);

    so_printf("Articles: %d", n_articles);

    if (no_update) {
	so_printf(" NO UPDATE");
    } else {
	if ((current_group->group_flag & G_MERGED) == 0 &&
	    current_group->current_first > entry_first_article)
	    so_printf((killed_articles > 0) ? "(L-%ld,K-%d)" : "(L-%ld)",
		      current_group->current_first - entry_first_article,
		      killed_articles);
	else if (killed_articles > 0)
	    so_printf(" (K-%d)", killed_articles);

	if (unread_articles > 0) {
	    so_printf(" of %ld", unread_articles);
	    if (unread_groups > 0)
		so_printf("/%d", unread_groups);
	}
	if (current_group->group_flag & G_UNSUBSCRIBED)
	    so_printf(" UNSUB");
	else if (current_group->group_flag & G_NEW)
	    so_printf(" NEW");

	if (current_group->unread_count <= 0)
	    so_printf(" READ");

	if (group_level > 1)
	    so_printf(" *NO*UPDATE*");
    }

    so_end();

    return 1;			/* number of lines in header */
}

/*
 * interpretation of first_art:
 *	>0	Read articles first_art..last_db_article (also read)
 *	-1	Read unread or read articles accoring to -x and -aN flags
 *
 * This function is far to long and uses goto's all over! UGH!
 */

int
group_menu(register group_header * gh, article_number first_art, register flag_type access_mode, char *mask, fct_type menu)
{
    register group_header *mg_head;
    article_number  was_unread;
    int             status, unread_at_reentry = 0, menu_cmd;
    int             o_killed, o_only_unread;

#ifdef RENUMBER_DANGER
    article_number  prev_last;
#endif

    article_number  n, o_entry_first;
    flag_type       entry_access_mode = access_mode;

#define	menu_return(cmd) { menu_cmd = (cmd); goto menu_exit; }

    o_entry_first = entry_first_article;
    o_only_unread = only_unread_articles;
    o_killed = killed_articles;
    mark_var_stack();

    mg_head = (group_level == 0 && gh->group_flag & G_MERGE_HEAD) ? gh : NULL;
    group_level++;

reenter:
    for (; gh; gh = gh->merge_with) {
	if ((gh->master_flag & M_IGNORE_GROUP) || init_group(gh) <= 0) {
	    if (mg_head != NULL)
		continue;
	    menu_return(ME_NEXT);
	}
	if (unread_at_reentry)
	    restore_unread(gh);

	m_invoke(-1);		/* invoke macro */

	access_mode = entry_access_mode;
	if (access_mode & ACC_PARSE_VARIABLES)
	    access_mode |= parse_access_flags();

	killed_articles = 0;

	/*
	 * don't lose (a few) new articles when reentering a read group (the
	 * user will expect the menu to be the same, and may overlook the new
	 * articles)
	 */
	if (gh->group_flag & G_READ)
	    goto update_unsafe;

#ifdef RENUMBER_DANGER
	prev_last = gh->last_db_article;
#endif

	was_unread = add_unread(gh, -1);

#ifndef NOV			/* This is bad for NOV. reopens .overview */
	switch (update_group(gh)) {
	    case -1:
		status = -1;
		goto access_exception;
	    case -3:
		return ME_QUIT;
	}
#endif				/* NOV */

#ifdef RENUMBER_DANGER
	if (gh->last_db_article < prev_last) {
	    /* expire + renumbering */
	    flag_type       updflag;

	    if ((gh->last_article = gh->first_db_article - 1) < 0)
		gh->last_article = 0;
	    gh->first_article = gh->last_article;
	    updflag = gh->group_flag & G_READ;
	    gh->group_flag &= ~G_READ;
	    update_rc_all(gh, 0);
	    gh->group_flag &= ~G_READ;
	    gh->group_flag |= updflag;
	}
#endif

	if (was_unread)
	    add_unread(gh, 1);

update_unsafe:
	if ((gh->current_first = first_art) < 0) {
	    if (access_mode & (ACC_ORIG_NEWSRC | ACC_MERGED_NEWSRC))
		gh->current_first = gh->first_article + 1;
	    else if (access_mode & ACC_ALSO_READ_ARTICLES)
		gh->current_first = gh->first_db_article;
	    else
		gh->current_first = gh->last_article + 1;
	}
	if (gh->current_first <= 0)
	    gh->current_first = 1;
	entry_first_article = gh->current_first;
	only_unread_articles = (access_mode & ACC_ALSO_READ_ARTICLES) == 0;

	if (article_limit > 0) {
	    n = gh->last_db_article - article_limit + 1;
	    if (gh->current_first < n)
		gh->current_first = n;
	}
	if (mg_head != NULL) {
	    access_mode |= ACC_MERGED_MENU | ACC_DONT_SORT_ARTICLES;
	    if (mg_head != gh)
		access_mode |= ACC_EXTRA_ARTICLES;
	}
	/* entry_message_limit = 1; DEBUG */
	if (entry_message_limit &&
	    (n = gh->last_db_article - gh->current_first + 1) >= entry_message_limit) {
	    clrdisp();
	    tprintf("Reading %s: %ld articles...", gh->group_name, (long) n);
	} else
	    home();
	fl;

#ifdef NOV
	/* the real work is done here :-) */
#endif				/* NOV */

	status = access_group(gh, gh->current_first, gh->last_db_article,
			      access_mode, mask);

#ifndef NOV
access_exception:
#endif

	if (status < 0) {
	    if (status == -2) {
		clrdisp();
		tprintf("Read error on group %s (NFS timeout?)\n\r",
			current_group->group_name);
		tprintf("Skipping to next group....  (interrupt to quit)\n\r");
		if (any_key(0) == K_interrupt)
		    nn_exit(0);
	    }
	    if (status <= -10) {
		clrdisp();
		msg("DATABASE CORRUPTED FOR GROUP %s", gh->group_name);

#ifdef HAVE_SYSLOG
		openlog("nn", LOG_CONS, LOG_DAEMON);
		syslog(LOG_ALERT, "database corrupted for newsgroup %s.",
		       gh->group_name);
		closelog();
#endif

		user_delay(5);
	    }
	    gh->master_flag |= M_BLOCKED;
	    if (mg_head != NULL)
		continue;
	    menu_return(ME_NEXT);
	}
	if (mg_head == NULL)
	    break;
    }

    if (n_articles == 0) {
	m_break_entry();
	menu_return(ME_NO_ARTICLES);
    }
    if (mg_head != NULL) {
	if (dont_sort_articles)
	    no_sort_articles();
	else
	    sort_articles(-1);
	init_group(mg_head);
    }
samemenu:
    menu_cmd = CALL(menu) (print_header);

    if (menu_cmd == ME_REENTER_GROUP) {
	if (group_level != 1) {
	    strcpy(delayed_msg, "can only unread groups at topmost level");
	    goto samemenu;
	}
	free_memory();
	if (mg_head)
	    gh = mg_head;
	unread_at_reentry = 1;
	goto reenter;
    }
menu_exit:

    n = 1;			/* must unsort articles */
    if (mg_head != NULL)
	gh = mg_head;

    do {
	gh->current_first = 0;
	if (gh->master_flag & M_BLOCKED)
	    continue;
	if (mask != NULL)
	    continue;
	if (access_mode & ACC_ALSO_READ_ARTICLES || first_art >= 0)
	    continue;
	if (menu_cmd != ME_NO_ARTICLES)
	    gh->group_flag &= ~G_NEW;
	if (gh->group_flag & G_UNSUBSCRIBED && !keep_unsub_long)
	    continue;
	if (n)
	    sort_articles(-2);
	n = 0;
	update_rc(gh);
	rc_merged_groups_hack = 1;
    } while (mg_head != NULL && (gh = gh->merge_with) != NULL);

    rc_merged_groups_hack = 0;

    killed_articles = o_killed;
    entry_first_article = o_entry_first;
    only_unread_articles = o_only_unread;
    restore_variables();
    group_level--;

    return menu_cmd;
}

static int
l_re_query(char *pr, group_header * gh)
{
    if (pr == NULL)
	return 1;

    prompt("\1%s\1 %s ? ", pr, gh->group_name);
    return yes(0);
}

group_header   *
lookup_regexp(char *name, char *pr, int flag)
 /* flag		1=>seq order, 2=>msg(err) */
{
    group_header   *gh;
    regexp         *re;
    int             y, any;
    char           *err;

    if ((gh = lookup(name)))
	return gh;

    if ((re = regcomp(name)) == NULL)
	return NULL;
    y = any = 0;

    if (pr && (flag & 1))
	m_advinput();

    if (flag & 1)
	Loop_Groups_Sequence(gh) {
	if (gh->last_db_article == 0)
	    continue;
	if (gh->last_db_article < gh->first_db_article)
	    continue;
	if (!regexec(re, gh->group_name))
	    continue;
	any++;
	if ((y = l_re_query(pr, gh)))
	    goto ok;
	}

    Loop_Groups_Sorted(gh) {
	if (flag & 1) {
	    if (gh->master_flag & M_IGNORE_GROUP)
		continue;
	    if (gh->group_flag & G_SEQUENCE)
		continue;
	}
	if (!regexec(re, gh->group_name))
	    continue;
	any++;
	if ((y = l_re_query(pr, gh)))
	    goto ok;
    }

    err = any ? "No more groups" : "No group";
    if (flag & 2)
	msg("%s matching `%s'", err, name);
    else
	tprintf("\n\r%s matching `%s'\n\r", err, name);

    gh = NULL;

ok:
    freeobj(re);
    return y < 0 ? NULL : gh;
}

int
goto_group(int command, article_header * ah, flag_type access_mode)
{
    register group_header *gh;
    char            ans1, *answer, *mask, buffer[FILENAME], fbuffer[FILENAME];
    article_number  first;
    memory_marker   mem_marker;
    group_header   *orig_group;
    int             menu_cmd, cmd_key;
    article_number  o_cur_first = -1;
    group_header   *read_mode_group;

#define goto_return( cmd ) \
    { menu_cmd = cmd; goto goto_exit; }

    m_startinput();

    gh = orig_group = current_group;

    if (ah != NULL) {		/* always open new level from reading mode */
	read_mode_group = orig_group;
	orig_group = NULL;
    } else
	read_mode_group = NULL;

    mask = NULL;
    if (access_mode == 0)
	access_mode |= ACC_PARSE_VARIABLES;

    if (command == K_GOTO_GROUP)
	goto get_group_name;

    if (command == K_ADVANCE_GROUP)
	gh = gh->next_group;
    else
	gh = gh->prev_group;

    for (;;) {
	if (gh == NULL)
	    goto_return(ME_NO_REDRAW);

	if (gh->first_db_article < gh->last_db_article && gh->current_first <= 0) {
	    sprintf(buffer, "%s%s%s) ",
		    (gh->group_flag & G_UNSUBSCRIBED) ? " UNSUB" : "",
		    (gh->group_flag & G_MERGE_HEAD) ? " MERGED" : "",
		    gh->unread_count <= 0 ? " READ" : "");
	    buffer[0] = buffer[0] == ')' ? NUL : '(';

	    prompt("\1Enter\1 %s %s?  (ABGNPy) ", gh->group_name, buffer);

	    cmd_key = get_c();
	    if (cmd_key & GETC_COMMAND) {
		command = cmd_key & ~GETC_COMMAND;
		if (command == K_REDRAW)
		    goto_return(ME_REDRAW);
	    } else {
		if (cmd_key == 'y')
		    break;
		command = menu_key_map[cmd_key];
		if (command & K_MACRO)
		    command = orig_menu_map[cmd_key];
	    }
	}
	switch (command) {
	    case K_CONTINUE:
	    case K_CONTINUE_NO_MARK:
		break;

	    case K_ADVANCE_GROUP:
		gh = gh->next_group;
		continue;

	    case K_BACK_GROUP:
		gh = gh->prev_group;
		continue;

	    case K_GOTO_GROUP:
		goto get_group_name;

	    case K_PREVIOUS:
		while (gh->prev_group) {
		    gh = gh->prev_group;
		    if (gh->group_flag & G_MERGE_SUB)
			continue;
		    if (gh->group_flag & G_COUNTED)
			break;
		    if (gh->newsrc_line != gh->newsrc_orig)
			break;
		}
		continue;

	    case K_NEXT_GROUP_NO_UPDATE:
		while (gh->next_group) {
		    gh = gh->next_group;
		    if (gh->group_flag & G_MERGE_SUB)
			continue;
		    if (gh->group_flag & G_COUNTED)
			break;
		    if (gh->newsrc_line != gh->newsrc_orig)
			break;
		}
		continue;

	    default:
		goto_return(ME_NO_REDRAW);
	}
	break;
    }

    if (gh == orig_group)
	goto_return(ME_NO_REDRAW);

    goto get_first;

get_group_name:

    if (current_group == NULL) {
	prompt("\1Enter Group or Folder\1 (+./~) ");
	answer = get_s(NONE, NONE, "+./~", group_completion);
    } else {

#ifndef ART_GREP
	prompt("\1Group or Folder\1 (+./~ %%%s=sneN) ",
#else
	prompt("\1Group or Folder\1 (+./~ %%%s=sneNbB) ",	/* add 'bB' for BODY */
#endif				/* ART_GREP */

	       (gh->master_flag & M_AUTO_ARCHIVE) ? "@" : "");
	strcpy(buffer, "++./0123456789~=% ");
	if (gh->master_flag & M_AUTO_ARCHIVE)
	    buffer[0] = '@';
	answer = get_s(NONE, NONE, buffer, group_completion);
    }

    if (answer == NULL)
	goto_return(ME_NO_REDRAW);

    if ((ans1 = *answer) == NUL || ans1 == SP) {
	if (current_group == NULL)
	    goto_return(ME_NO_REDRAW);
	goto get_first;
    }
    sprintf(buffer, "%c", ans1);

    switch (ans1) {

	case '@':
	    if (current_group == NULL ||
		(current_group->master_flag & M_AUTO_ARCHIVE) == 0)
		goto_return(ME_NO_REDRAW);
	    answer = current_group->archive_file;
	    goto get_folder;

	case '%':
	    if (current_group == NULL)
		goto_return(ME_NO_REDRAW);
	    if ((current_group->group_flag & G_FOLDER) == 0) {
		if (!ah) {

#ifdef NNTP
		    if (use_nntp) {
			msg("Can only use G%% in reading mode");
			goto_return(ME_NO_REDRAW);
		    }
#endif

		    prompt("\1READ\1");
		    if ((ah = get_menu_article()) == NULL)
			goto_return(ME_NO_REDRAW);
		}
		if ((ah->flag & A_DIGEST) == 0) {

#ifdef NNTP
		    if (use_nntp) {
			answer = nntp_get_filename(ah->a_number, current_group);
			goto get_folder;
		    }
#endif

		    *group_file_name = NUL;
		    sprintf(fbuffer, "%s%ld", group_path_name, ah->a_number);
		    answer = fbuffer;
		    goto get_folder;
		}
	    }
	    msg("cannot split articles inside a folder or digest");
	    goto_return(ME_NO_REDRAW);

	    /* FALLTHROUGH */
	case '.':
	case '~':
	    strcat(buffer, "/");
	    /* FALLTHROUGH */
	case '+':
	case '/':
	    if (!get_from_macro) {
		prompt("\1Folder\1 ");
		answer = get_s(NONE, buffer, NONE, file_completion);
		if (answer == NULL || answer[0] == NUL)
		    goto_return(ME_NO_REDRAW);
	    }
	    goto get_folder;

	case 'a':
	    if (answer[1] != NUL && strcmp(answer, "all"))
		break;
	    if (current_group == NULL)
		goto_return(ME_NO_REDRAW);
	    access_mode |= ACC_ALSO_READ_ARTICLES | ACC_ALSO_CROSS_POSTINGS;
	    first = 0;
	    goto more_articles;

	case 'u':
	    if (answer[1] != NUL && strcmp(answer, "unread"))
		break;
	    if (current_group == NULL)
		goto_return(ME_NO_REDRAW);
	    access_mode |= ACC_ORIG_NEWSRC;
	    first = gh->first_article + 1;
	    goto enter_new_level;

#ifdef ART_GREP
	case 'B':		/* Body search all articles in database */
	case 'b':		/* Body search unread articles */
	    if (answer[1] != NUL && answer[1] != '=')
		break;
	    if (current_group == NULL)
		goto_return(ME_NO_REDRAW);
	    access_mode |= ACC_ALSO_READ_ARTICLES | ACC_ALSO_CROSS_POSTINGS;
	    goto get_mask;
#endif				/* ART_GREP */

	case 'e':
	case 'n':
	case 's':
	    if (answer[1] != NUL && answer[1] != '=')
		break;
	    /* FALLTHROUGH */
	case '=':
	    if (current_group == NULL)
		goto_return(ME_NO_REDRAW);
	    goto get_mask;

	case '0':
	case '1':
	case '2':
	case '3':
	case '4':
	case '5':
	case '6':
	case '7':
	case '8':
	case '9':
	    if (current_group == NULL)
		goto_return(ME_NO_REDRAW);
	    if (gh->current_first <= gh->first_db_article) {
		msg("No extra articles");
		flush_input();
		goto_return(ME_NO_REDRAW);
	    }
	    if (!get_from_macro) {
		prompt("\1Number of extra articles\1 max %ld: ",
		       gh->current_first - gh->first_db_article);
		sprintf(buffer, "%c", ans1);
		answer = get_s(NONE, buffer, NONE, NULL_FCT);
		if (answer == NULL || *answer == NUL)
		    goto_return(ME_NO_REDRAW);
	    }
	    first = gh->current_first - (article_number) atol(answer);
	    goto more_articles;

	default:
	    break;
    }

    if ((gh = lookup_regexp(answer, "Goto", 3)) == NULL)
	goto_return(ME_NO_REDRAW);


get_first:

    m_advinput();

    if (gh->master_flag & M_BLOCKED ||
	gh->last_db_article == 0 ||
	gh->last_db_article < gh->first_db_article) {
	msg("Group %s is %s", gh->group_name,
	    (gh->master_flag & M_BLOCKED) ? "blocked" : "empty");
	goto_return(ME_NO_REDRAW);
    }
    if (gh != orig_group) {
	if (gh == read_mode_group) {
	    o_cur_first = gh->current_first;
	    gh->current_first = 0;
	}
	if (gh->current_first > 0) {
	    msg("Group %s already active", gh->group_name);
	    goto_return(ME_NO_REDRAW);
	}
	if (o_cur_first < 0)
	    o_cur_first = 0;
	gh->current_first = gh->last_db_article + 1;
    }
    ans1 = ah ? 's' : 'a';
    if (gh == read_mode_group) {
	ans1 = 's';
    } else if (gh != orig_group) {
	if (gh->unread_count > 0)
	    ans1 = 'j';
    } else {
	if (gh->unread_count > 0 && gh->current_first > entry_first_article)
	    ans1 = 'u';
	else if (gh->current_first <= gh->first_db_article)
	    ans1 = 's';		/* no more articles to read */
    }

    prompt("\1Number of%s articles\1 (%sua%ssne)  (%c) ",
	   gh == orig_group ? " extra" : "",
	   (gh->unread_count > 0) ? "j" : "",
	   (gh->master_flag & M_AUTO_ARCHIVE) ? "@" : "",
	   ans1);

    if (novice)
	msg("Use: j)ump u)nread a)ll @)archive s)ubject n)ame e)ither or number");

#ifndef ART_GREP
    answer = get_s(NONE, NONE, " jua@s=ne", NULL_FCT);
#else
    answer = get_s(NONE, NONE, " jua@s=nebB", NULL_FCT);	/* add 'bB' for BODY */
#endif				/* ART_GREP */

    if (answer == NULL)
	goto_return(ME_NO_REDRAW);
    if (*answer == NUL || *answer == SP)
	answer = &ans1;

    switch (*answer) {
	case '@':
	    if ((gh->master_flag & M_AUTO_ARCHIVE) == 0) {
		msg("No archive");
		goto_return(ME_NO_REDRAW);
	    }
	    answer = gh->archive_file;
	    goto get_folder;

	case 'u':
	    access_mode |= ACC_ORIG_NEWSRC;
	    first = gh->first_article + 1;
	    goto enter_new_level;

	case 'j':
	    if (gh == orig_group || gh->unread_count <= 0) {
		msg("Cannot jump - no unread articles");
		goto_return(ME_NO_REDRAW);
	    }
	    if (orig_group == NULL) {	/* nn -g */
		first = -1;
		goto enter_new_level;
	    }
	    jump_to_group = gh;
	    goto_return(ME_QUIT);
	    break;		/* for lint */

	case 'a':
	    first = 0;
	    access_mode |= ACC_ALSO_READ_ARTICLES | ACC_ALSO_CROSS_POSTINGS;
	    goto more_articles;

	case '=':
	case 's':
	case 'n':
	case 'e':
	    goto get_mask;

#ifdef ART_GREP
	case 'b':		/* Body search unread articles */
	case 'B':		/* Body search all articles */
	    access_mode |= ACC_ALSO_READ_ARTICLES | ACC_ALSO_CROSS_POSTINGS;
	    goto get_mask;
#endif				/* ART_GREP */

	case '0':
	case '1':
	case '2':
	case '3':
	case '4':
	case '5':
	case '6':
	case '7':
	case '8':
	case '9':
	    first = gh->current_first - atol(answer);
	    goto more_articles;

	default:
	    ding();
	    goto_return(ME_NO_REDRAW);
    }


more_articles:
    if (first > gh->last_db_article)
	goto_return(ME_NO_REDRAW);

    if (gh != orig_group)
	goto enter_new_level;

    if (!only_unread_articles)

#ifdef NOV
	if (gh->current_first <= gh->first_a_article)
#else
	if (gh->current_first <= gh->first_db_article)
#endif				/* NOV */

	{
	    msg("No extra articles");
	    goto_return(ME_NO_REDRAW);
	}

#ifdef NOV
    if (first < gh->first_a_article)
	first = gh->first_a_article;
#else
    if (first < gh->first_db_article)
	first = gh->first_db_article;
#endif				/* NOV */

    if (access_group(gh, first, only_unread_articles ?
		     gh->last_db_article : gh->current_first - 1,
		     ACC_PARSE_VARIABLES |
		     ACC_EXTRA_ARTICLES | ACC_ALSO_CROSS_POSTINGS |
		     ACC_ALSO_READ_ARTICLES | ACC_ONLY_READ_ARTICLES,
		     (char *) NULL) < 0) {
	msg("Cannot read extra articles (now)");
	goto_return(ME_NO_REDRAW);
    }
    only_unread_articles = 0;
    gh->current_first = first;
    goto_return(ME_REDRAW);

get_folder:
    m_endinput();
    if (strcmp(answer, "+") == 0)
	answer = (gh && gh->save_file != NULL) ? gh->save_file :
	    (gh && gh->group_flag & G_FOLDER) ? folder_save_file :
	    default_save_file;
    menu_cmd = folder_menu(answer, 0);
    gh = NULL;
    goto goto_exit;

get_mask:
    first = 0;
    access_mode |= ACC_ALSO_READ_ARTICLES | ACC_ALSO_CROSS_POSTINGS;
    switch (*answer) {
	case '=':
	    *answer = 's';
	    /* FALLTHROUGH */
	case 's':
	    access_mode |= ACC_ON_SUBJECT;
	    break;
	case 'n':
	    access_mode |= ACC_ON_SENDER;
	    break;
	case 'e':
	    access_mode |= ACC_ON_SUBJECT | ACC_ON_SENDER;
	    break;

#ifdef ART_GREP
	case 'b':		/* Body search unread articles */
	    access_mode |= ACC_ON_GREP_UNREAD;
	    break;
	case 'B':		/* Body search all articles in database */
	    access_mode |= ACC_ON_GREP_ALL;
	    break;
#endif				/* ART_GREP */
    }

#ifdef ART_GREP
    if ((*answer == 'b') || (*answer == 'B')) {
	prompt("Article body search pattern=");
	mask = get_s(NONE, NONE, NONE, NULL_FCT);
	if (mask == NULL)
	    goto_return(ME_NO_REDRAW);
    } else
#endif

    if (get_from_macro || answer[1] == '=') {
	mask = answer + 1;
	if (*mask == '=')
	    mask++;
    } else {
	prompt("%c=", *answer);
	mask = get_s(ah == NULL ? NONE :
		  (access_mode & ACC_ON_SUBJECT ? ah->subject : ah->sender),
		     NONE, ah ? NONE : "%=", NULL_FCT);
	if (mask == NULL)
	    goto_return(ME_NO_REDRAW);
	if (*mask == '%' || *mask == '=') {
	    if ((ah = get_menu_article()) == 0)
		goto_return(ME_NO_REDRAW);
	    *mask = NUL;
	}
    }

    if (*mask == NUL) {
	if (ah == NULL)
	    goto_return(ME_NO_REDRAW);
	strncpy(mask, (access_mode & ACC_ON_SUBJECT) ? ah->subject : ah->sender, GET_S_BUFFER);
	mask[GET_S_BUFFER - 1] = NUL;
	bypass_consolidation = 1;
    }
    if (*mask) {
	if (case_fold_search)
	    fold_string(mask);
    } else
	mask = NULL;

enter_new_level:
    mark_memory(&mem_marker);
    m_endinput();
    if (o_cur_first < 0)
	o_cur_first = gh->current_first;
    menu_cmd = group_menu(gh, first, access_mode, mask, menu);
    bypass_consolidation = 0;	/* in case no articles were found */
    release_memory(&mem_marker);

goto_exit:
    if (gh && o_cur_first >= 0)
	gh->current_first = o_cur_first;

    if (read_mode_group)
	orig_group = read_mode_group;

    if (gh != orig_group) {
	if (orig_group)
	    init_group(orig_group);
    }
    m_endinput();
    return menu_cmd;
}

static int
merged_header(void)
{
    so_printxy(0, 0, "MERGED NEWS GROUPS:  %d ARTICLES", n_articles);
    clrline();

    return 1;
}

void
merge_and_read(flag_type access_mode, char *mask)
{
    register group_header *gh;
    group_header    dummy_group;
    time_t          t1, t2;
    time_t          trefr = 0;
    long            kb = 0, kbleft = 0;

    time(&t1);
    t2 = 0;

    free_memory();

    access_mode |= ACC_DONT_SORT_ARTICLES | ACC_MERGED_MENU;
    if (!seq_cross_filtering)
	if (also_read_articles || mask || also_cross_postings)
	    access_mode |= ACC_ALSO_CROSS_POSTINGS;
    if (seq_cross_filtering && also_unsub_groups)
	access_mode |= ACC_ALSO_UNSUB_GROUPS;
    if (dont_split_digests)
	access_mode |= ACC_DONT_SPLIT_DIGESTS;

    Loop_Groups_Sequence(gh) {
	if (gh->group_flag & G_FOLDER)
	    continue;
	if (gh->master_flag & M_NO_DIRECTORY)
	    continue;
	if ((gh->group_flag & G_UNSUBSCRIBED) && !also_unsub_groups)
	    continue;
	if (!also_read_articles && gh->last_article >= gh->last_db_article)
	    continue;

	kbleft += gh->data_write_offset;
    }

    gotoxy(0, Lines - 1);
    Loop_Groups_Sequence(gh) {
	if (s_hangup || s_keyboard)
	    break;

	if (gh->group_flag & G_FOLDER) {
	    tprintf("\n\rIgnoring folder: %s\n\r", gh->group_name);
	    continue;
	}
	if (gh->master_flag & M_NO_DIRECTORY)
	    continue;
	if ((gh->group_flag & G_UNSUBSCRIBED) && !also_unsub_groups)
	    continue;

	if (also_read_articles)
	    access_mode |= ACC_ALSO_READ_ARTICLES;
	else if (gh->last_article >= gh->last_db_article)
	    continue;

	if (init_group(gh) <= 0)
	    continue;

#define SILLY 1			/* print dumb progress report */

#ifdef SILLY
	if (t2 >= trefr) {
	    trefr = t2 + merge_report_rate;

	    if (t2 > 2 && kb > 50000 && kb >= t2)
		tprintf("\r%4lds\t%lds\t%s", kbleft / (kb / t2),
			(long) t2, gh->group_name);
	    else
		tprintf("\r\t%lds\t%s", (long) t2, gh->group_name);

	    clrline();
	}
#else
	{
	    static int      grcnt = 0;
	    if (++grcnt % 10 == 0) {
		tputc('.');
		/* Hmm.. would a  fflush(stdout); be in order here? */
	    }
	}
#endif

	/* db_read_group(gh); *//* open the database file */

	access_group(gh, (article_number) (-1), gh->last_db_article,
		     access_mode, mask);

	time(&t2);
	t2 -= t1;
	kb += gh->data_write_offset;
	kbleft -= gh->data_write_offset;
    }
    merge_memory();
    if (n_articles == 0)
	return;
    if (dont_sort_articles)
	no_sort_articles();
    else
	sort_articles(-1);

    dummy_group.group_flag = G_FAKED;
    dummy_group.master_flag = 0;
    dummy_group.save_file = NULL;
    dummy_group.group_name = "dummy";
    dummy_group.kill_list = NULL;

    current_group = &dummy_group;

    kb = (kb + 1023) >> 10;
    sprintf(delayed_msg, "Read %ld articles in %ld seconds (%ld kbyte/s)",
	    (long) db_read_counter, (long) t2, t2 > 0 ? kb / t2 : kb);

    menu(merged_header);

    free_memory();
}

int
unsubscribe(group_header * gh)
{
    if (no_update) {
	msg("nn started in \"no update\" mode");
	return 0;
    }
    if (gh->group_flag & G_FOLDER) {
	msg("cannot unsubscribe to a folder");
	return 0;
    }
    if (gh->group_flag & G_UNSUBSCRIBED) {
	prompt("Already unsubscribed.  \1Resubscribe to\1 %s ? ",
	       gh->group_name);
	if (yes(0) <= 0)
	    return 0;

	add_to_newsrc(gh);
	add_unread(gh, 1);
    } else {
	prompt("\1Unsubscribe to\1 %s ? ", gh->group_name);
	if (yes(0) <= 0)
	    return 0;

	add_unread(gh, -1);
	update_rc_all(gh, 1);
    }

    return 1;
}

static int
disp_group(group_header * gh)
{
    if (pg_next() < 0)
	return -1;

    tprintf("%c%6ld%c%s%s%s",
	    (gh->group_flag & G_MERGED) == 0 ? ' ' :
	    (gh->group_flag & G_MERGE_HEAD) ? '&' : '+',

	    (long) (gh->unread_count),

	    (gh == current_group) ? '*' : ' ',

	    gh->group_name,

	    (gh->group_flag & G_NEW) ? " NEW" :
	    (gh->group_flag & G_UNSUBSCRIBED) ? " (!)" : "",

	    gh->enter_macro ? " %" : "");

    return 0;
}

/*
 * amount interpretation:
 *	-1	presentation sequence, unread,subscribed+current
 * 	0	unread,subscribed
 *	1	unread,all
 *	2	all,all 3=>unsub
 */

void
group_overview(int amount)
{
    register group_header *gh;

    clrdisp();

    pg_init(0, 2);

    if (amount < 0) {
	Loop_Groups_Sequence(gh) {
	    if (gh->group_flag & G_FAKED)
		continue;
	    if (gh->master_flag & M_NO_DIRECTORY)
		continue;
	    if (gh != current_group) {
		if (gh->unread_count <= 0)
		    continue;
		if (gh->group_flag & G_UNSUBSCRIBED && !also_unsub_groups)
		    continue;
	    }
	    if (disp_group(gh) < 0)
		break;
	}
    } else
	Loop_Groups_Sorted(gh) {
	if (gh->master_flag & (M_NO_DIRECTORY | M_IGNORE_GROUP))
	    continue;
	if (amount <= 1 && gh->unread_count <= 0)
	    continue;
	if (amount == 0 && (gh->group_flag & G_UNSUBSCRIBED))
	    continue;
	if (amount == 3 && (gh->group_flag & G_UNSUBSCRIBED) == 0)
	    continue;
	if (amount == 4 && (gh->group_flag & G_SEQUENCE) == 0)
	    continue;

	if (disp_group(gh) < 0)
	    break;
	}

    pg_end();
}