mirror of
https://github.com/Kopano-dev/kopano-ol-extension.git
synced 2023-10-10 13:37:40 +02:00
[KOE-61] Updated names for client capabilities
This commit is contained in:
parent
0c7af26b6b
commit
7a4a534901
@ -237,6 +237,7 @@
|
|||||||
<Compile Include="Controls\KUITask.cs" />
|
<Compile Include="Controls\KUITask.cs" />
|
||||||
<Compile Include="Controls\KUIUtil.cs" />
|
<Compile Include="Controls\KUIUtil.cs" />
|
||||||
<Compile Include="DebugOptions.cs" />
|
<Compile Include="DebugOptions.cs" />
|
||||||
|
<Compile Include="Features\Contacts\FeatureContacts.cs" />
|
||||||
<Compile Include="Features\DebugSupport\AboutDialog.cs">
|
<Compile Include="Features\DebugSupport\AboutDialog.cs">
|
||||||
<SubType>Form</SubType>
|
<SubType>Form</SubType>
|
||||||
</Compile>
|
</Compile>
|
||||||
|
@ -65,7 +65,7 @@ namespace Acacia.Features
|
|||||||
|
|
||||||
virtual public void GetCapabilities(ZPushCapabilities caps)
|
virtual public void GetCapabilities(ZPushCapabilities caps)
|
||||||
{
|
{
|
||||||
caps.Add(Name);
|
caps.Add(Name.ToLower());
|
||||||
}
|
}
|
||||||
|
|
||||||
#region Debug options
|
#region Debug options
|
||||||
|
@ -48,6 +48,12 @@ namespace Acacia.Features.OutOfOffice
|
|||||||
Watcher.ZPushAccountChange += Watcher_ZPushAccountChange;
|
Watcher.ZPushAccountChange += Watcher_ZPushAccountChange;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
override public void GetCapabilities(ZPushCapabilities caps)
|
||||||
|
{
|
||||||
|
caps.Add("oof");
|
||||||
|
caps.Add("ooftime");
|
||||||
|
}
|
||||||
|
|
||||||
private static bool IsOOFEnabled(ActiveSync.SettingsOOF settings)
|
private static bool IsOOFEnabled(ActiveSync.SettingsOOF settings)
|
||||||
{
|
{
|
||||||
if (settings == null)
|
if (settings == null)
|
||||||
|
@ -60,6 +60,12 @@ namespace Acacia.Features.ReplyFlags
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
override public void GetCapabilities(ZPushCapabilities caps)
|
||||||
|
{
|
||||||
|
caps.Add("receiveflags");
|
||||||
|
caps.Add("sendflags");
|
||||||
|
}
|
||||||
|
|
||||||
[AcaciaOption("Enables or disables the handling of update events to mail items. When a mail item is " +
|
[AcaciaOption("Enables or disables the handling of update events to mail items. When a mail item is " +
|
||||||
"updated, it is checked to see if the reply flags are up to date. This is the main " +
|
"updated, it is checked to see if the reply flags are up to date. This is the main " +
|
||||||
"mechanism for updating reply flags that change on the server")]
|
"mechanism for updating reply flags that change on the server")]
|
||||||
|
Loading…
Reference in New Issue
Block a user