-
Notifications
You must be signed in to change notification settings - Fork 11
/
config.php
58 lines (37 loc) · 1.58 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
<?php
// Configfile
// Send the email via the local sendmail or an smtp server.
define('CAMPAIGNER_SMTPMODE','sendmail');
// The SMTP Server to use
define('CAMPAIGNER_SMTPHOST','127.0.0.1');
// Authenticate against the SMTP server
define('CAMPAIGNER_SMTPAUTH', false);
// SMTP server login
define('CAMPAIGNER_SMTPUSERNAME','');
// SMTP server login
define('CAMPAIGNER_SMTPPASSWORD', '');
// Sender email address
define('CAMPAIGNER_SMTPFROMEMAIL', 'info@userdatamanifesto.org');
// Sender Name
define('CAMPAIGNER_SMTPFROMNAME', 'User Data Manifesto');
// Email subject
define('CAMPAIGNER_SMTPFROMSUBJECT', 'Confirm Support');
// Email mailtext
define('CAMPAIGNER_SMTPMAILTEXT', 'Thanks for supporting the User Data Manifesto. Please click this link to confirm your email. Your name will be listed on the website to show your support.');
// Confirmation text
define('CAMPAIGNER_ADDTEXT', 'We\'ll send you a confirmation email. Please click on the link in the email to confirm your support.<br /><br />');
// 2. Confirmation text
define('CAMPAIGNER_CONFIRMTEXT', 'Thanks for confirming your email address. Your name is now listed on the website. Thanks for supporting us.<br /><br />');
// MySQL DB name
define('CAMPAIGNER_DB_NAME', 'userdatamanifesto');
// MySQL login
define('CAMPAIGNER_DB_LOGIN', 'www');
// MySQL password
define('CAMPAIGNER_DB_PASSWD', '');
// MySQL hostname
define('CAMPAIGNER_DB_HOST', 'localhost');
// MySQL port
define('CAMPAIGNER_DB_PORT', '3306');
// MySQL socket
define('CAMPAIGNER_DB_SOCKET', '');
?>