1 #=====================================================================
 
   4 # Based on SQL-Ledger Version 2.1.9
 
   5 # Web http://www.lx-office.org
 
   7 #=====================================================================
 
   8 # SQL-Ledger Accounting
 
  11 #  Author: Dieter Simader
 
  12 #   Email: dsimader@sql-ledger.org
 
  13 #     Web: http://www.sql-ledger.org
 
  17 # This program is free software; you can redistribute it and/or modify
 
  18 # it under the terms of the GNU General Public License as published by
 
  19 # the Free Software Foundation; either version 2 of the License, or
 
  20 # (at your option) any later version.
 
  22 # This program is distributed in the hope that it will be useful,
 
  23 # but WITHOUT ANY WARRANTY; without even the implied warranty of
 
  24 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
  25 # GNU General Public License for more details.
 
  26 # You should have received a copy of the GNU General Public License
 
  27 # along with this program; if not, write to the Free Software
 
  28 # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
 
  29 #=====================================================================
 
  31 # user related functions
 
  33 #=====================================================================
 
  38   $main::lxdebug->enter_sub();
 
  40   my ($type, $memfile, $login) = @_;
 
  44     &error("", "$memfile locked!") if (-f "${memfile}.LCK");
 
  46     open(MEMBER, "$memfile") or &error("", "$memfile : $!");
 
  57           # remove any trailing whitespace
 
  60           ($key, $value) = split(/=/, $_, 2);
 
  62           if (($key eq "stylesheet") && ($value eq "sql-ledger.css")) {
 
  63             $value = "lx-office-erp.css";
 
  66           $self->{$key} = $value;
 
  69         $self->{login} = $login;
 
  77   $main::lxdebug->leave_sub();
 
  82   $main::lxdebug->enter_sub();
 
  87   # scan the locale directory and read in the LANGUAGE files
 
  88   opendir DIR, "locale";
 
  90   my @dir = grep !/(^\.\.?$|\..*)/, readdir DIR;
 
  92   foreach my $dir (@dir) {
 
  93     next unless open(FH, "locale/$dir/LANGUAGE");
 
  97     $cc{$dir} = "@language";
 
 102   $main::lxdebug->leave_sub();
 
 108   $main::lxdebug->enter_sub();
 
 110   my ($self, $form, $userspath) = @_;
 
 114   if ($self->{login}) {
 
 116     if ($self->{password}) {
 
 117       if ($form->{hashed_password}) {
 
 118         $form->{password} = $form->{hashed_password};
 
 120         $form->{password} = crypt($form->{password},
 
 121                                   substr($self->{login}, 0, 2));
 
 123       if ($self->{password} ne $form->{password}) {
 
 124         $main::lxdebug->leave_sub();
 
 129     unless (-e "$userspath/$self->{login}.conf") {
 
 130       $self->create_config("$userspath/$self->{login}.conf");
 
 133     do "$userspath/$self->{login}.conf";
 
 134     $myconfig{dbpasswd} = unpack 'u', $myconfig{dbpasswd};
 
 136     # check if database is down
 
 138       DBI->connect($myconfig{dbconnect}, $myconfig{dbuser},
 
 140       or $self->error(DBI::errstr);
 
 142     # we got a connection, check the version
 
 143     my $query = qq|SELECT version FROM defaults|;
 
 144     my $sth   = $dbh->prepare($query);
 
 145     $sth->execute || $form->dberror($query);
 
 147     my ($dbversion) = $sth->fetchrow_array;
 
 150     # add login to employee table if it does not exist
 
 151     # no error check for employee table, ignore if it does not exist
 
 152     $query = qq|SELECT e.id FROM employee e WHERE e.login = '$self->{login}'|;
 
 153     $sth   = $dbh->prepare($query);
 
 156     my ($login) = $sth->fetchrow_array;
 
 160       $query = qq|INSERT INTO employee (login, name, workphone, role)
 
 161                   VALUES ('$self->{login}', '$myconfig{name}',
 
 162                   '$myconfig{tel}', 'user')|;
 
 169     if (&update_available($myconfig{"dbdriver"}, $dbversion)) {
 
 172       open FH, ">$userspath/nologin" or die "
 
 175       map { $form->{$_} = $myconfig{$_} }
 
 176         qw(dbname dbhost dbport dbdriver dbuser dbpasswd dbconnect);
 
 178       $form->{dbupdate} = "db$myconfig{dbname}";
 
 179       $form->{ $form->{dbupdate} } = 1;
 
 181       $form->{"stylesheet"} = "lx-office-erp.css";
 
 182       $form->{"title"} = $main::locale->text("Dataset upgrade");
 
 184       print($form->parse_html_template("dbupgrade/header",
 
 185                                        { "dbname" => $myconfig{dbname} }));
 
 187       # required for Oracle
 
 188       $form->{dbdefault} = $sid;
 
 190       # ignore HUP, QUIT in case the webserver times out
 
 191       $SIG{HUP}  = 'IGNORE';
 
 192       $SIG{QUIT} = 'IGNORE';
 
 194       $self->dbupdate($form);
 
 197       unlink "$userspath/nologin";
 
 199       print($form->parse_html_template("dbupgrade/footer"));
 
 206   $main::lxdebug->leave_sub();
 
 212   $main::lxdebug->enter_sub();
 
 214   my ($form, $db) = @_;
 
 217         'Pg' => { 'yy-mm-dd'   => 'set DateStyle to \'ISO\'',
 
 218                   'yyyy-mm-dd' => 'set DateStyle to \'ISO\'',
 
 219                   'mm/dd/yy'   => 'set DateStyle to \'SQL, US\'',
 
 220                   'mm-dd-yy'   => 'set DateStyle to \'POSTGRES, US\'',
 
 221                   'dd/mm/yy'   => 'set DateStyle to \'SQL, EUROPEAN\'',
 
 222                   'dd-mm-yy'   => 'set DateStyle to \'POSTGRES, EUROPEAN\'',
 
 223                   'dd.mm.yy'   => 'set DateStyle to \'GERMAN\''
 
 226           'yy-mm-dd'   => 'ALTER SESSION SET NLS_DATE_FORMAT = \'YY-MM-DD\'',
 
 227           'yyyy-mm-dd' => 'ALTER SESSION SET NLS_DATE_FORMAT = \'YYYY-MM-DD\'',
 
 228           'mm/dd/yy'   => 'ALTER SESSION SET NLS_DATE_FORMAT = \'MM/DD/YY\'',
 
 229           'mm-dd-yy'   => 'ALTER SESSION SET NLS_DATE_FORMAT = \'MM-DD-YY\'',
 
 230           'dd/mm/yy'   => 'ALTER SESSION SET NLS_DATE_FORMAT = \'DD/MM/YY\'',
 
 231           'dd-mm-yy'   => 'ALTER SESSION SET NLS_DATE_FORMAT = \'DD-MM-YY\'',
 
 232           'dd.mm.yy'   => 'ALTER SESSION SET NLS_DATE_FORMAT = \'DD.MM.YY\'',
 
 235   $form->{dboptions} = $dboptions{ $form->{dbdriver} }{ $form->{dateformat} };
 
 237   if ($form->{dbdriver} eq 'Pg') {
 
 238     $form->{dbconnect} = "dbi:Pg:dbname=$db";
 
 241   if ($form->{dbdriver} eq 'Oracle') {
 
 242     $form->{dbconnect} = "dbi:Oracle:sid=$form->{sid}";
 
 245   if ($form->{dbhost}) {
 
 246     $form->{dbconnect} .= ";host=$form->{dbhost}";
 
 248   if ($form->{dbport}) {
 
 249     $form->{dbconnect} .= ";port=$form->{dbport}";
 
 252   $main::lxdebug->leave_sub();
 
 256   $main::lxdebug->enter_sub();
 
 258   my @drivers = DBI->available_drivers();
 
 260   $main::lxdebug->leave_sub();
 
 262   return (grep { /(Pg|Oracle)/ } @drivers);
 
 266   $main::lxdebug->enter_sub();
 
 268   my ($self, $form) = @_;
 
 273   $form->{dbdefault} = $form->{dbuser} unless $form->{dbdefault};
 
 274   $form->{sid} = $form->{dbdefault};
 
 275   &dbconnect_vars($form, $form->{dbdefault});
 
 278     DBI->connect($form->{dbconnect}, $form->{dbuser}, $form->{dbpasswd})
 
 281   if ($form->{dbdriver} eq 'Pg') {
 
 283     $query = qq|SELECT datname FROM pg_database WHERE NOT ((datname = 'template0') OR (datname = 'template1'))|;
 
 284     $sth   = $dbh->prepare($query);
 
 285     $sth->execute || $form->dberror($query);
 
 287     while (my ($db) = $sth->fetchrow_array) {
 
 289       if ($form->{only_acc_db}) {
 
 291         next if ($db =~ /^template/);
 
 293         &dbconnect_vars($form, $db);
 
 295           DBI->connect($form->{dbconnect}, $form->{dbuser}, $form->{dbpasswd})
 
 298         $query = qq|SELECT p.tablename FROM pg_tables p
 
 299                     WHERE p.tablename = 'defaults'
 
 300                     AND p.tableowner = '$form->{dbuser}'|;
 
 301         my $sth = $dbh->prepare($query);
 
 302         $sth->execute || $form->dberror($query);
 
 304         if ($sth->fetchrow_array) {
 
 305           push @dbsources, $db;
 
 311       push @dbsources, $db;
 
 315   if ($form->{dbdriver} eq 'Oracle') {
 
 316     if ($form->{only_acc_db}) {
 
 317       $query = qq|SELECT o.owner FROM dba_objects o
 
 318                   WHERE o.object_name = 'DEFAULTS'
 
 319                   AND o.object_type = 'TABLE'|;
 
 321       $query = qq|SELECT username FROM dba_users|;
 
 324     $sth = $dbh->prepare($query);
 
 325     $sth->execute || $form->dberror($query);
 
 327     while (my ($db) = $sth->fetchrow_array) {
 
 328       push @dbsources, $db;
 
 335   $main::lxdebug->leave_sub();
 
 341   $main::lxdebug->enter_sub();
 
 343   my ($self, $form) = @_;
 
 346     'Pg'     => qq|CREATE DATABASE "$form->{db}"|,
 
 348       qq|CREATE USER "$form->{db}" DEFAULT TABLESPACE USERS TEMPORARY TABLESPACE TEMP IDENTIFIED BY "$form->{db}"|
 
 351   $dbcreate{Pg} .= " WITH ENCODING = '$form->{encoding}'" if $form->{encoding};
 
 353   $form->{sid} = $form->{dbdefault};
 
 354   &dbconnect_vars($form, $form->{dbdefault});
 
 356     DBI->connect($form->{dbconnect}, $form->{dbuser}, $form->{dbpasswd})
 
 358   my $query = qq|$dbcreate{$form->{dbdriver}}|;
 
 359   $dbh->do($query) || $form->dberror($query);
 
 361   if ($form->{dbdriver} eq 'Oracle') {
 
 362     $query = qq|GRANT CONNECT,RESOURCE TO "$form->{db}"|;
 
 363     $dbh->do($query) || $form->dberror($query);
 
 367   # setup variables for the new database
 
 368   if ($form->{dbdriver} eq 'Oracle') {
 
 369     $form->{dbuser}   = $form->{db};
 
 370     $form->{dbpasswd} = $form->{db};
 
 373   &dbconnect_vars($form, $form->{db});
 
 375   $dbh = DBI->connect($form->{dbconnect}, $form->{dbuser}, $form->{dbpasswd})
 
 379   my $filename = qq|sql/lx-office.sql|;
 
 380   $self->process_query($form, $dbh, $filename);
 
 383   ($filename) = split /_/, $form->{chart};
 
 385   $self->process_query($form, $dbh, "sql/${filename}-gifi.sql");
 
 387   # load chart of accounts
 
 388   $filename = qq|sql/$form->{chart}-chart.sql|;
 
 389   $self->process_query($form, $dbh, $filename);
 
 391   $query = "UPDATE defaults SET coa = " . $dbh->quote($form->{"chart"});
 
 392   $dbh->do($query) || $form->dberror($query);
 
 396   $main::lxdebug->leave_sub();
 
 399 # Process a Perl script which updates the database.
 
 400 # If the script returns 1 then the update was successful.
 
 401 # Return code "2" means "needs more interaction; remove
 
 402 # users/nologin and exit".
 
 403 # All other return codes are fatal errors.
 
 404 sub process_perl_script {
 
 405   $main::lxdebug->enter_sub();
 
 407   my ($self, $form, $dbh, $filename, $version) = @_;
 
 409   open(FH, "$filename") or $form->error("$filename : $!\n");
 
 410   my $contents = join("", <FH>);
 
 415   my %dbup_myconfig = ();
 
 416   map({ $dbup_myconfig{$_} = $form->{$_}; }
 
 417       qw(dbname dbuser dbpasswd dbhost dbport dbconnect));
 
 419   my $nls_file = $filename;
 
 420   $nls_file =~ s|.*/||;
 
 421   $nls_file =~ s|.pl$||;
 
 422   my $dbup_locale = Locale->new($main::language, $nls_file);
 
 424   my $result = eval($contents);
 
 431   if (!defined($result)) {
 
 432     print($form->parse_html_template("dbupgrade/error",
 
 433                                      { "file" => $filename,
 
 436   } elsif (1 != $result) {
 
 437     unlink("users/nologin") if (2 == $result);
 
 442     $dbh->do("UPDATE defaults SET version = " . $dbh->quote($version));
 
 446   $main::lxdebug->leave_sub();
 
 450   $main::lxdebug->enter_sub();
 
 452   my ($self, $form, $dbh, $filename, $version) = @_;
 
 454   #  return unless (-f $filename);
 
 456   open(FH, "$filename") or $form->error("$filename : $!\n");
 
 465     # Remove DOS and Unix style line endings.
 
 471     for (my $i = 0; $i < length($_); $i++) {
 
 472       my $char = substr($_, $i, 1);
 
 474       # Are we inside a string?
 
 476         if ($char eq $quote_chars[-1]) {
 
 482         if (($char eq "'") || ($char eq "\"")) {
 
 483           push(@quote_chars, $char);
 
 485         } elsif ($char eq ";") {
 
 487           # Query is complete. Send it.
 
 489           $sth = $dbh->prepare($query);
 
 490           if (!$sth->execute()) {
 
 491             my $errstr = $dbh->errstr;
 
 494             $form->dberror("The database update/creation did not succeed. The file ${filename} containing the following query failed:<br>${query}<br>" .
 
 495                            "The error message was: ${errstr}<br>" .
 
 496                            "All changes in that file have been reverted.");
 
 510     $dbh->do("UPDATE defaults SET version = " . $dbh->quote($version));
 
 516   $main::lxdebug->leave_sub();
 
 520   $main::lxdebug->enter_sub();
 
 522   my ($self, $form) = @_;
 
 524   my %dbdelete = ('Pg'     => qq|DROP DATABASE "$form->{db}"|,
 
 525                   'Oracle' => qq|DROP USER $form->{db} CASCADE|);
 
 527   $form->{sid} = $form->{dbdefault};
 
 528   &dbconnect_vars($form, $form->{dbdefault});
 
 530     DBI->connect($form->{dbconnect}, $form->{dbuser}, $form->{dbpasswd})
 
 532   my $query = qq|$dbdelete{$form->{dbdriver}}|;
 
 533   $dbh->do($query) || $form->dberror($query);
 
 537   $main::lxdebug->leave_sub();
 
 540 sub dbsources_unused {
 
 541   $main::lxdebug->enter_sub();
 
 543   my ($self, $form, $memfile) = @_;
 
 548   $form->error('File locked!') if (-f "${memfile}.LCK");
 
 551   open(FH, "$memfile") or $form->error("$memfile : $!");
 
 555       my ($null, $item) = split(/=/);
 
 562   $form->{only_acc_db} = 1;
 
 563   my @db = &dbsources("", $form);
 
 565   push @dbexcl, $form->{dbdefault};
 
 567   foreach $item (@db) {
 
 568     unless (grep /$item$/, @dbexcl) {
 
 569       push @dbsources, $item;
 
 573   $main::lxdebug->leave_sub();
 
 579   $main::lxdebug->enter_sub();
 
 581   my ($self, $form) = @_;
 
 586   $form->{sid} = $form->{dbdefault};
 
 587   &dbconnect_vars($form, $form->{dbdefault});
 
 590     DBI->connect($form->{dbconnect}, $form->{dbuser}, $form->{dbpasswd})
 
 593   if ($form->{dbdriver} eq 'Pg') {
 
 595     $query = qq|SELECT d.datname FROM pg_database d, pg_user u
 
 596                 WHERE d.datdba = u.usesysid
 
 597                 AND u.usename = '$form->{dbuser}'|;
 
 598     my $sth = $dbh->prepare($query);
 
 599     $sth->execute || $form->dberror($query);
 
 601     while (my ($db) = $sth->fetchrow_array) {
 
 603       next if ($db =~ /^template/);
 
 605       &dbconnect_vars($form, $db);
 
 608         DBI->connect($form->{dbconnect}, $form->{dbuser}, $form->{dbpasswd})
 
 611       $query = qq|SELECT t.tablename FROM pg_tables t
 
 612                   WHERE t.tablename = 'defaults'|;
 
 613       my $sth = $dbh->prepare($query);
 
 614       $sth->execute || $form->dberror($query);
 
 616       if ($sth->fetchrow_array) {
 
 617         $query = qq|SELECT version FROM defaults|;
 
 618         my $sth = $dbh->prepare($query);
 
 621         if (my ($version) = $sth->fetchrow_array) {
 
 622           $dbsources{$db} = $version;
 
 632   if ($form->{dbdriver} eq 'Oracle') {
 
 633     $query = qq|SELECT o.owner FROM dba_objects o
 
 634                 WHERE o.object_name = 'DEFAULTS'
 
 635                 AND o.object_type = 'TABLE'|;
 
 637     $sth = $dbh->prepare($query);
 
 638     $sth->execute || $form->dberror($query);
 
 640     while (my ($db) = $sth->fetchrow_array) {
 
 642       $form->{dbuser} = $db;
 
 643       &dbconnect_vars($form, $db);
 
 646         DBI->connect($form->{dbconnect}, $form->{dbuser}, $form->{dbpasswd})
 
 649       $query = qq|SELECT version FROM defaults|;
 
 650       my $sth = $dbh->prepare($query);
 
 653       if (my ($version) = $sth->fetchrow_array) {
 
 654         $dbsources{$db} = $version;
 
 664   $main::lxdebug->leave_sub();
 
 671   $main::lxdebug->enter_sub(2);
 
 673   my (@v, $version, $i);
 
 675   @v = split(/\./, $_[0]);
 
 676   while (scalar(@v) < 4) {
 
 680   for ($i = 0; $i < 4; $i++) {
 
 685   $main::lxdebug->leave_sub(2);
 
 689 sub cmp_script_version {
 
 690   my ($a_from, $a_to, $b_from, $b_to);
 
 691   my ($i, $res_a, $res_b);
 
 692   my ($my_a, $my_b) = ($a, $b);
 
 694   $my_a =~ s/.*-upgrade-//;
 
 696   $my_b =~ s/.*-upgrade-//;
 
 698   ($my_a_from, $my_a_to) = split(/-/, $my_a);
 
 699   ($my_b_from, $my_b_to) = split(/-/, $my_b);
 
 701   $res_a = calc_version($my_a_from);
 
 702   $res_b = calc_version($my_b_from);
 
 704   if ($res_a == $res_b) {
 
 705     $res_a = calc_version($my_a_to);
 
 706     $res_b = calc_version($my_b_to);
 
 709   return $res_a <=> $res_b;
 
 713 sub update_available {
 
 714   my ($dbdriver, $cur_version) = @_;
 
 716   opendir SQLDIR, "sql/${dbdriver}-upgrade" or &error("", "sql/${dbdriver}-upgrade: $!");
 
 718     grep(/$form->{dbdriver}-upgrade-\Q$cur_version\E.*\.(sql|pl)/, readdir(SQLDIR));
 
 721   return ($#upgradescripts > -1);
 
 725   $main::lxdebug->enter_sub();
 
 727   my ($self, $form) = @_;
 
 729   $form->{sid} = $form->{dbdefault};
 
 731   my @upgradescripts = ();
 
 735   if ($form->{dbupdate}) {
 
 737     # read update scripts into memory
 
 738     opendir SQLDIR, "sql/" . $form->{dbdriver} . "-upgrade" or &error("", "sql/" . $form->{dbdriver} . "-upgrade : $!");
 
 741       sort(cmp_script_version
 
 742            grep(/$form->{dbdriver}-upgrade-.*?\.(sql|pl)$/, readdir(SQLDIR)));
 
 747   foreach my $db (split / /, $form->{dbupdate}) {
 
 749     next unless $form->{$db};
 
 751     # strip db from dataset
 
 753     &dbconnect_vars($form, $db);
 
 756       DBI->connect($form->{dbconnect}, $form->{dbuser}, $form->{dbpasswd})
 
 760     $query = qq|SELECT version FROM defaults|;
 
 761     my $sth = $dbh->prepare($query);
 
 763     # no error check, let it fall through
 
 766     my $version = $sth->fetchrow_array;
 
 769     next unless $version;
 
 772     $version = calc_version($version);
 
 775     foreach my $upgradescript (@upgradescripts) {
 
 776       my $a = $upgradescript;
 
 777       $a =~ s/^$form->{dbdriver}-upgrade-|\.(sql|pl)$//g;
 
 780       my ($mindb, $maxdb) = split /-/, $a;
 
 781       my $str_maxdb = $maxdb;
 
 783       $mindb = calc_version($mindb);
 
 784       $maxdb = calc_version($maxdb);
 
 787       next if ($version >= $maxdb);
 
 789       # if there is no upgrade script exit
 
 790       last if ($version < $mindb);
 
 793       $main::lxdebug->message(DEBUG2, "Appliying Update $upgradescript");
 
 794       if ($file_type eq "sql") {
 
 795         $self->process_query($form, $dbh, "sql/" . $form->{"dbdriver"} . "-upgrade/$upgradescript", $str_maxdb);
 
 797         $self->process_perl_script($form, $dbh, "sql/" . $form->{"dbdriver"} . "-upgrade/$upgradescript", $str_maxdb);
 
 809   $main::lxdebug->leave_sub();
 
 815   $main::lxdebug->enter_sub();
 
 817   my ($self, $filename) = @_;
 
 819   @config = &config_vars;
 
 821   open(CONF, ">$filename") or $self->error("$filename : $!");
 
 823   # create the config file
 
 824   print CONF qq|# configuration file for $self->{login}
 
 829   foreach $key (sort @config) {
 
 830     $self->{$key} =~ s/\'/\\\'/g;
 
 831     print CONF qq|  $key => '$self->{$key}',\n|;
 
 834   print CONF qq|);\n\n|;
 
 838   $main::lxdebug->leave_sub();
 
 842   $main::lxdebug->enter_sub();
 
 844   my ($self, $memberfile, $userspath) = @_;
 
 848   # format dbconnect and dboptions string
 
 849   &dbconnect_vars($self, $self->{dbname});
 
 851   $self->error('File locked!') if (-f "${memberfile}.LCK");
 
 852   open(FH, ">${memberfile}.LCK") or $self->error("${memberfile}.LCK : $!");
 
 855   open(CONF, "+<$memberfile") or $self->error("$memberfile : $!");
 
 862   while ($line = shift @config) {
 
 863     if ($line =~ /^\[$self->{login}\]/) {
 
 870   # remove everything up to next login or EOF
 
 871   while ($line = shift @config) {
 
 872     last if ($line =~ /^\[/);
 
 875   # this one is either the next login or EOF
 
 878   while ($line = shift @config) {
 
 882   print CONF qq|[$self->{login}]\n|;
 
 884   if ((($self->{dbpasswd} ne $self->{old_dbpasswd}) || $newmember)
 
 886     $self->{dbpasswd} = pack 'u', $self->{dbpasswd};
 
 887     chop $self->{dbpasswd};
 
 889   if (defined($self->{new_password})) {
 
 890     if ($self->{new_password} ne $self->{old_password}) {
 
 891       $self->{password} = crypt $self->{new_password},
 
 892         substr($self->{login}, 0, 2)
 
 893         if $self->{new_password};
 
 896     if ($self->{password} ne $self->{old_password}) {
 
 897       $self->{password} = crypt $self->{password}, substr($self->{login}, 0, 2)
 
 898         if $self->{password};
 
 902   if ($self->{'root login'}) {
 
 903     @config = ("password");
 
 905     @config = &config_vars;
 
 908   # replace \r\n with \n
 
 909   map { $self->{$_} =~ s/\r\n/\\n/g } qw(address signature);
 
 910   foreach $key (sort @config) {
 
 911     print CONF qq|$key=$self->{$key}\n|;
 
 916   unlink "${memberfile}.LCK";
 
 919   $self->create_config("$userspath/$self->{login}.conf")
 
 920     unless $self->{'root login'};
 
 922   $main::lxdebug->leave_sub();
 
 926   $main::lxdebug->enter_sub();
 
 928   my @conf = qw(acs address admin businessnumber charset company countrycode
 
 929     currency dateformat dbconnect dbdriver dbhost dbport dboptions
 
 930     dbname dbuser dbpasswd email fax name numberformat in_numberformat password
 
 931     printer role sid signature stylesheet tel templates vclimit angebote bestellungen rechnungen
 
 932     anfragen lieferantenbestellungen einkaufsrechnungen steuernummer co_ustid duns menustyle);
 
 934   $main::lxdebug->leave_sub();
 
 940   $main::lxdebug->enter_sub();
 
 942   my ($self, $msg) = @_;
 
 944   if ($ENV{HTTP_USER_AGENT}) {
 
 945     print qq|Content-Type: text/html
 
 947 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN">
 
 949 <body bgcolor=ffffff>
 
 951 <h2><font color=red>Error!</font></h2>
 
 958   $main::lxdebug->leave_sub();