Commit 77b9ef0 1 parent 6d9cc8e commit 77b9ef0 Copy full SHA for 77b9ef0
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 @@ -22,7 +22,6 @@ func init() {
22
22
if strings .HasPrefix (bf .Headers ["subject" ][0 ], "Returned Mail: " ) == false { return sis.RisingUnderway {} }
23
23
if strings .HasPrefix (bf .Headers ["from" ][0 ], `"Mail Deliver System" ` ) == false { return sis.RisingUnderway {} }
24
24
25
- indicators := INDICATORS ()
26
25
boundaries := []string {"Received: from " }
27
26
startingof := map [string ][]string {"message" : []string {"The original message was received at " }}
28
27
@@ -37,9 +36,9 @@ func init() {
37
36
// previous line of the beginning of the original message.
38
37
if readcursor == 0 {
39
38
// Beginning of the bounce message or message/delivery-status part
40
- if strings .HasPrefix (e , startingof ["message" ][0 ]) { readcursor |= indicators ["deliverystatus" ] }
39
+ if strings .HasPrefix (e , startingof ["message" ][0 ]) { readcursor |= Indicators ["deliverystatus" ] }
41
40
}
42
- if readcursor & indicators ["deliverystatus" ] == 0 || e == "" { continue }
41
+ if readcursor & Indicators ["deliverystatus" ] == 0 || e == "" { continue }
43
42
44
43
// The original message was received at Thu, 29 Apr 2010 23:34:45 +0900 (JST)
45
44
You can’t perform that action at this time.
0 commit comments