-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcredentials.php
More file actions
23 lines (20 loc) · 825 Bytes
/
credentials.php
File metadata and controls
23 lines (20 loc) · 825 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<?php
define("ORIGIN_HOST", "example2.com");
define("ORIGIN_PORT", 21);
define("ORIGIN_USER", "root");
define("ORIGIN_PASS", "12345");
define("ORIGIN_PATH", "/media/backups/");
define("DEST_HOST", "example1.com");
define("DEST_PORT", 21);
define("DEST_USER", "user");
define("DEST_PASS", "54321");
define("DEST_PATH", "/data/");
define('EMAIL_ADD', 'noreply@example.com');
define('EMAIL_PASSWD', '123456789');
define('EMAIL_HOST', 'smtp.example.com');
define('EMAIL_PORT', '465');
define('EMAIL_NAME', 'NoReply');
define('SEND_TO', 'john@example.com'); //multiple emails separated by comma, no spaces
define('DISCORD_WEBHOOK', 'https://discord.com/api/webhooks/123456789/abcdefg');
define('DISCORD_PING_ID', '123456789');
?>