mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-07-24 17:32:48 +00:00
EmailServer code.
- This is not fully integrated. In fact, the integration points have been disabled. - The main code for now is the remote stream. git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@6756 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
65
config/alfresco/model/emailServerModel.xml
Normal file
65
config/alfresco/model/emailServerModel.xml
Normal file
@@ -0,0 +1,65 @@
|
||||
<?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>
|
||||
|
||||
<aspects>
|
||||
|
||||
<aspect name="emailserver:attached">
|
||||
<title>Attached</title>
|
||||
<associations>
|
||||
<association name="emailserver:attachment">
|
||||
<title>Attachment</title>
|
||||
<source>
|
||||
<mandatory>true</mandatory>
|
||||
<many>true</many>
|
||||
</source>
|
||||
<target>
|
||||
<class>cm:content</class>
|
||||
<mandatory>false</mandatory>
|
||||
<many>false</many>
|
||||
</target>
|
||||
</association>
|
||||
</associations>
|
||||
</aspect>
|
||||
|
||||
<aspect name="emailserver:emailed">
|
||||
<title>Emailed</title>
|
||||
<parent>cm:emailed</parent>
|
||||
</aspect>
|
||||
|
||||
<aspect name="emailserver:aliasable">
|
||||
<title>Aliasable</title>
|
||||
<properties>
|
||||
<property name="emailserver:alias">
|
||||
<title>Alias</title>
|
||||
<type>d:text</type>
|
||||
<mandatory>true</mandatory>
|
||||
</property>
|
||||
</properties>
|
||||
</aspect>
|
||||
|
||||
</aspects>
|
||||
</model>
|
Reference in New Issue
Block a user