~ubuntu-branches/ubuntu/natty/amavisd-new/natty

« back to all changes in this revision

Viewing changes to debian/conf/10-debian_scripts

  • Committer: Bazaar Package Importer
  • Author(s): Christian Perrier
  • Date: 2007-02-24 19:27:53 UTC
  • mfrom: (3.1.7 feisty)
  • Revision ID: james.westby@ubuntu.com-20070224192753-fvvima53q1jrp34x
Tags: 1:2.4.2-6.1
* Non-maintainer upload to fix pending l10n issues.
* Debconf translations
  - Remove extra debian/po/de.po~
  - Convert all translation files to UTF-8
  - Russian. Closes: #405243
  - Spanish. Closes: #408734
  - Italian. Closes: #409831
* Add very simple LSB headers to init scripts

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
use strict;
 
2
 
 
3
# ADMINSTRATORS: DO NOT CHANGE THIS FILE
 
4
# Change the files in /etc/amavis/conf.d instead
 
5
 
 
6
# This file contains Debian system settings that are not to be changed
 
7
# unless you really know better.
 
8
 
 
9
# Changing or overriding the settings in this file requires changing scripts
 
10
# such as the initscript and maybe the cron scripts, and even the amavis user
 
11
# home directory.
 
12
#
 
13
# You have been warned.  Don't change these settings.
 
14
 
 
15
$daemon_user  = 'amavis';
 
16
$daemon_group = 'amavis';
 
17
 
 
18
$MYHOME   = '/var/lib/amavis'; # a convenient default for other settings
 
19
$TEMPBASE = "$MYHOME/tmp";     # working directory, needs to be created manually
 
20
$ENV{TMPDIR} = $TEMPBASE;      # environment variable TMPDIR
 
21
$db_home   = "$MYHOME/db";
 
22
 
 
23
$pid_file  = "/var/run/amavis/amavisd.pid";
 
24
$lock_file = "/var/run/amavis/amavisd.lock";
 
25
 
 
26
1;  # insure a defined return