forked from cminyard/abook
-
Notifications
You must be signed in to change notification settings - Fork 0
/
abook.c
918 lines (783 loc) · 18.1 KB
/
abook.c
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
/*
* by JH <jheinonen@users.sourceforge.net>
*
* Copyright (C) Jaakko Heinonen
*/
#include <errno.h>
#include <fcntl.h>
#include <ctype.h>
#include <signal.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include <sys/stat.h>
#ifdef HAVE_CONFIG_H
# include "config.h"
#endif
#if defined(HAVE_LOCALE_H) && defined(HAVE_SETLOCALE)
# include <locale.h>
#endif
#include <assert.h>
#include "abook.h"
#include "gettext.h"
#include "ui.h"
#include "database.h"
#include "list.h"
#include "filter.h"
#include "edit.h"
#include "misc.h"
#include "options.h"
#include "getname.h"
#include "getopt.h"
#include "views.h"
#include "xmalloc.h"
static void init_abook();
static void quit_abook_sig(int i);
static void set_filenames();
static void parse_command_line(int argc, char **argv);
static void show_usage();
static void mutt_query(char *str);
static void init_mutt_query();
static void convert(char *srcformat, char *srcfile,
char *dstformat, char *dstfile);
static void add_email(int);
static void set_email_fields(char *fl);
char *datafile = NULL;
static char *rcfile = NULL;
// custom formatting
char custom_format[FORMAT_STRING_LEN] = "{nick} ({name}): {mobile}";
struct abook_output_item_filter selected_item_filter;
bool alternative_datafile = FALSE;
bool alternative_rcfile = FALSE;
static int
datafile_writeable()
{
FILE *f;
assert(datafile != NULL);
if( (f = fopen(datafile, "a")) == NULL)
return FALSE;
fclose(f);
return TRUE;
}
static void
check_abook_directory()
{
struct stat s;
char *dir;
assert(!is_ui_initialized());
if(alternative_datafile)
return;
dir = strconcat(getenv("HOME"), "/" DIR_IN_HOME, NULL);
assert(dir != NULL);
if(stat(dir, &s) == -1) {
if(errno != ENOENT) {
perror(dir);
free(dir);
exit(EXIT_FAILURE);
}
if(mkdir(dir, 0700) == -1) {
printf(_("Cannot create directory %s\n"), dir);
perror(dir);
free(dir);
exit(EXIT_FAILURE);
}
} else if(!S_ISDIR(s.st_mode)) {
printf(_("%s is not a directory\n"), dir);
free(dir);
exit(EXIT_FAILURE);
}
free(dir);
}
static void
xmalloc_error_handler(int err)
{
/*
* We don't try to save addressbook here because we don't know
* if it's fully loaded to memory.
*/
if(is_ui_initialized())
close_ui();
fprintf(stderr, _("Memory allocation failure: %s\n"), strerror(err));
exit(EXIT_FAILURE);
}
static void
init_abook()
{
set_filenames();
check_abook_directory();
init_opts();
if(load_opts(rcfile) > 0) {
printf(_("Press enter to continue...\n"));
fgetc(stdin);
}
init_default_views();
signal(SIGTERM, quit_abook_sig);
init_index();
if(init_ui())
exit(EXIT_FAILURE);
umask(DEFAULT_UMASK);
if(!datafile_writeable()) {
char *s = strdup_printf(_("File %s is not writeable"), datafile);
refresh_screen();
statusline_msg(s);
free(s);
if(load_database(datafile) || !statusline_ask_boolean(
_("If you continue all changes will "
"be lost. Do you want to continue?"), FALSE)) {
free_opts();
/*close_database();*/
close_ui();
exit(EXIT_FAILURE);
}
} else
load_database(datafile);
refresh_screen();
}
void
quit_abook(int save_db)
{
if(save_db) {
if(opt_get_bool(BOOL_AUTOSAVE))
save_database(0);
else if(statusline_ask_boolean(_("Save database"), TRUE))
save_database(1);
} else if(!statusline_ask_boolean(_("Quit without saving"), FALSE))
return;
free_opts();
close_database();
close_ui();
exit(EXIT_SUCCESS);
}
static void
quit_abook_sig(int i)
{
quit_abook(QUIT_SAVE);
}
int
main(int argc, char **argv)
{
#if defined(HAVE_SETLOCALE) && defined(HAVE_LOCALE_H)
setlocale(LC_MESSAGES, "");
setlocale(LC_TIME, "");
setlocale(LC_CTYPE, "");
setlocale(LC_COLLATE, "");
#endif
bindtextdomain(PACKAGE, LOCALEDIR);
textdomain(PACKAGE);
xmalloc_set_error_handler(xmalloc_error_handler);
prepare_database_internals();
parse_command_line(argc, argv);
init_abook();
get_commands();
quit_abook(QUIT_SAVE);
return 0;
}
static void
free_filenames()
{
xfree(rcfile);
xfree(datafile);
}
static void
set_filenames()
{
struct stat s;
if( (stat(getenv("HOME"), &s)) == -1 || ! S_ISDIR(s.st_mode) ) {
fprintf(stderr,_("%s is not a valid HOME directory\n"), getenv("HOME") );
exit(EXIT_FAILURE);
}
if(!datafile)
datafile = strconcat(getenv("HOME"), "/" DIR_IN_HOME "/"
DATAFILE, NULL);
if(!rcfile)
rcfile = strconcat(getenv("HOME"), "/" DIR_IN_HOME "/"
RCFILE, NULL);
atexit(free_filenames);
}
/*
* CLI
*/
enum {
MODE_CONT,
MODE_ADD_EMAIL,
MODE_ADD_EMAIL_QUIET,
MODE_QUERY,
MODE_CONVERT
};
static void
change_mode(int *current, int mode)
{
if(*current != MODE_CONT) {
fprintf(stderr, _("Cannot combine options --mutt-query, "
"--convert, "
"--add-email or --add-email-quiet\n"));
exit(EXIT_FAILURE);
}
*current = mode;
}
void
set_filename(char **var, char *path)
{
char *cwd;
assert(var != NULL);
assert(*var == NULL); /* or else we probably leak memory */
assert(path != NULL);
if(*path == '/') {
*var = xstrdup(path);
return;
}
cwd = my_getcwd();
*var = strconcat(cwd, "/", path, NULL);
free(cwd);
}
#define set_convert_var(X) do { if(mode != MODE_CONVERT) {\
fprintf(stderr, _("please use option --%s after --convert option\n"),\
long_options[option_index].name);\
exit(EXIT_FAILURE);\
} else\
X = optarg;\
} while(0)
static void
parse_command_line(int argc, char **argv)
{
int mode = MODE_CONT;
char *query_string = NULL;
char *informat = "abook",
*outformat = "text",
*infile = "-",
*outfile = "-";
int c;
selected_item_filter = select_output_item_filter("muttq");
for(;;) {
int option_index = 0;
enum {
OPT_ADD_EMAIL,
OPT_ADD_EMAIL_QUIET,
OPT_EMAIL_FIELDS,
OPT_MUTT_QUERY,
OPT_CONVERT,
OPT_INFORMAT,
OPT_OUTFORMAT,
OPT_OUTFORMAT_STR,
OPT_INFILE,
OPT_OUTFILE,
OPT_FORMATS
};
static struct option long_options[] = {
{ "help", 0, 0, 'h' },
{ "add-email", 0, 0, OPT_ADD_EMAIL },
{ "add-email-quiet", 0, 0, OPT_ADD_EMAIL_QUIET },
{ "fields", 1, 0, OPT_EMAIL_FIELDS },
{ "datafile", 1, 0, 'f' },
{ "mutt-query", 1, 0, OPT_MUTT_QUERY },
{ "config", 1, 0, 'C' },
{ "convert", 0, 0, OPT_CONVERT },
{ "informat", 1, 0, OPT_INFORMAT },
{ "outformat", 1, 0, OPT_OUTFORMAT },
{ "outformatstr", 1, 0, OPT_OUTFORMAT_STR },
{ "infile", 1, 0, OPT_INFILE },
{ "outfile", 1, 0, OPT_OUTFILE },
{ "formats", 0, 0, OPT_FORMATS },
{ 0, 0, 0, 0 }
};
c = getopt_long(argc, argv, "hC:f:",
long_options, &option_index);
if(c == -1)
break;
switch(c) {
case 'h':
show_usage();
exit(EXIT_SUCCESS);
case OPT_ADD_EMAIL:
change_mode(&mode, MODE_ADD_EMAIL);
break;
case OPT_ADD_EMAIL_QUIET:
change_mode(&mode, MODE_ADD_EMAIL_QUIET);
break;
case OPT_EMAIL_FIELDS:
set_email_fields(optarg);
break;
case 'f':
set_filename(&datafile, optarg);
alternative_datafile = TRUE;
break;
case OPT_MUTT_QUERY:
query_string = optarg;
change_mode(&mode, MODE_QUERY);
break;
case 'C':
set_filename(&rcfile, optarg);
alternative_rcfile = TRUE;
break;
case OPT_CONVERT:
change_mode(&mode, MODE_CONVERT);
break;
case OPT_INFORMAT:
set_convert_var(informat);
break;
case OPT_OUTFORMAT:
if(mode != MODE_CONVERT && mode != MODE_QUERY) {
fprintf(stderr,
_("please use option --outformat after --convert or --mutt-query option\n"));
exit(EXIT_FAILURE);
}
// ascii-name is stored, it's used to traverse
// e_filters[] in MODE_CONVERT (see export_file())
outformat = optarg;
// but in case a query-compatible filter is requested
// try to guess right now which one it is, from u_filters[]
selected_item_filter = select_output_item_filter(outformat);
break;
case OPT_OUTFORMAT_STR:
strncpy(custom_format, optarg, FORMAT_STRING_LEN);
custom_format[FORMAT_STRING_LEN - 1] = 0;
break;
case OPT_INFILE:
set_convert_var(infile);
break;
case OPT_OUTFILE:
set_convert_var(outfile);
break;
case OPT_FORMATS:
print_filters();
exit(EXIT_SUCCESS);
default:
exit(EXIT_FAILURE);
}
}
// if the output format requested does not allow filtered querying
// (not in u_filter[]) and --convert has not been specified; bailout
if(! selected_item_filter.func && mode != MODE_CONVERT) {
printf("output format %s not supported or incompatible with --mutt-query\n", outformat);
exit(EXIT_FAILURE);
}
if(! selected_item_filter.func)
selected_item_filter = select_output_item_filter("muttq");
else if (! strcmp(outformat, "custom")) {
if(! *custom_format) {
fprintf(stderr, _("Invalid custom format string\n"));
exit(EXIT_FAILURE);
}
}
if(optind < argc) {
fprintf(stderr, _("%s: unrecognized arguments on command line\n"),
argv[0]);
exit(EXIT_FAILURE);
}
switch(mode) {
case MODE_ADD_EMAIL:
add_email(0);
case MODE_ADD_EMAIL_QUIET:
add_email(1);
case MODE_QUERY:
mutt_query(query_string);
case MODE_CONVERT:
convert(informat, infile, outformat, outfile);
}
}
static void
show_usage()
{
puts (PACKAGE " v" VERSION "\n");
puts (_(" -h --help show usage"));
puts (_(" -C --config <file> use an alternative configuration file"));
puts (_(" -f --datafile <file> use an alternative addressbook file"));
puts (_(" --mutt-query <string> make a query for mutt"));
puts (_(" --add-email "
"read an e-mail message from stdin and\n"
" "
"add the sender to the addressbook"));
puts (_(" --add-email-quiet "
"same as --add-email but doesn't\n"
" require to confirm adding"));
putchar('\n');
puts (_(" --convert convert address book files"));
puts (_(" options to use with --convert:"));
puts (_(" --informat <format> format for input file"));
puts (_(" (default: abook)"));
puts (_(" --infile <file> source file"));
puts (_(" (default: stdin)"));
puts (_(" --outformat <format> format for output file"));
puts (_(" (default: text)"));
puts (_(" --outfile <file> destination file"));
puts (_(" (default: stdout)"));
puts (_(" --outformatstr <str> format to use for \"custom\" --outformat"));
puts (_(" (default: \"{nick} ({name}): {mobile}\")"));
puts (_(" --formats list available formats"));
}
/*
* end of CLI
*/
static void
quit_mutt_query(int status)
{
close_database();
free_opts();
exit(status);
}
static void
mutt_query(char *str)
{
init_mutt_query();
if( str == NULL || !strcasecmp(str, "all") ) {
export_file("muttq", "-");
} else {
int search_fields[] = {NAME, EMAIL, NICK, -1};
int i;
if( (i = find_item(str, 0, search_fields)) < 0 ) {
printf("Not found\n");
quit_mutt_query(EXIT_FAILURE);
}
// mutt expects a leading line containing
// a message about the query.
// Others output filter supporting query (vcard, custom)
// don't needs this.
if(!strcmp(selected_item_filter.filtname, "muttq"))
putchar('\n');
while(i >= 0) {
e_write_item(stdout, i, selected_item_filter.func);
i = find_item(str, i + 1, search_fields);
}
}
quit_mutt_query(EXIT_SUCCESS);
}
static void
init_mutt_query()
{
set_filenames();
init_opts();
load_opts(rcfile);
if( load_database(datafile) ) {
printf(_("Cannot open database\n"));
quit_mutt_query(EXIT_FAILURE);
exit(EXIT_FAILURE);
}
}
static char *
make_mailstr(int item)
{
char email[MAX_EMAIL_LEN];
char *ret;
char *name = strdup_printf("\"%s\"", db_name_get(item));
get_first_email(email, item);
ret = *email ?
strdup_printf("%s <%s>", name, email) :
xstrdup(name);
free(name);
return ret;
}
void
print_stderr(int item)
{
fprintf (stderr, "%c", '\n');
if( is_valid_item(item) )
muttq_print_item(stderr, item);
else {
struct db_enumerator e = init_db_enumerator(ENUM_SELECTED);
db_enumerate_items(e) {
muttq_print_item(stderr, e.item);
}
}
}
void
launch_mutt(int item)
{
char *cmd = NULL, *mailstr = NULL;
char *mutt_command = opt_get_str(STR_MUTT_COMMAND);
if(mutt_command == NULL || !*mutt_command)
return;
if( is_valid_item(item) )
mailstr = make_mailstr(item);
else {
struct db_enumerator e = init_db_enumerator(ENUM_SELECTED);
char *tmp = NULL;
db_enumerate_items(e) {
tmp = mailstr;
mailstr = tmp ?
strconcat(tmp, ",", make_mailstr(e.item), NULL):
strconcat(make_mailstr(e.item), NULL);
free(tmp);
}
}
cmd = strconcat(mutt_command, " \'", mailstr, "\'", NULL);
free(mailstr);
#ifdef DEBUG
fprintf(stderr, "cmd: %s\n", cmd);
#endif
system(cmd);
free(cmd);
/*
* we need to make sure that curses settings are correct
*/
ui_init_curses();
}
void
launch_wwwbrowser(int item)
{
char *cmd = NULL;
if( !is_valid_item(item) )
return;
if(db_fget(item, URL))
cmd = strdup_printf("%s '%s'",
opt_get_str(STR_WWW_COMMAND),
safe_str(db_fget(item, URL)));
else
return;
if ( cmd )
system(cmd);
free(cmd);
/*
* we need to make sure that curses settings are correct
*/
ui_init_curses();
}
FILE *
abook_fopen (const char *path, const char *mode)
{
struct stat s;
bool stat_ok;
stat_ok = (stat(path, &s) != -1);
if(strchr(mode, 'r'))
return (stat_ok && S_ISREG(s.st_mode)) ?
fopen(path, mode) : NULL;
else
return (stat_ok && S_ISDIR(s.st_mode)) ?
NULL : fopen(path, mode);
}
static void
convert(char *srcformat, char *srcfile, char *dstformat, char *dstfile)
{
int ret=0;
if( !srcformat || !srcfile || !dstformat || !dstfile ) {
fprintf(stderr, _("too few arguments to make conversion\n"));
fprintf(stderr, _("try --help\n"));
}
#ifndef DEBUG
if( !strcasecmp(srcformat, dstformat) ) {
printf( _("input and output formats are the same\n"
"exiting...\n"));
exit(EXIT_FAILURE);
}
#endif
set_filenames();
init_opts();
load_opts(rcfile);
init_standard_fields();
switch(import_file(srcformat, srcfile)) {
case -1:
fprintf(stderr,
_("input format %s not supported\n"), srcformat);
ret = 1;
break;
case 1:
fprintf(stderr, _("cannot read file %s\n"), srcfile);
ret = 1;
break;
}
if(!ret)
switch(export_file(dstformat, dstfile)) {
case -1:
fprintf(stderr,
_("output format %s not supported\n"),
dstformat);
ret = 1;
break;
case 1:
fprintf(stderr,
_("cannot write file %s\n"), dstfile);
ret = 1;
break;
}
close_database();
free_opts();
exit(ret);
}
/*
* --add-email handling
*/
static int add_email_count = 0, add_email_found = 0;
static void
quit_add_email()
{
if(add_email_count > 0) {
if(save_database(1) < 0) {
fprintf(stderr, _("cannot open %s\n"), datafile);
exit(EXIT_FAILURE);
}
printf(_("%d item(s) added to %s\n"), add_email_count, datafile);
} else if (add_email_found == 0) {
puts(_("Valid sender address not found"));
}
exit(EXIT_SUCCESS);
}
static void
quit_add_email_sig(int signal)
{
quit_add_email();
}
static void
init_add_email()
{
set_filenames();
check_abook_directory();
init_opts();
load_opts(rcfile);
init_standard_fields();
atexit(free_opts);
/*
* we don't actually care if loading fails or not
*/
load_database(datafile);
atexit(close_database);
signal(SIGINT, quit_add_email_sig);
}
static int
add_email_add_item(int quiet, char *name, char *email)
{
list_item item;
if(opt_get_bool(BOOL_ADD_EMAIL_PREVENT_DUPLICATES)) {
int search_fields[] = { EMAIL, -1 };
if(find_item(email, 0, search_fields) >= 0) {
if(!quiet)
printf(_("Address %s already in addressbook\n"),
email);
return 0;
}
}
if(!quiet) {
FILE *in = fopen("/dev/tty", "r");
char c;
if(!in) {
fprintf(stderr, _("cannot open /dev/tty\n"
"you may want to use --add-email-quiet\n"));
exit(EXIT_FAILURE);
}
do {
printf(_("Add \"%s <%s>\" to %s? (%c/%c)\n"),
name,
email,
datafile,
*S_("keybinding for yes|y"),
*S_("keybinding for no|n"));
c = tolower(getc(in));
if(c == *S_("keybinding for no|n")) {
fclose(in);
return 0;
}
} while(c != *S_("keybinding for yes|y"));
fclose(in);
}
item = item_create();
item_fput(item, NAME, xstrdup(name));
item_fput(item, EMAIL, xstrdup(email));
add_item2database(item);
item_free(&item);
return 1;
}
static char *default_email_fields[] = {
"from",
NULL
};
static char **email_fields = default_email_fields;
static void
set_email_fields(char *fl)
{
char **f = email_fields;
unsigned int i, j, fieldcount = 1;
if(f != default_email_fields) {
free(f[0]);
free(f);
}
for(i = 0; fl[i]; i++) {
if(fl[i] == ',')
fieldcount++;
}
if(i == 0) {
fprintf(stderr, "No fields given\n");
exit(EXIT_FAILURE);
}
f = xmalloc(sizeof(char *) * (fieldcount + 1));
fl = xstrdup(fl);
f[0] = fl;
for(i = 0, j = 1; fl[i]; i++) {
if(fl[i] == ',') {
fl[i] = '\0';
if(strlen(f[j-1]) == 0) {
fprintf(stderr, "Empty field given\n");
exit(EXIT_FAILURE);
}
f[j++] = fl + i + 1;
}
}
if(strlen(f[j-1]) == 0) {
fprintf(stderr, "Empty field given\n");
exit(EXIT_FAILURE);
}
f[j] = NULL;
email_fields = f;
}
static char *
mailaddr_prefix(char *line)
{
unsigned int i;
char **f = email_fields;
for(i = 0; f[i]; i++) {
unsigned int len = strlen(f[i]);
if(strncasecmp(f[i], line, len) == 0 && line[len] == ':')
return line + len + 1;
}
return NULL;
}
static void
add_email_list(char *line, int quiet)
{
char *next;
char *name = NULL, *email = NULL;
while(line) {
while(isspace(*line))
line++;
if (!*line)
break;
next = strchr(line, ',');
if(next)
*next++ = '\0';
add_email_found++;
getname(line, &name, &email);
add_email_count += add_email_add_item(quiet,
name, email);
xfree(name);
xfree(email);
line = next;
}
}
static void
add_email(int quiet)
{
char *line, *alist;
struct stat s;
bool in_email_list = FALSE;
if( (fstat(fileno(stdin), &s)) == -1 || S_ISDIR(s.st_mode) ) {
fprintf(stderr, _("stdin is a directory or cannot stat stdin\n"));
exit(EXIT_FAILURE);
}
init_add_email();
do {
line = getaline(stdin);
if(line) {
if (in_email_list && isspace(*line)) {
add_email_list(line, quiet);
} else if((alist = mailaddr_prefix(line))) {
add_email_list(alist, quiet);
in_email_list = TRUE;
} else {
in_email_list = FALSE;
}
}
xfree(line);
} while( !feof(stdin) );
quit_add_email();
}
/*
* end of --add-email handling
*/