1<?php
2/**
3 * Options for the Formular Plugin
4 */
5
6$conf['AllowInclude'] = 0;   // Is including PHP-Script allowed? Should be set to 0 on public sites!
7$conf['mailPath'] = 'data/formplugin/';   //This is the path where the Mail-Scripts are stored.
8$conf['selectPage'] = 'formplugin:select';   //This is the wiki-page where SelectBox names are defined.
9$conf['mailSubject'] = 'Message - formular plugin';   //This is the Subject of the mails send by the plugin
10$conf['mailFrom'] = 'Formular-Plugin <formular-plugin@dokuwiki>';   //This is the sender of the mail. For example “user@domain” or "User Name <user@domain>".
11$conf['DebugMode'] = 0; // Shall Debug-Information be filed-out?
12
13
14//Setup VIM: ex: et ts=2 enc=utf-8 :