matheusfillipe | abd513e | 2021-05-11 03:29:11 -0300 | [diff] [blame] | 1 | <?php |
| 2 | // Service base url |
| 3 | $BASE_URL = "https://example.com/signup"; |
| 4 | |
matheusfillipe | 47cf90b | 2021-05-13 03:36:21 -0300 | [diff] [blame] | 5 | // Language country code. The default language to look for. Leave empty for the default html folder |
| 6 | $LANG_CC = ""; |
| 7 | |
matheusfillipe | abd513e | 2021-05-11 03:29:11 -0300 | [diff] [blame] | 8 | // 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 Kupietz | 92e4866 | 2023-02-23 10:04:21 +0100 | [diff] [blame] | 14 | $ENCRYPT_PASSWORDS = false; |
matheusfillipe | abd513e | 2021-05-11 03:29:11 -0300 | [diff] [blame] | 15 | |
Marc Kupietz | 97afde4 | 2023-03-04 14:12:46 +0100 | [diff] [blame] | 16 | $SERVICE_ACRONYM = "Test Service"; |
Marc Kupietz | 0be2b46 | 2023-03-08 09:29:11 +0100 | [diff] [blame] | 17 | #$CONFERENCE_REGISTRATION = true; |
Marc Kupietz | f46948e | 2023-03-28 15:01:19 +0200 | [diff] [blame] | 18 | |
| 19 | $SERVICE_URL = "https://www.example.org"; |
Marc Kupietz | 0be2b46 | 2023-03-08 09:29:11 +0100 | [diff] [blame] | 20 | $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; |
Marc Kupietz | 7dabb46 | 2023-04-10 19:01:21 +0200 | [diff] [blame] | 26 | $MAX_DINNERS = 90; |
Marc Kupietz | 0be2b46 | 2023-03-08 09:29:11 +0100 | [diff] [blame] | 27 | $STUDENT_DISCOUNT = 80; |
Marc Kupietz | 8b80c7a | 2023-03-28 21:41:39 +0200 | [diff] [blame] | 28 | $EXCURSION = 20; |
Marc Kupietz | 0be2b46 | 2023-03-08 09:29:11 +0100 | [diff] [blame] | 29 | $EARLYBIRD_DEADLINE = "15 May 2023"; // HAWAIAN TIME (HST) is used :) |
Marc Kupietz | 9ab8c8f | 2023-02-23 12:14:33 +0100 | [diff] [blame] | 30 | |
matheusfillipe | abd513e | 2021-05-11 03:29:11 -0300 | [diff] [blame] | 31 | // Redis password |
| 32 | $REDIS_PASS = "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"; |
| 33 | |
| 34 | // Mail |
| 35 | $SMTP = (object)[ |
| 36 | "from" => 'frommail@mail.com', |
| 37 | 'host' => 'tls://mail.com', |
| 38 | 'port' => '465', |
| 39 | 'username' => 'frommail@mail.com', |
| 40 | 'password' => 'xxxxxxxxx' |
| 41 | ]; |
| 42 | $FALLBACK_SMTP = (object)[ |
| 43 | "from" => 'another@gmail.com', |
| 44 | 'host' => 'tls://gmail.com', |
| 45 | 'port' => '465', |
| 46 | 'username' => 'signup@gmail.com', |
| 47 | 'password' => 'xxxxxxxxxx' |
| 48 | ]; |
Marc Kupietz | 641b32a | 2023-03-04 19:55:56 +0100 | [diff] [blame] | 49 | // $MAIL_CC = "ccme@example.org"; // optionally CC all mails |
| 50 | // $MAIL_BCC = "bccme@example.org"; // optionally BCC all mails |
matheusfillipe | abd513e | 2021-05-11 03:29:11 -0300 | [diff] [blame] | 51 | |
| 52 | // User Validation |
| 53 | $VAL_USER = (object)[ |
| 54 | "min_username" => 5, |
| 55 | "max_username" => 32, |
| 56 | "min_first_name" => 3, |
| 57 | "max_first_name" => 32, |
| 58 | "min_last_name" => 3, |
| 59 | "max_last_name" => 32, |
| 60 | "min_password" => 8, |
| 61 | "max_password" => 128 |
| 62 | ]; |
| 63 | $CAPTCHA_LENGTH = 5; |
| 64 | |
matheusfillipe | 38706ea | 2021-05-12 02:45:42 -0300 | [diff] [blame] | 65 | // Use unsafe but easier captcha (no ocr testing) |
| 66 | $SIMPLECAPTCHA = false; |
| 67 | |
matheusfillipe | abd513e | 2021-05-11 03:29:11 -0300 | [diff] [blame] | 68 | // not accept emails from |
| 69 | $MAIL_HOST_BLACKLIST = ["mailinator.com"]; |
| 70 | // Use fallback_smtp directly for these hosts |
| 71 | $MAIL_HOST_DIRECT_FALLBACK = ["hotmail.com"]; |
| 72 | |
| 73 | // Max registrations from one ip per hour |
| 74 | $HOURLY_REGISTRATIONS = 3; |
| 75 | |
| 76 | // Max Captcha requests for one ip per hour |
| 77 | $HOURLY_CAPTCHAS = 15; |
| 78 | |
| 79 | // Expiration delay for mail confirmation in seconds. After this time the email |
| 80 | // confirmation link will say 'token expired' |
| 81 | $MAIL_CONFIRMATION_AWAIT_DELAY = 3600; |
| 82 | |
| 83 | // CONFIRMATION EMAIL TEMPLATE |
| 84 | // text is the version for mail clients that don't support html |
| 85 | // html is the version with html support |
matheusfillipe | f43dd96 | 2021-05-13 23:27:01 -0300 | [diff] [blame] | 86 | // You can create templaets for different languages under |
| 87 | // templates_cc/email.php |
matheusfillipe | abd513e | 2021-05-11 03:29:11 -0300 | [diff] [blame] | 88 | $MAIL_TEMPLATE = (object)[ |
| 89 | "subject" => "Confirm your email", |
| 90 | "text" => "To complete your registration please paste this to your browser: {{url}}", |
| 91 | "html" => "<html><body> |
| 92 | <h2>Almost there! Click on the link bellow to confirm your email address</h2> |
| 93 | <a href='{{url}}'>Confirm</a> |
| 94 | </body></html>" |
| 95 | ]; |
| 96 | |
Matheus Fillipe | 301684b | 2021-05-14 09:09:43 +0300 | [diff] [blame] | 97 | $RECOVERY_EMAIL_TEMPLATE = (object)[ |
| 98 | "subject" => "Change your password!", |
| 99 | "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}}", |
| 100 | "html" => "<html><body> |
| 101 | <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> |
| 102 | <a href='{{url}}'>Click here</a> to change your password |
| 103 | </body></html>" |
| 104 | ]; |
| 105 | |
| 106 | |
| 107 | $PASSWORD_CHANGED_EMAIL_TEMPLATE = (object)[ |
| 108 | "subject" => "Your password was changed", |
| 109 | "text" => "Your password was chanegd successfully. If this wasn't you please contact support", |
| 110 | "html" => "<html><body> |
| 111 | <h3>Your password was chanegd successfully. If this wasn't you please contact support</h3> |
| 112 | </body></html>" |
| 113 | ]; |
| 114 | |
matheusfillipe | 38706ea | 2021-05-12 02:45:42 -0300 | [diff] [blame] | 115 | // url to redirect to after mail confirmation. It will be 5 seconds of delay. Leave empty to none |
matheusfillipe | abd513e | 2021-05-11 03:29:11 -0300 | [diff] [blame] | 116 | $REDIRECT_TO = ""; |
| 117 | |
Matheus Fillipe | 5ad0cd5 | 2022-05-05 06:10:41 +0300 | [diff] [blame] | 118 | // Registration callback. A function to run when registration is successfull |
Matheus Fillipe | 773eafa | 2022-05-05 06:15:47 +0300 | [diff] [blame] | 119 | $POST_REGISTER_HOOK = function($user){ |
| 120 | echo "Welcome " . $user->name . "! Your ip is logged: " . $_SERVER['REMOTE_ADDR']; |
Matheus Fillipe | 5ad0cd5 | 2022-05-05 06:10:41 +0300 | [diff] [blame] | 121 | }; |
| 122 | |
matheusfillipe | abd513e | 2021-05-11 03:29:11 -0300 | [diff] [blame] | 123 | // displays php errors on the html page. Set to false for production |
| 124 | $DEBUG = false; |