File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -121,14 +121,14 @@ func handle(conn net.Conn) {
121121
122122 // Skip check for local domains
123123 if localDomains [domain ] {
124- fmt .Fprintf (conn , "action=OK FILTER curl_email\n \n " )
124+ fmt .Fprintf (conn , "action=OK FILTER curl_email: \n \n " )
125125 return
126126 }
127127
128128 // Check cache
129129 if valid , found := checkCache (domain ); found {
130130 if valid {
131- fmt .Fprintf (conn , "action=OK FILTER curl_email\n \n " )
131+ fmt .Fprintf (conn , "action=OK FILTER curl_email: \n \n " )
132132 } else {
133133 fmt .Fprintf (conn , "action=REJECT domain not configured\n \n " )
134134 }
@@ -140,7 +140,7 @@ func handle(conn net.Conn) {
140140 storeCache (domain , valid )
141141
142142 if valid {
143- fmt .Fprintf (conn , "action=OK FILTER curl_email\n \n " )
143+ fmt .Fprintf (conn , "action=OK FILTER curl_email: \n \n " )
144144 } else {
145145 fmt .Fprintf (conn , "action=REJECT domain not configured\n \n " )
146146 }
You can’t perform that action at this time.
0 commit comments