| `maximumEntries` | The maximum number of events shown. / **Possible values:**`0` - `100`<br>**Default value:**`10`
| `maximumNumberOfDays` | The maximum number of days in the future. <br><br>**Default value:**`365`
| `displaySymbol` | Display a symbol in front of an entry. <br><br>**Possible values:**`true` or `false`<br>**Default value:**`true`
| `defaultSymbol` | The default symbol. <br><br>**Possible values:** See [Font Awsome](http://fontawesome.io/icons/) website. <br>**Default value:**`calendar`
| `maxTitleLength` | The maximum title length. <br><br>**Possible values:**`10` - `50`<br>**Default value:**`25`
| `fetchInterval` | How often does the content needs to be fetched? (Milliseconds) <br><br>**Possible values:**`1000` - `86400000`<br>**Default value:**`300000` (5 minutes)
| `animationSpeed` | Speed of the update animation. (Milliseconds) <br><br>**Possible values:**`0` - `5000`<br>**Default value:**`2000` (2 seconds)
| `fade` | Fade the future events to black. (Gradient) <br><br>**Possible values:**`true` or `false`<br>**Default value:**`true`
| `fadePoint` | Where to start fade? <br><br>**Possible values:**`0` (top of the list) - `1` (bottom of list) <br>**Default value:**`0.25`
| `calendars` | The list of calendars. <br><br>**Possible values:** An array, see _calendar configuration_ below. <br>**Default value:**_An example calendar._
| `titleReplace` | An object of textual replacements applied to the tile of the event. This allow to remove or replace certains words in the title. <br><br>**Example:**`{'Birthday of ' : '', 'foo':'bar'}`<br>**Default value:**`{ "De verjaardag van ": "", "'s birthday": "" }`
| `displayRepeatingCountTitle` | Show count title for yearly repeating events (e.g. "X. Birthday", "X. Anniversary") <br><br>**Possible values:**`true` or `false`<br>**Default value:**`false`
| `dateFormat` | Format to use for the date of events (when using absolute dates) <br><br>**Possible values:** See [Moment.js formats](http://momentjs.com/docs/#/parsing/string-format/) <br>**Default value:**`MMM Do` (e.g. Jan 18th)
| `timeFormat` | Display event times as absolute dates, or relative time <br><br>**Possible values:**`absolute` or `relative`<br>**Default value:**`relative`
| `getRelative` | How much time (in hours) should be left until calendar events start getting relative? <br><br>**Possible values:**`0` (events stay absolute) - `48` (48 hours before the event starts) <br>**Default value:**`6`
| `urgency` | When using a timeFormat of `absolute`, the `urgency` setting allows you to display events within a specific time frame as `relative`. This allows events within a certain time frame to be displayed as relative (in xx days) while others are displayed as absolute dates <br><br>**Possible values:** a positive integer representing the number of days for which you want a relative date, for example `7` (for 7 days) <br><br>**Default value:**`7`
| `broadcastEvents` | If this property is set to true, the calendar will broadcast all the events to all other modules with the notification message: `CALENDAR_EVENTS`. The event objects are stored in an array and contain the following fields: `title`, `startDate`, `endDate`, `fullDayEvent`, `location` and `geo`. <br><br>**Possible values:**`true`, `false`<br><br>**Default value:**`true`
| `url` | The url of the calendar .ical. This property is required. <br><br>**Possible values:** Any public accessble .ical calendar.
| `symbol` | The symbol to show in front of an event. This property is optional. <br><br>**Possible values:** See [Font Awesome](http://fontawesome.io/icons/) website.
| `repeatingCountTitle` | The count title for yearly repating events in this calendar. <br><br>**Example:**`'Birthday'`
| `user` | The username for HTTP Basic authentication.
| `pass` | The password for HTTP Basic authentication.