initial commit of file from CVS for smeserver-phplist on Sat Sep 7 20:52:04 AEST 2024
This commit is contained in:
1
root/etc/e-smith/db/accounts/defaults/lists/type
Normal file
1
root/etc/e-smith/db/accounts/defaults/lists/type
Normal file
@@ -0,0 +1 @@
|
||||
url
|
@@ -0,0 +1 @@
|
||||
phplist
|
@@ -0,0 +1 @@
|
||||
phplist
|
@@ -0,0 +1 @@
|
||||
private
|
@@ -0,0 +1 @@
|
||||
enabled
|
1
root/etc/e-smith/db/configuration/defaults/phplist/type
Normal file
1
root/etc/e-smith/db/configuration/defaults/phplist/type
Normal file
@@ -0,0 +1 @@
|
||||
service
|
52
root/etc/e-smith/db/configuration/migrate/phplist-database
Normal file
52
root/etc/e-smith/db/configuration/migrate/phplist-database
Normal file
@@ -0,0 +1,52 @@
|
||||
{
|
||||
my $rec = $DB->get('phplist')
|
||||
|| $DB->new_record('phplist', {type => 'webapp'});
|
||||
my $pw = $rec->prop('DbPassword');
|
||||
if (not $pw or length($pw) < 57){
|
||||
use MIME::Base64 qw(encode_base64);
|
||||
|
||||
$pw = "not set due to error";
|
||||
if ( open( RANDOM, "/dev/urandom" ) ){
|
||||
my $buf;
|
||||
# 57 bytes is a full line of Base64 coding, and contains
|
||||
# 456 bits of randomness - given a perfectly random /dev/random
|
||||
if ( read( RANDOM, $buf, 57 ) != 57 ){
|
||||
warn("Short read from /dev/random: $!");
|
||||
}
|
||||
else{
|
||||
$pw = encode_base64($buf);
|
||||
chomp $pw;
|
||||
}
|
||||
close RANDOM;
|
||||
}
|
||||
else{
|
||||
warn "Could not open /dev/urandom: $!";
|
||||
}
|
||||
$rec->set_prop('DbPassword', $pw);
|
||||
}
|
||||
my $apw = $rec->prop('AdminPass');
|
||||
if (not $apw or length($apw) < 20){
|
||||
use MIME::Base64 qw(encode_base64);
|
||||
$apw = "not set due to error";
|
||||
if ( open( RANDOM, "/dev/urandom" ) ){
|
||||
my $buf;
|
||||
# 57 bytes is a full line of Base64 coding, and contains
|
||||
# 456 bits of randomness - given a perfectly random /dev/random
|
||||
if ( read( RANDOM, $buf, 20 ) != 20 ){
|
||||
warn("Short read from /dev/random: $!");
|
||||
}
|
||||
else{
|
||||
$apw = encode_base64($buf);
|
||||
chomp $apw;
|
||||
}
|
||||
close RANDOM;
|
||||
}
|
||||
else{
|
||||
warn "Could not open /dev/urandom: $!";
|
||||
}
|
||||
$rec->set_prop('AdminPass', $apw);
|
||||
}
|
||||
my $type = $rec->prop("type");
|
||||
$rec->set_prop("type","service") unless ($type eq "service");
|
||||
|
||||
}
|
Reference in New Issue
Block a user