-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.php
40 lines (30 loc) · 1.07 KB
/
config.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
<?php
class Config {
public static $feeds = array(
array( 'url' => 'https://code.google.com/feeds/p/rss2xmail/issueupdates/basic', 'title' => 'Projects Issuetracker -1-'),
array( 'url' => 'https://code.google.com/feeds/p/rss2xmail/issueupdates/basic', 'title' => 'Projects Issuetracker -2-')
);
public static $recipients = array(
'preview@inter.net',
'mailinglist@inter.net'
);
public static $mailFromEmail = 'sender@inter.net';
public static $mailFromLabel = 'Newsletter FOO BAR';
public static $mailDefaultSubject = 'Newsletter FOO BAR';
public static $mailBody = 'mail-newsletter';
}
define('LIB', 'php-lib');
define('TPL', 'tpl');
require_once('config-local.php');
function fatal() {
$args = func_get_args();
for($i=0; $i < count($args); var_dump($args[$i++]));
die;
}
// global lib definitions
require_once(LIB.'/class.rssmailer.page_render_support.php');
//require_once(LIB.'/class.tbs.php');
require_once(LIB.'/class.raintpl.php');
require_once(LIB.'/class.phpmailer.php');
require_once(LIB.'/class.http_param.php');
?>