blob: 28af1fca7bba8721d5709671b04ace8c96ac28a1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
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 the local server, then try to use it as target for --rename
doveadm -u "local" mailbox delete "t.o"
! interimap --rename "root.from" "t.o"
xgrep -Fx 'remote: ERROR: Mailbox t\o exists. Run `interimap --target=remote --delete t.o` to delete.' <"$STDERR"
# vim: set filetype=sh :
|