Commit 77b2201 1 parent 6047178 commit 77b2201 Copy full SHA for 77b2201
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 @@ -24,7 +24,6 @@ func init() {
24
24
if strings .HasPrefix (bf .Headers ["from" ][0 ], "Mail Delivery System" ) == false { return sis.RisingUnderway {} }
25
25
if strings .HasPrefix (bf .Headers ["subject" ][0 ], "Delivery status notification" ) == false { return sis.RisingUnderway {} }
26
26
27
- indicators := INDICATORS ()
28
27
boundaries := []string {"Content-Type: message/rfc822" }
29
28
startingof := map [string ][]string {
30
29
"message" : []string {" This is an automatically generated Delivery Status Notification." },
@@ -42,10 +41,10 @@ func init() {
42
41
// previous line of the beginning of the original message.
43
42
if readcursor == 0 {
44
43
// Beginning of the bounce message or message/delivery-status part
45
- if strings .HasPrefix (e , startingof ["message" ][0 ]) { readcursor |= indicators ["deliverystatus" ] }
44
+ if strings .HasPrefix (e , startingof ["message" ][0 ]) { readcursor |= Indicators ["deliverystatus" ] }
46
45
continue
47
46
}
48
- if readcursor & indicators ["deliverystatus" ] == 0 || e == "" { continue }
47
+ if readcursor & Indicators ["deliverystatus" ] == 0 || e == "" { continue }
49
48
50
49
// ============================================================================
51
50
// This is an automatically generated Delivery Status Notification.
You can’t perform that action at this time.
0 commit comments