1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93
|
<?xml version="1.0"?>
<!-- $Horde: kronolith/config/conf.xml,v 1.14.10.4 2006/02/08 12:27:31 jan Exp $ -->
<configuration>
<configsection name="calendar">
<configheader>Calendar Driver Settings</configheader>
<configswitch name="driver" desc="What storage driver should we use?">sql
<case name="sql" desc="SQL">
<configsection name="params">
<configsql switchname="driverconfig">
<configstring name="table" desc="Database
table">kronolith_events</configstring>
</configsql>
</configsection>
</case>
<case name="kolab" desc="Kolab" />
</configswitch>
</configsection>
<configsection name="storage">
<configheader>Free/Busy Driver Settings</configheader>
<configstring name="default_domain" desc="Default domain to add to attendee email addresses if none is specified." required="false" />
<configswitch name="driver" desc="What free/busy driver should we use?">sql
<case name="sql" desc="SQL">
<configsection name="params">
<configsql switchname="driverconfig">
<configstring name="table" desc="Database
table">kronolith_storage</configstring>
</configsql>
</configsection>
</case>
<case name="kolab" desc="Kolab">
<configsection name="freebusy">
<configenum name="protocol" desc="Protocol to use for accessing the
Kolab server's free/busy information">
<values>
<value>https</value>
<value>http</value>
</values>
</configenum>
<configinteger name="port" desc="Port to use for accessing the
Kolab server's free/busy information">443</configinteger>
</configsection>
</case>
</configswitch>
</configsection>
<configsection name="metadata">
<configheader>Metadata Settings</configheader>
<configboolean name="keywords" desc="Should keywords be loaded from
config/keywords.php to be assigned to events?">false</configboolean>
</configsection>
<configsection name="reminder">
<configheader>Reminder Settings</configheader>
<configstring name="server_name" desc="Server name from which reminder
emails should be sent"/>
<configstring name="from_addr" desc="Email address from which reminder
emails should be sent"/>
</configsection>
<configsection name="autoshare">
<configheader>Calendar auto-sharing</configheader>
<configenum name="shareperms" desc="When a new user is created, his
default calendar can be automatically shared with his group(s). Which
permissions should the group have?">
<values>
<value desc="None (no sharing)">none</value>
<value desc="Read-only">read</value>
<value desc="Read and write">edit</value>
<value desc="Read, write and delete">full</value>
</values>
</configenum>
</configsection>
<configsection name="menu">
<configheader>Menu Settings</configheader>
<configboolean name="print" desc="Should we display a Print link in the
Kronolith menu?">true</configboolean>
<configboolean name="import_export" desc="Should we display an Import/Export
link in the Horde application menus?">true</configboolean>
<configmultienum name="apps" desc="Select any applications that should be
linked in Kronolith's menu">
<values>
<configspecial name="list-horde-apps"/>
</values>
</configmultienum>
</configsection>
</configuration>
|