]> git.ipfire.org Git - thirdparty/dovecot/core.git/commitdiff
Fixing my english: s/non-?existing/nonexistent/
authorTimo Sirainen <tss@iki.fi>
Thu, 22 Jul 2010 16:06:16 +0000 (17:06 +0100)
committerTimo Sirainen <tss@iki.fi>
Thu, 22 Jul 2010 16:06:16 +0000 (17:06 +0100)
17 files changed:
doc/example-config/conf.d/15-lda.conf
src/auth/auth-master-connection.c
src/auth/db-passwd-file.c
src/lib-dict/dict.h
src/lib-storage/index/dbox-multi/mdbox-storage-rebuild.c
src/lib-storage/index/index-mail-headers.c
src/lib-storage/index/index-mail.c
src/lib-storage/index/index-search.c
src/lib-storage/index/index-thread.c
src/lib-storage/index/maildir/maildir-keywords.h
src/lib-storage/index/maildir/maildir-util.c
src/lib-storage/index/shared/shared-storage.c
src/lib-storage/list/mailbox-list-maildir.c
src/lib-storage/mail-storage.h
src/lib-storage/mailbox-list.c
src/plugins/fts-solr/fts-backend-solr.c
src/plugins/virtual/virtual-sync.c

index a59d0ec0187eaa4d804b73cb2bbf65647768aed7..ad7db56b1ba174bc4cba46a970314b221cce0cba 100644 (file)
@@ -28,7 +28,7 @@
 # Delimiter character between local-part and detail in email address.
 #recipient_delimiter = +
 
-# Should saving a mail to a non-existing mailbox automatically create it?
+# Should saving a mail to a nonexistent mailbox automatically create it?
 #lda_mailbox_autocreate = no
 
 # Should automatically created mailboxes be also automatically subscribed?
index 4fd2c6e685c0e0c27f6b9ab2544dae29033b4f35..e2e93f0d25962e5653e673e3bcee788f819647b3 100644 (file)
@@ -91,7 +91,7 @@ master_input_request(struct auth_master_connection *conn, const char *args)
 
        client_conn = auth_client_connection_lookup(client_pid);
        if (client_conn == NULL) {
-               i_error("Master requested auth for nonexisting client %u",
+               i_error("Master requested auth for nonexistent client %u",
                        client_pid);
                (void)o_stream_send_str(conn->output,
                                        t_strdup_printf("FAIL\t%u\n", id));
index 8305b6d59889af1463f9a8136f0a174ce0b18bd7..0f636ca51cb5509bfff859c299504541aa3a3033 100644 (file)
@@ -245,7 +245,7 @@ static bool passwd_file_sync(struct passwd_file *pw)
 
        if (stat(pw->path, &st) < 0) {
                /* with variables don't give hard errors, or errors about
-                  nonexisting files */
+                  nonexistent files */
                if (errno == EACCES) {
                        i_error("passwd-file %s: %s", pw->path,
                                eacces_error_get("stat", pw->path));
index 684cac51157c20c054aed48f321f5224a4dac6a4..ac87552ea5f43a6a60f1ca044b60bca472efb4a6 100644 (file)
@@ -59,7 +59,7 @@ int dict_iterate_deinit(struct dict_iterate_context **ctx);
 /* Start a new dictionary transaction. */
 struct dict_transaction_context *dict_transaction_begin(struct dict *dict);
 /* Commit the transaction. Returns 1 if ok, 0 if dict_atomic_inc() was used
-   on a non-existing key, -1 if failed. */
+   on a nonexistent key, -1 if failed. */
 int dict_transaction_commit(struct dict_transaction_context **ctx);
 /* Commit the transaction, but don't wait to see if it finishes successfully.
    If callback isn't NULL, it's called eventually. If it's not called by the
index 58c35252b8c0ca846d98d07831826ee6f9648eee..161f5c924a7f8f49f46576025b4f7ce65c10a573 100644 (file)
@@ -338,7 +338,7 @@ static int rebuild_apply_map(struct mdbox_storage_rebuild_context *ctx)
                pos = bsearch(&search_msgp, msgs, count, sizeof(*msgs),
                              mdbox_rebuild_msg_offset_cmp);
                if (pos == NULL || (*pos)->map_uid != 0) {
-                       /* map record points to non-existing or
+                       /* map record points to nonexistent or
                           a duplicate message. */
                        mail_index_expunge(ctx->atomic->sync_trans, seq);
                } else {
index 21d0f333528c171a4202825a5f298603845abbb9..c420b3f0cf1f285bf8f5734737c595f6acf393bd 100644 (file)
@@ -340,7 +340,7 @@ void index_mail_parse_header(struct message_part *part,
                str_append_n(mail->header_data, hdr->middle, hdr->middle_len);
 
                /* remember that we saw this header so we don't add it to
-                  cache as nonexisting. */
+                  cache as nonexistent. */
                match[field_idx] |= HEADER_MATCH_FLAG_FOUND;
        }
        str_append_n(mail->header_data, hdr->value, hdr->value_len);
@@ -641,7 +641,7 @@ index_mail_get_raw_headers(struct index_mail *mail, const char *field,
        data = buffer_get_modifiable_data(dest, &len);
 
        if (len == 0) {
-               /* cached as non-existing. */
+               /* cached as nonexistent. */
                *value_r = p_new(mail->data_pool, const char *, 1);
                return 0;
        }
index 92838b9fb76ded9734bcf2cbc579ebb3aa1a47bc..c08392b53605dfb49aa1cb86823da4e26a43b421 100644 (file)
@@ -1129,7 +1129,7 @@ void index_mail_close(struct mail *_mail)
        /* If uid == 0 but seq != 0, we came here from saving a (non-mbox)
           message. If that happens, don't bother checking if anything should
           be cached since it was already checked. Also by now the transaction
-          may have already been rollbacked and seq point to a non-existing
+          may have already been rollbacked and seq point to a nonexistent
           message. */
        if (mail->mail.mail.uid != 0) {
                index_mail_cache_sizes(mail);
index 79234568ca7eebba37b46879356b325a0960ba6a..60e63db1e681993fe176d432ea2dc79d6dee16f8 100644 (file)
@@ -736,7 +736,7 @@ static bool search_msgset_fix_limits(unsigned int messages_count,
                           (e.g. with count+1:* we still want to include it) */
                        seq_range_array_add(seqset, 0, messages_count);
                }
-               /* remove all non-existing messages */
+               /* remove all nonexistent messages */
                seq_range_array_remove_range(seqset, messages_count + 1,
                                             (uint32_t)-1);
        }
index 5a8e007909c66f38a1ddde33bd22709ff511e4ab..0153467aea5a571fc6cfa3b6913f0c494f721fed 100644 (file)
@@ -232,7 +232,7 @@ static int thread_get_mail_header(struct mail *mail, const char *name,
                        return -1;
 
                /* Message is expunged. Instead of failing the entire THREAD
-                  command, just treat the header as non-existing. */
+                  command, just treat the header as nonexistent. */
                *value_r = NULL;
        }
        return 0;
index ea0e3d8251c2e24999f249202d28b118ddba5490..43e47d70ef724bb59c7cd02e1fd67b4cacaed579 100644 (file)
@@ -19,7 +19,7 @@ maildir_keywords_init_readonly(struct mailbox *box);
 struct maildir_keywords_sync_ctx *
 maildir_keywords_sync_init(struct maildir_keywords *mk,
                           struct mail_index *index);
-/* Don't try to add any nonexisting keywords */
+/* Don't try to add any nonexistent keywords */
 struct maildir_keywords_sync_ctx *
 maildir_keywords_sync_init_readonly(struct maildir_keywords *mk,
                                    struct mail_index *index);
index d0ef09d4e2507ce808232854bb07dc455d5ef32e..b4be61d4370a9d2d65912073e3624cb34946805c 100644 (file)
@@ -92,7 +92,7 @@ static int do_racecheck(struct maildir_mailbox *mbox, const char *path,
        struct stat st;
 
        if (lstat(path, &st) == 0 && (st.st_mode & S_IFLNK) != 0) {
-               /* most likely a symlink pointing to a non-existing file */
+               /* most likely a symlink pointing to a nonexistent file */
                mail_storage_set_critical(&mbox->storage->storage,
                        "Maildir: Symlink destination doesn't exist: %s", path);
                return -2;
index 61466b465677633a0751941dfd91e5bee161b988..4341e0683ff641734394b355fc14d00df9a421de 100644 (file)
@@ -95,7 +95,7 @@ shared_storage_get_list_settings(const struct mail_namespace *ns ATTR_UNUSED,
 }
 
 static void
-get_nonexisting_user_location(struct shared_storage *storage,
+get_nonexistent_user_location(struct shared_storage *storage,
                              const char *username, string_t *location)
 {
        /* user wasn't found. we'll still need to create the storage
@@ -103,7 +103,7 @@ get_nonexisting_user_location(struct shared_storage *storage,
        str_append(location, storage->storage_class->name);
        str_append_c(location, ':');
 
-       /* use a reachable but non-existing path as the mail root directory */
+       /* use a reachable but nonexistent path as the mail root directory */
        str_append(location, storage->storage.user->set->base_dir);
        str_append(location, "/user-not-found/");
        str_append(location, username);
@@ -265,7 +265,7 @@ int shared_storage_get_namespace(struct mail_namespace **_ns,
        if (ret > 0)
                var_expand(location, storage->location, tab);
        else {
-               get_nonexisting_user_location(storage, userdomain, location);
+               get_nonexistent_user_location(storage, userdomain, location);
                new_ns->flags |= NAMESPACE_FLAG_UNUSABLE;
        }
 
index 141ec634c96523c7064bf0a1f69598779fef1cfe..f33beef6bd5e8c9211761b57afb36931f53875c9 100644 (file)
@@ -566,7 +566,7 @@ maildir_list_rename_mailbox(struct mailbox_list *oldlist, const char *oldname,
        int ret;
         bool found;
 
-       /* NOTE: it's possible to rename a nonexisting mailbox which has
+       /* NOTE: it's possible to rename a nonexistent mailbox which has
           children. In that case we should ignore the rename() error. */
        oldpath = mailbox_list_get_path(oldlist, oldname,
                                        MAILBOX_LIST_PATH_TYPE_MAILBOX);
index 4dbfd4348c8df1740843e3e6f96aa567ec24bc79..9755b5a799160a9d78720856b64e78696eccd383 100644 (file)
@@ -337,7 +337,7 @@ void mailbox_close(struct mailbox *box);
 void mailbox_free(struct mailbox **box);
 
 /* Create a mailbox. Returns failure if it already exists. Mailbox name is
-   allowed to contain multiple new non-existing hierarchy levels. If directory
+   allowed to contain multiple new nonexistent hierarchy levels. If directory
    is TRUE, the mailbox should be created so that it can contain children. The
    mailbox itself doesn't have to be created as long as it shows up in LIST.
    If update is non-NULL, its contents are used to set initial mailbox
index fc95f3b9b024ae2483c7c9661771ac5d1f64157c..232d18263ded4dc3082d93eb1e0fc70ce0a3d9fc 100644 (file)
@@ -1156,7 +1156,7 @@ int mailbox_list_set_subscribed(struct mailbox_list *list,
                return -1;
 
        /* subscriptions are about names, not about mailboxes. it's possible
-          to have a subscription to non-existing mailbox. renames also don't
+          to have a subscription to nonexistent mailbox. renames also don't
           change subscriptions. so instead of using actual GUIDs, we'll use
           hash of the name. */
        mailbox_name_get_sha128(name, guid);
index 4015091513abae4f6222dab4b2e4c5ae21f2f854..15844eb191bfc8a58090f60fba0b1db0179615df 100644 (file)
@@ -182,7 +182,7 @@ fts_backend_solr_init(struct mailbox *box)
                                                   set->default_ns_prefix);
                if (backend->default_ns == NULL) {
                        i_fatal("fts_solr: default_ns setting points to "
-                               "nonexisting namespace");
+                               "nonexistent namespace");
                }
        } else {
                backend->default_ns =
index f743ec3c4ad8122e11f7d522bd6eda1733aba46d..921dd5062debf705a514c7a5c18b49d9a7b67665 100644 (file)
@@ -774,7 +774,7 @@ static void virtual_sync_drop_existing(struct virtual_backend_box *bbox,
        seq_range_array_remove_seq_range(added_uids, &drop_uids);
 }
 
-static void virtual_sync_drop_nonexisting(struct virtual_backend_box *bbox,
+static void virtual_sync_drop_nonexistent(struct virtual_backend_box *bbox,
                                          ARRAY_TYPE(seq_range) *removed_uids)
 {
        ARRAY_TYPE(seq_range) drop_uids;
@@ -835,7 +835,7 @@ static void virtual_sync_mailbox_box_update(struct virtual_sync_context *ctx,
        }
 
        virtual_sync_drop_existing(bbox, &added_uids);
-       virtual_sync_drop_nonexisting(bbox, &removed_uids);
+       virtual_sync_drop_nonexistent(bbox, &removed_uids);
 
        /* if any of the pending removes came back, we don't want to expunge
           them anymore. also since they already exist, remove them from