-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathspf_config.php_default
38 lines (35 loc) · 1.31 KB
/
spf_config.php_default
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
<?php
/* template */
$qualifiers = array(
0 => array( 'value' => '+',
'desc' => 'PASS',
'selected' => FALSE
),
1 => array( 'value' => '-',
'desc' => 'FAIL',
'selected' => FALSE
),
2 => array( 'value' => '~',
'desc' => 'SOFTFAIL',
'selected' => FALSE
),
3 => array( 'value' => '?',
'desc' => 'NEUTRAL',
'selected' => FALSE
)
);
$modifiers = array(
0 => array( 'value' => 'include:_spfbulk.example.com',
'desc' => 'BulkEmails',
'selected' => FALSE
),
1 => array( 'value' => 'include:_spfmua.example.com',
'desc' => 'MUAEmails',
'selected' => FALSE
),
2 => array( 'value' => 'all',
'desc' => 'ALL',
'selected' => FALSE
)
);
?>