-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.php
50 lines (41 loc) · 987 Bytes
/
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
<?php
/**
* Created by PhpStorm.
* User: svenmielke
* Date: 12/7/20
* Time: 1:39 PM
*/
// Fritz!Box Einstellungen
$fritzbox = "";
$fritz_login_user = "";
$fritz_login_passwort = "";
$downstream = 130000;
$do_reboot = true;
// Absender
$absender = "Fritz!Box Autoreboot";
//Email Versand
$send_mail = true; // false = email wird nicht gesendet, true = email wird vor FritzBox reboot gesendet
$smtp_host = '';
$smtp_username = '';
$smtp_password = '';
$smtp_send_from = '';
$smtp_addReplyTo = '';
$smtp_addReplyTo_name = '';
$smtp_port = 587;
$smtp_SMTPAuth = true;
$receivers = [
'mail1@example.com',
'mail2@example.com',
];
// Datenbank Verbindung
$db_host = "localhost";
$db_user = "";
$db_pass = "";
$db = "fritzbox";
// SMS Gateway
$send_sms = false; // false = SMS wird nicht gesendet, true = sms wird vor FritzBox reboot gesendet
$sms_user = "";
$sms_pass = "";
$sms_numbers = ""; // mehrere durch simikolon getrennt
$sms_absender = $absender;
$sms_reply = "";