initial commit of file from CVS for smeserver-sogo on Sat Sep 7 16:42:51 AEST 2024
This commit is contained in:
@@ -0,0 +1,22 @@
|
||||
CONNECT mysql;
|
||||
|
||||
REPLACE INTO user (host, user, password)
|
||||
VALUES (
|
||||
'localhost',
|
||||
'sogo',
|
||||
password('{$sogod{DbPassword}}')
|
||||
);
|
||||
|
||||
REPLACE INTO db (host, db, user, select_priv, insert_priv, update_priv,
|
||||
delete_priv, create_priv, drop_priv, alter_priv, index_priv,
|
||||
references_priv)
|
||||
VALUES (
|
||||
'localhost',
|
||||
'sogo',
|
||||
'sogo',
|
||||
'Y', 'Y', 'Y', 'Y',
|
||||
'Y', 'Y', 'Y', 'Y',
|
||||
'Y'
|
||||
);
|
||||
|
||||
FLUSH PRIVILEGES;
|
@@ -0,0 +1 @@
|
||||
fix_headers_case
|
@@ -0,0 +1,11 @@
|
||||
{
|
||||
|
||||
return "" unless (-x '/usr/bin/make-srv');
|
||||
|
||||
$OUT .= "# SRV Records for SOGo\n";
|
||||
$OUT .= `/usr/bin/make-srv -service _caldavs._tcp.$DomainName -target $SystemName.$DomainName -port 443`;
|
||||
$OUT .= `/usr/bin/make-srv -service _carddavs._tcp.$DomainName -target $SystemName.$DomainName -port 443`;
|
||||
$OUT .= `/usr/bin/make-srv -service _caldav._tcp.$DomainName -target $SystemName.$DomainName -port 443`;
|
||||
$OUT .= `/usr/bin/make-srv -service _carddav._tcp.$DomainName -target $SystemName.$DomainName -port 443`;
|
||||
|
||||
}
|
Reference in New Issue
Block a user