mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-07-24 17:32:48 +00:00
7653: Update and added deployment icons 7655: Fixed multithreaded test case to handle case where threads can't get started due to lack of available DB connections. 7657: AR-1903: Text attachments should be treated the same way as other attachments. 7661: Fixed duplicate index creation for column that is also declared unique 7662: Additional indexes related to permissions 7664: Fixed query for specific property types 7667: Used existing attachable aspect for email attachments - effectively reversing association direction. 7682: Added AVM Console page to webapp (admin user protected) 7683: Merged V2.1 to V2.2 7642: Fix for WCM-949 7668: Debugging output for getAPath(). Possible partial fix for LazyInitialization errors seen by some customers 7672: Fixed sub optimal tree pruning in filesystem deployment git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@8442 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
57 lines
1.7 KiB
XML
57 lines
1.7 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<model name="emailserver:emailserverModel"
|
|
xmlns="http://www.alfresco.org/model/dictionary/1.0">
|
|
|
|
<!-- Optional meta-data about the model -->
|
|
<description>Emailserver Model</description>
|
|
<author>UTL</author>
|
|
<version>1.0</version>
|
|
|
|
<!-- Imports are required to allow references to definitions in other models -->
|
|
<imports>
|
|
<!-- Import Alfresco Dictionary Definitions -->
|
|
<import uri="http://www.alfresco.org/model/dictionary/1.0"
|
|
prefix="d" />
|
|
<!-- Import Alfresco Content Domain Model Definitions -->
|
|
<import uri="http://www.alfresco.org/model/content/1.0"
|
|
prefix="cm" />
|
|
</imports>
|
|
|
|
<!-- Introduction of new namespaces defined by this model -->
|
|
<!-- NOTE: The following namespace my.new.model should be changed to reflect your own namespace -->
|
|
<namespaces>
|
|
<namespace uri="http://www.alfresco.org/model/emailserver/1.0"
|
|
prefix="emailserver" />
|
|
</namespaces>
|
|
|
|
<constraints>
|
|
<constraint name="emailserver:alias" type="REGEX">
|
|
<parameter name="expression"><value><![CDATA[[a-zA-Z0-9.\-]*]]></value></parameter>
|
|
<parameter name="requiresMatch"><value>true</value></parameter>
|
|
</constraint>
|
|
</constraints>
|
|
|
|
<aspects>
|
|
|
|
<aspect name="emailserver:emailed">
|
|
<title>Emailed</title>
|
|
<parent>cm:emailed</parent>
|
|
</aspect>
|
|
|
|
<aspect name="emailserver:aliasable">
|
|
<title>Email Alias</title>
|
|
<properties>
|
|
<property name="emailserver:alias">
|
|
<title>Alias</title>
|
|
<type>d:text</type>
|
|
<mandatory>false</mandatory>
|
|
<constraints>
|
|
<constraint ref="emailserver:alias" />
|
|
</constraints>
|
|
</property>
|
|
</properties>
|
|
</aspect>
|
|
|
|
</aspects>
|
|
</model> |