X-Git-Url: https://git.notmuchmail.org/git?p=notmuch;a=blobdiff_plain;f=notmuch-reply.c;h=cd81e769aee7b3d6d30b41ff777a3954644f45a0;hp=291cd024d696126219d073a2a679af456619db0e;hb=1fd8b7866f189a66e4491b01452f476371759f91;hpb=f379aa52845f5594aa6cc2e7cf131d5f57202bbf diff --git a/notmuch-reply.c b/notmuch-reply.c index 291cd024..cd81e769 100644 --- a/notmuch-reply.c +++ b/notmuch-reply.c @@ -97,12 +97,12 @@ address_is_users (const char *address, notmuch_config_t *config) size_t i, other_len; primary = notmuch_config_get_user_primary_email (config); - if (strcmp (primary, address) == 0) + if (strcasecmp (primary, address) == 0) return 1; other = notmuch_config_get_user_other_email (config, &other_len); for (i = 0; i < other_len; i++) - if (strcmp (other[i], address) == 0) + if (strcasecmp (other[i], address) == 0) return 1; return 0; @@ -224,7 +224,7 @@ notmuch_reply_command (void *ctx, int argc, char *argv[]) } notmuch = notmuch_database_open (notmuch_config_get_database_path (config), - NOTMUCH_DATABASE_MODE_READONLY); + NOTMUCH_DATABASE_MODE_READ_ONLY); if (notmuch == NULL) return 1;