diff options
author | Julien Valroff <julien@kirya.net> | 2010-09-04 15:09:50 +0200 |
---|---|---|
committer | Julien Valroff <julien@kirya.net> | 2010-09-04 15:09:50 +0200 |
commit | ec16778893081647b28271ce7311023b8ccfbb91 (patch) | |
tree | de18c9d41c0df3537f9326d9c7c8b7264073691e /debian/default.conf | |
parent | 614f647b71d2b2003e828c78f562ce7d13675b37 (diff) |
Do not ship initial default file in /etc/default
Diffstat (limited to 'debian/default.conf')
-rw-r--r-- | debian/default.conf | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/debian/default.conf b/debian/default.conf new file mode 100644 index 0000000..72d4649 --- /dev/null +++ b/debian/default.conf @@ -0,0 +1,23 @@ +# This file is sourced by /etc/init.d/mailgraph +# +# This is a POSIX shell fragment +# + +# Should Mailgraph start on boot (true|false) (default: true) +BOOT_START="true" + +# Logfile used by mailgraph (default: /var/log/mail.log) +MAIL_LOG="/var/log/mail.log" + +# Ignore mails from localhost (true|false) (default: false) +# When true, this will pass --ignore-localhost to mailgraph daemon +IGNORE_LOCALHOST="false" + +# Extra options to be passed to mailgraph daemon +# See mailgraph -h output (default: "") +EXTRA_OPTIONS="" + +# User and group http daemon runs as (default: www-data for both options) +# Restart mailgraph daemon so that these values are taken into account +HTTP_USER="www-data" +HTTP_GROUP="www-data" |