-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.example.php
46 lines (37 loc) · 1.2 KB
/
config.example.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
<?php
return [
// Username
'username' => '',
// Password hash (run bin/generate-password-hash)
'password-hash' => '',
// Targets
'targets' => [
'home' => [
'title' => 'Home',
'shortcut' => 'h',
'return' => '[email protected]',
'from' => 'Your name <[email protected]>',
'replyto' => ['Your name <[email protected]>'],
'to' => ['Your name <[email protected]>'],
'color' => '#00f',
],
'work' => [
'title' => 'Work',
'shortcut' => 'w',
'return' => '[email protected]',
'from' => 'Your name <[email protected]>',
'replyto' => ['Your name <[email protected]>'],
'to' => ['Your name <[email protected]>'],
'color' => '#080',
],
'both' => [
'title' => 'Both',
'shortcut' => 'b',
'return' => '[email protected]',
'from' => 'Your name <[email protected]>',
'replyto' => ['Your name <[email protected]>', 'Your name <[email protected]>'],
'to' => ['Your name <[email protected]>', 'Your name <[email protected]>'],
'color' => '#c00',
],
],
];