--- Config.pm Sun Oct 31 12:47:54 2004 +++ Config.pm.orig Sun Oct 31 12:32:57 2004 @@ -14,13 +14,13 @@ Where to install everything to. Currently this is set to - $ENV{'HOME'}/siesta + /home/bdwelle/siesta =head2 C<$CONFIG_FILE> Where the config file is currently - $ENV{'HOME'}/siesta/siesta.conf + /home/bdwelle/siesta/siesta.conf This can be overridden when using the command line tools by using @@ -42,19 +42,19 @@ Where our message templates are stored. -By default - $ENV{'HOME'}/siesta/messages/ +By default - /home/bdwelle/siesta/messages/ =item archive Where we archive list mails. -By default - $ENV{'HOME'}/siesta/archive// +By default - /home/bdwelle/siesta/archive// =item log_path Where we log things -By default - $ENV{'HOME'}/siesta/error +By default - /home/bdwelle/siesta/error =item log_level @@ -65,7 +65,7 @@ The DSN for our local DB -By default - dbi:SQLite:$ENV{'HOME'}/siesta/database +By default - dbi:SQLite:/home/bdwelle/siesta/database =item storage_user @@ -115,32 +115,32 @@ BEGIN { - $ROOT = $ENV{'HOME'} . '/siesta'; - $CONFIG_FILE = "$ROOT/siesta.conf" unless defined $CONFIG_FILE; + $ROOT = '/home/bdwelle/siesta'; + $CONFIG_FILE = '/home/bdwelle/siesta/siesta.conf' unless defined $CONFIG_FILE; $config = AppConfig->new({ - GLOBAL => { - ARGCOUNT => ARGCOUNT_ONE, + GLOBAL => { ARGCOUNT => ARGCOUNT_ONE, EXPAND => EXPAND_ALL, }, }, + root => { - DEFAULT => $ROOT, + DEFAULT => '/home/bdwelle/siesta', }, messages => { - DEFAULT => "$ROOT/messages", + DEFAULT => '/home/bdwelle/siesta/messages', }, archive => { - DEFAULT => "$ROOT/archive", + DEFAULT => '/home/bdwelle/siesta/archive', }, log_path => { - DEFAULT => "$ROOT/error", + DEFAULT => '/home/bdwelle/siesta/error', }, log_level => { DEFAULT => 3, }, storage_dsn => { - DEFAULT => "dbi:SQLite:$ROOT/database", + DEFAULT => 'dbi:SQLite:/home/bdwelle/siesta/database', }, storage_user => { DEFAULT => 'root',