This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!-- ... --> | |
| <bean name="explorerApp" class="org.activiti.explorer.ExplorerApp" scope="session"> | |
| <!-- ... --> | |
| <!-- LDAP groups --> | |
| <property name="adminGroups"> | |
| <list> | |
| <value>admin</value> | |
| <value>guvnor</value> | |
| <value>B-18927-ZAMESTNANEC</value> | |
| </list> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!-- .... --> | |
| <bean id="processEngineConfiguration" class="org.activiti.spring.SpringProcessEngineConfiguration"> | |
| <!-- ... --> | |
| <!-- Mail server --> | |
| <property name="mailServerHost" value="localhost" /> | |
| <property name="mailServerPort" value="25" /> | |
| <property name="mailServerDefaultFrom" value="activiti@activiti.vpn" /> <!-- default sender address --> | |
| <!-- LDAP config --> | |
| <property name="configurators"> | |
| <list> |