diff options
-rw-r--r-- | lib/Kolab/Utils/DAVBackend.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Kolab/Utils/DAVBackend.php b/lib/Kolab/Utils/DAVBackend.php index 0989032..098a353 100644 --- a/lib/Kolab/Utils/DAVBackend.php +++ b/lib/Kolab/Utils/DAVBackend.php @@ -72,7 +72,7 @@ class DAVBackend } // generate a folder UID and set it to IMAP - $uid = rtrim(chunk_split(md5($folder->name . $folder->get_owner()), 12, '-'), '-'); + $uid = rtrim(chunk_split(md5($folder->name . $folder->get_owner() . uniqid('-', true)), 12, '-'), '-'); self::set_uid($folder, $uid); return $uid; |