[pkg-kolab] Kolab shared folder userspace prefix

Neil Price nprice at gibb.co.za
Fri Oct 22 14:39:42 UTC 2010


  Not sure if this is a bug or a feature or if it exists upstream....

Kolab creates shared folders with name "shared.foldername" instead of 
the expected "shared/foldername" (with unixhierarchysep: yes)

from /usr/share/perl5/Kolab/Cyrus.pm

sub createUid
{
     my $user = shift;
     my $sf = shift || 0;
     my $seperator = '/';
     my $uidprefix = 'user';
     if ($sf) {
       $seperator = '.';
       $uidprefix = 'shared';
     }
     return $uidprefix . $seperator . $user;
#    return 'user' . ($sf ? '.' : '/') . $user;
}





More information about the pkg-kolab-devel mailing list