]> git.notmuchmail.org Git - notmuch/blobdiff - notmuch-reply.c
notmuch search: Remove the chunked-searching hack.
[notmuch] / notmuch-reply.c
index 44e17661ea8a4cbc16c40727b61846e639e294bd..cd81e769aee7b3d6d30b41ff777a3954644f45a0 100644 (file)
@@ -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;