X-Git-Url: https://www.fleuret.org/cgi-bin/gitweb/gitweb.cgi?a=blobdiff_plain;f=mymail.c;h=b0744be4165d837d11b3810b3589b7ad529f2149;hb=b9768330a0a489db900b5b36cff1ec0dda2acacf;hp=c1b09be84869c7fe58f395aceb4bd753e6da6241;hpb=1ed39d135312a0c698adf82d81a1723a9141bca3;p=mymail.git diff --git a/mymail.c b/mymail.c index c1b09be..b0744be 100644 --- a/mymail.c +++ b/mymail.c @@ -84,6 +84,10 @@ enum { ID_PARTICIPANT, ID_BODY, ID_TIME_INTERVAL, + /* + ID_MAIL_ID, + ID_REFERENCES, + */ MAX_ID }; @@ -96,7 +100,11 @@ static char *field_keys[] = { "date", "part", "body", - "interval" + "interval", + /* + "mailid", + "references" + */ }; /********************************************************************/ @@ -153,6 +161,22 @@ static struct parsable_field fields_to_parse[] = { { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 } }, + /* + { + ID_MAIL_ID, + REG_ICASE, + "^message-id: ", + { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 } + }, + + { + ID_REFERENCES, + REG_ICASE, + "^\\(in-reply-to\\|references\\): ", + { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 } + }, + */ + }; /********************************************************************/ @@ -200,7 +224,7 @@ void *safe_malloc(size_t n) { void *p = malloc(n); if(!p && n != 0) { fprintf(stderr, - "selector: cannot allocate memory: %s\n", strerror(errno)); + "mymail: cannot allocate memory: %s\n", strerror(errno)); exit(EXIT_FAILURE); } return p; @@ -212,8 +236,9 @@ FILE *safe_fopen(const char *path, const char *mode, const char *comment) { return result; } else { fprintf(stderr, - "mymail: Cannot open file '%s' (%s) with mode \"%s\".\n", - path, comment, mode); + "mymail: Cannot open file '%s' (%s) with mode \"%s\": %s\n", + path, comment, mode, + strerror(errno)); exit(EXIT_FAILURE); } } @@ -505,6 +530,12 @@ int search_in_db(const char *db_filename, while(nb_extracted_mails < global_nb_mails_max && fgets(raw_db_line, BUFFER_SIZE, db_file)) { + + /* Removes the CR */ + char *s = raw_db_line; + while(*s && *s != '\n') { s++; } + *s = '\0'; + db_value = parse_token(db_key_string, TOKEN_BUFFER_SIZE, ' ', raw_db_line); if(strcmp("mail", db_key_string) == 0) { @@ -520,7 +551,7 @@ int search_in_db(const char *db_filename, for(n = 0; n < nb_search_conditions; n++) { hits[n] = 0; } db_value = parse_token(position_in_file_string, TOKEN_BUFFER_SIZE, ' ', db_value); - db_value = parse_token(current_mail_filename, PATH_MAX+1, '\n', db_value); + strncpy(current_mail_filename, db_value, PATH_MAX + 1); current_position_in_mail = atol(position_in_file_string); } @@ -1145,6 +1176,16 @@ int main(int argc, char **argv) { } } + if(error) { + print_usage(stderr); + exit(EXIT_FAILURE); + } + + if(show_help) { + print_usage(stdout); + exit(EXIT_SUCCESS); + } + /* Set all the values that may defined in the arguments, through environment variables, or hard-coded */ @@ -1168,18 +1209,6 @@ int main(int argc, char **argv) { "MYMAIL_MBOX_PATTERN", 0); - /* Start the processing */ - - if(error) { - print_usage(stderr); - exit(EXIT_FAILURE); - } - - if(show_help) { - print_usage(stdout); - exit(EXIT_SUCCESS); - } - /* mbox indexing */ if(action_index) {