| 1 | = trac.ini Reference = |
| 2 | Trac 0.7 introduces an editable configuration file, ''trac.ini'', located in {{{<projectenv>/conf/trac.ini}}}. |
| 3 | This is a brief reference of available configuration options. |
| 4 | |
| 5 | == [project] == |
| 6 | || name || Project name || |
| 7 | || descr || Short project description || |
| 8 | || url || URL to the main project website || |
| 9 | || footer || Page footer text (right-aligned) || |
| 10 | |
| 11 | == [trac] == |
| 12 | || repository_dir || Path to local Subversion repository || |
| 13 | || htdocs_location || Base URL for static Trac graphics and CSS files || |
| 14 | || database || Database to use for this project || |
| 15 | || templates_dir || Path of Clearsilver templates || |
| 16 | |
| 17 | == [logging] == |
| 18 | || log_type || Logging facility to use. (none, file, stderr, syslog, winlog) || |
| 19 | || log_file || If ''log_type'' is ''file'', this should be a path to the log-file || |
| 20 | || log_level || Level of verbosity in log (CRITICAL, ERROR, WARN, INFO, DEBUG) || |
| 21 | |
| 22 | See also: TracLogging |
| 23 | |
| 24 | == [ticket] == |
| 25 | || default_version || Default version for newly created tickets || |
| 26 | || default_severity || Default severity for newly created tickets || |
| 27 | || default_priority || Default priority for newly created tickets || |
| 28 | || default_milestone || Default milestone for newly created tickets || |
| 29 | || default_component || Default component for newly created tickets || |
| 30 | |
| 31 | == [attachment] == |
| 32 | || max_size || Maximum allowed file size for ticket and wiki attachments || |
| 33 | |
| 34 | == [notification] == |
| 35 | || smtp_enabled || Enable SMTP (email) notification (true, false) || |
| 36 | || smtp_server || SMTP server to use for email notifications || |
| 37 | || smtp_replyto || Reply-To address to use in notification emails || |
| 38 | || smtp_always_cc || Email address(es) to always send notifications to || |
| 39 | |
| 40 | See also: TracNotification |
| 41 | |
| 42 | == [header_logo] == |
| 43 | || src || URL to image to use as header logo || |
| 44 | || link || Destination URL to link to from header logo || |
| 45 | || alt || ''alt'' text for header logo || |
| 46 | || width || Header logo width in pixels || |
| 47 | || height || Header logo height in pixels || |
| 48 | |
| 49 | == [mimeviewer] == |
| 50 | || enscript_path || Path to Enscript program || |
| 51 | |
| 52 | [[BR]] |
| 53 | ---- |
| 54 | See also: TracGuide, TracAdmin |