// Copyright (c) 2010 Martin Knafve / hMailServer.com. // http://www.hmailserver.com #pragma once namespace HM { class IMAPFolder; class IMAPACLHelper { public: IMAPACLHelper(); virtual ~IMAPACLHelper(); static String CreateACLList(std::shared_ptr pFolder, const String &sEscapedFolderName); static bool IsValidPermissionString(const String &sPermissions); private: }; }