blob: 722ed0f886d19beec5c7d1fbd36e4663819ed437 [file] [log] [blame]
matheusfillipeabd513e2021-05-11 03:29:11 -03001<?php
2// Service base url
3$BASE_URL = "https://example.com/signup";
4
matheusfillipe47cf90b2021-05-13 03:36:21 -03005// Language country code. The default language to look for. Leave empty for the default html folder
6$LANG_CC = "";
7
matheusfillipeabd513e2021-05-11 03:29:11 -03008// Ldap server
9$HOST = 'localhost';
10$PORT = 389;
11$USER = "admin";
12$PASSWORD = "myldappassword";
13$BASE_DN = 'cn={},ou=organization,dc=example,dc=com';
Marc Kupietz92e48662023-02-23 10:04:21 +010014$ENCRYPT_PASSWORDS = false;
matheusfillipeabd513e2021-05-11 03:29:11 -030015
Marc Kupietz97afde42023-03-04 14:12:46 +010016$SERVICE_ACRONYM = "Test Service";
Marc Kupietz0be2b462023-03-08 09:29:11 +010017#$CONFERENCE_REGISTRATION = true;
Marc Kupietzf46948e2023-03-28 15:01:19 +020018
19$SERVICE_URL = "https://www.example.org";
Marc Kupietz0be2b462023-03-08 09:29:11 +010020$SERVICE_LOGO = "./static/Test_Logo.svg";
21$SERVICE_NAME = "International Test Corpus";
22
23$REGULAR_CONFERENCE_FEE = 280;
24$EARLYBIRD_CONFERENCE_FEE = 240;
25$CONFERENCE_DINNER = 60;
26$STUDENT_DISCOUNT = 80;
27$EARLYBIRD_DEADLINE = "15 May 2023"; // HAWAIAN TIME (HST) is used :)
Marc Kupietz9ab8c8f2023-02-23 12:14:33 +010028
matheusfillipeabd513e2021-05-11 03:29:11 -030029// Redis password
30$REDIS_PASS = "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx";
31
32// Mail
33$SMTP = (object)[
34 "from" => 'frommail@mail.com',
35 'host' => 'tls://mail.com',
36 'port' => '465',
37 'username' => 'frommail@mail.com',
38 'password' => 'xxxxxxxxx'
39];
40$FALLBACK_SMTP = (object)[
41 "from" => 'another@gmail.com',
42 'host' => 'tls://gmail.com',
43 'port' => '465',
44 'username' => 'signup@gmail.com',
45 'password' => 'xxxxxxxxxx'
46];
Marc Kupietz641b32a2023-03-04 19:55:56 +010047// $MAIL_CC = "ccme@example.org"; // optionally CC all mails
48// $MAIL_BCC = "bccme@example.org"; // optionally BCC all mails
matheusfillipeabd513e2021-05-11 03:29:11 -030049
50// User Validation
51$VAL_USER = (object)[
52 "min_username" => 5,
53 "max_username" => 32,
54 "min_first_name" => 3,
55 "max_first_name" => 32,
56 "min_last_name" => 3,
57 "max_last_name" => 32,
58 "min_password" => 8,
59 "max_password" => 128
60];
61$CAPTCHA_LENGTH = 5;
62
matheusfillipe38706ea2021-05-12 02:45:42 -030063// Use unsafe but easier captcha (no ocr testing)
64$SIMPLECAPTCHA = false;
65
matheusfillipeabd513e2021-05-11 03:29:11 -030066// not accept emails from
67$MAIL_HOST_BLACKLIST = ["mailinator.com"];
68// Use fallback_smtp directly for these hosts
69$MAIL_HOST_DIRECT_FALLBACK = ["hotmail.com"];
70
71// Max registrations from one ip per hour
72$HOURLY_REGISTRATIONS = 3;
73
74// Max Captcha requests for one ip per hour
75$HOURLY_CAPTCHAS = 15;
76
77// Expiration delay for mail confirmation in seconds. After this time the email
78// confirmation link will say 'token expired'
79$MAIL_CONFIRMATION_AWAIT_DELAY = 3600;
80
81// CONFIRMATION EMAIL TEMPLATE
82// text is the version for mail clients that don't support html
83// html is the version with html support
matheusfillipef43dd962021-05-13 23:27:01 -030084// You can create templaets for different languages under
85// templates_cc/email.php
matheusfillipeabd513e2021-05-11 03:29:11 -030086$MAIL_TEMPLATE = (object)[
87 "subject" => "Confirm your email",
88 "text" => "To complete your registration please paste this to your browser: {{url}}",
89 "html" => "<html><body>
90 <h2>Almost there! Click on the link bellow to confirm your email address</h2>
91 <a href='{{url}}'>Confirm</a>
92 </body></html>"
93];
94
Matheus Fillipe301684b2021-05-14 09:09:43 +030095$RECOVERY_EMAIL_TEMPLATE = (object)[
96 "subject" => "Change your password!",
97 "text" => "Seems you requested a password change. If that wasn't you please ignore this message. Otherwise go to this url to change your password: {{url}}",
98 "html" => "<html><body>
99 <h3>Seems you requested a password change. If that wasn't you please ignore this message. Otherwise go to this url to change your password</h3>
100 <a href='{{url}}'>Click here</a> to change your password
101 </body></html>"
102];
103
104
105$PASSWORD_CHANGED_EMAIL_TEMPLATE = (object)[
106 "subject" => "Your password was changed",
107 "text" => "Your password was chanegd successfully. If this wasn't you please contact support",
108 "html" => "<html><body>
109 <h3>Your password was chanegd successfully. If this wasn't you please contact support</h3>
110 </body></html>"
111];
112
matheusfillipe38706ea2021-05-12 02:45:42 -0300113// url to redirect to after mail confirmation. It will be 5 seconds of delay. Leave empty to none
matheusfillipeabd513e2021-05-11 03:29:11 -0300114$REDIRECT_TO = "";
115
Matheus Fillipe5ad0cd52022-05-05 06:10:41 +0300116// Registration callback. A function to run when registration is successfull
Matheus Fillipe773eafa2022-05-05 06:15:47 +0300117$POST_REGISTER_HOOK = function($user){
118 echo "Welcome " . $user->name . "! Your ip is logged: " . $_SERVER['REMOTE_ADDR'];
Matheus Fillipe5ad0cd52022-05-05 06:10:41 +0300119};
120
matheusfillipeabd513e2021-05-11 03:29:11 -0300121// displays php errors on the html page. Set to false for production
122$DEBUG = false;