File: config

package info (click to toggle)
mailgraph 1.14-1.2
  • links: PTS
  • area: main
  • in suites: lenny
  • size: 248 kB
  • ctags: 25
  • sloc: perl: 995; sh: 180; makefile: 54
file content (16 lines) | stat: -rw-r--r-- 416 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/bin/sh -e
. /usr/share/debconf/confmodule

if [ -f /etc/default/mailgraph ]; then
	. /etc/default/mailgraph
	db_set mailgraph/start_on_boot "$BOOT_START"
	db_set mailgraph/mail_log "$MAIL_LOG"
	db_set mailgraph/ignore_localhost "$IGNORE_LOCALHOST"
fi
	
db_input medium mailgraph/start_on_boot || true
db_go
db_input medium mailgraph/mail_log || true
db_go
db_input medium mailgraph/ignore_localhost || true
db_go