| 1 |
<? |
<?php |
| 2 |
$dbconn="dbname=your_postgres_db"; |
$dbconn="dbname=dehs"; |
| 3 |
$base=""; |
$base="/org/home/groups/dehs/dehs_prj/dehs/"; |
| 4 |
$dirs=array("diffs_dir"=>$base . "files/diffs", |
$dirs=array("diffs_dir"=>$base . "files/diffs", |
| 5 |
"sources_dir"=>$base. "files/sources", |
"sources_dir"=>$base. "files/sources", |
| 6 |
"popcon_dir"=>$base . "files/popcon", |
"popcon_dir"=>$base . "files/popcon"); |
| 7 |
$dists=array( |
$dists=array( |
| 8 |
unstable=>array("main","contrib","non-free"), |
unstable=>array("main","contrib","non-free"), |
| 9 |
experimental=>array("main","contrib","non-free") |
experimental=>array("main","contrib","non-free") |
| 12 |
"unstable"=>"merkel.debian.org", |
"unstable"=>"merkel.debian.org", |
| 13 |
"experimental"=>"merkel.debian.org", |
"experimental"=>"merkel.debian.org", |
| 14 |
); |
); |
| 15 |
$email="reporting@email"; |
//list of addresses wishing to receive ALL the emails (even minor/less important reports) |
| 16 |
?> |
$email_all='atomo64@gmail.com'; |
| 17 |
|
//list of addresses wishing to be notified when update_all runs |
| 18 |
|
$email="bluefuture@email.it,filippo@esaurito.net,$email_all"; |
| 19 |
|
$uscan=$base.'/uscan.pl'; |
| 20 |
|
$sfIgnore = array('dl','download','prdownload','downloads','lists','cvs','svn','www'); |
| 21 |
|
$watchFileExts = array('tar.*', 'tgz', 'zip', 'gz', 'bz2'); |
| 22 |
|
$watchFileDversionMangle = array('cvs', 'svn', 'git', 'snapshot', 'pre', 'hg'); |
| 23 |
|
/*1: watch url, 2: $space, 3: name, 4: file ext, 5: extra options*/ |
| 24 |
|
$watchFormat = 'version=3' . "\n" . '%5$s' . "\n" . '%1$s%2$s%3$s-?_?([\d+\.]+|\d+)\.%4$s debian uupdate'; |
| 25 |
|
$fetchUpstreamChanges = false; |
| 26 |
|
$sendNotifications = true; |
| 27 |
|
$notificationsMailFrom = 'Debian External Health System <dehs-devel@lists.alioth.debian.org>'; |
| 28 |
|
$_SERVER['SERVER_NAME']=shell_exec("hostname -f 2>&1"); |
| 29 |
|
?> |