Commit fc179a6 1 parent d2c8c6b commit fc179a6 Copy full SHA for fc179a6
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 bf == nil || bf .Empty () == true { return sis.RisingUnderway {} }
25
25
if strings .HasPrefix (bf .Headers ["subject" ][0 ], "Returned mail: " ) == false { return sis.RisingUnderway {} }
26
26
27
- indicators := INDICATORS ()
28
27
boundaries := []string {" ----- Unsent message follows -----" , " ----- No message was collected -----" }
29
28
startingof := map [string ][]string {
30
29
// Error text regular expressions which defined in src/savemail.c
@@ -60,10 +59,10 @@ func init() {
60
59
// previous line of the beginning of the original message.
61
60
if readcursor == 0 {
62
61
// Beginning of the bounce message or message/delivery-status part
63
- if strings .Contains (e , startingof ["message" ][0 ]) { readcursor |= indicators ["deliverystatus" ] }
62
+ if strings .Contains (e , startingof ["message" ][0 ]) { readcursor |= Indicators ["deliverystatus" ] }
64
63
continue
65
64
}
66
- if readcursor & indicators ["deliverystatus" ] == 0 || e == "" { continue }
65
+ if readcursor & Indicators ["deliverystatus" ] == 0 || e == "" { continue }
67
66
68
67
// ----- Transcript of session follows -----
69
68
// While talking to smtp.example.com:
You can’t perform that action at this time.
0 commit comments