]> git.notmuchmail.org Git - notmuch/blobdiff - notmuch-reply.c
vim: few compose mode updates, including README
[notmuch] / notmuch-reply.c
index 291cd024d696126219d073a2a679af456619db0e..65bd356403e210c76b000a6aa6b632d298f81d78 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;
@@ -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;
 
@@ -234,7 +234,7 @@ notmuch_reply_command (void *ctx, int argc, char *argv[])
        return 1;
     }
 
-    for (messages = notmuch_query_search_messages (query, 0, -1);
+    for (messages = notmuch_query_search_messages (query);
         notmuch_messages_has_more (messages);
         notmuch_messages_advance (messages))
     {