Commit b5a5bd3 1 parent 8b65408 commit b5a5bd3 Copy full SHA for b5a5bd3
File tree 1 file changed +2
-3
lines changed
1 file changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -21,7 +21,6 @@ func init() {
21
21
if bf == nil || bf .Empty () == true { return sis.RisingUnderway {} }
22
22
if strings .HasPrefix (bf .Headers ["subject" ][0 ], "Undeliverable message" ) == false { return sis.RisingUnderway {} }
23
23
24
- indicators := INDICATORS ()
25
24
boundaries := []string {"------- Returned Message --------" }
26
25
startingof := map [string ][]string {"message" : []string {"------- Failure Reasons " } }
27
26
messagesof := map [string ][]string {
@@ -43,10 +42,10 @@ func init() {
43
42
// previous line of the beginning of the original message.
44
43
if readcursor == 0 {
45
44
// Beginning of the bounce message or message/delivery-status part
46
- if strings .HasPrefix (e , startingof ["message" ][0 ]) { readcursor |= indicators ["deliverystatus" ] }
45
+ if strings .HasPrefix (e , startingof ["message" ][0 ]) { readcursor |= Indicators ["deliverystatus" ] }
47
46
continue
48
47
}
49
- if readcursor & indicators ["deliverystatus" ] == 0 || e == "" { continue }
48
+ if readcursor & Indicators ["deliverystatus" ] == 0 || e == "" { continue }
50
49
51
50
// ------- Failure Reasons --------
52
51
//
You can’t perform that action at this time.
0 commit comments