diff options
author | Guilhem Moulin <guilhem@fripost.org> | 2019-05-27 00:40:24 +0200 |
---|---|---|
committer | Guilhem Moulin <guilhem@fripost.org> | 2019-05-27 00:40:24 +0200 |
commit | e86590ad6858d0d597278393b8de2923dfed4084 (patch) | |
tree | fae8916cc9a81107460df6af0baa26af6d2e0727 /tests/01-rename-exists-db | |
parent | 6b9e183ea2abbe5137c7551eb8c5184eea51571e (diff) | |
parent | 8e379c62a48d68cd5ab2a32c6fc9244b1ae94084 (diff) |
Merge branch 'master' into HEAD
Diffstat (limited to 'tests/01-rename-exists-db')
-rw-r--r-- | tests/01-rename-exists-db/local.conf | 6 | ||||
-rw-r--r-- | tests/01-rename-exists-db/remote.conf | 6 | ||||
-rw-r--r-- | tests/01-rename-exists-db/run | 14 |
3 files changed, 26 insertions, 0 deletions
diff --git a/tests/01-rename-exists-db/local.conf b/tests/01-rename-exists-db/local.conf new file mode 100644 index 0000000..93497d9 --- /dev/null +++ b/tests/01-rename-exists-db/local.conf @@ -0,0 +1,6 @@ +namespace inbox { + separator = . + location = maildir:~/inbox:LAYOUT=index + inbox = yes + list = yes +} diff --git a/tests/01-rename-exists-db/remote.conf b/tests/01-rename-exists-db/remote.conf new file mode 100644 index 0000000..61e3d0d --- /dev/null +++ b/tests/01-rename-exists-db/remote.conf @@ -0,0 +1,6 @@ +namespace inbox { + separator = "\\" + location = maildir:~/inbox:LAYOUT=index + inbox = yes + list = yes +} diff --git a/tests/01-rename-exists-db/run b/tests/01-rename-exists-db/run new file mode 100644 index 0000000..29cb075 --- /dev/null +++ b/tests/01-rename-exists-db/run @@ -0,0 +1,14 @@ +doveadm -u "local" mailbox create "root.from" "root.from.child" "t.o" +doveadm -u "remote" mailbox create "root\\from" "root\\from\\child" "t\\o" + +interimap +check_mailbox_list + +# delete a mailbox on both servers but leave it in the database, then try to use it as target for --rename +doveadm -u "local" mailbox delete "t.o" +doveadm -u "remote" mailbox delete "t\\o" + +! interimap --rename "root.from" "t.o" +xgrep -Fx 'database: ERROR: Mailbox t.o exists. Run `interimap --target=database --delete t.o` to delete.' <"$STDERR" + +# vim: set filetype=sh : |