@@ 1245-1248 (lines=4) @@ | ||
1242 | * sample: |
|
1243 | * Diagnostic-Code: SMTP; 554 Please visit http:// antispam.domain.com/denyip.php?IP=111.111.111.000 (#5.7.1) |
|
1244 | */ |
|
1245 | elseif (\stripos($diag_code, 'denyip') !== false) { |
|
1246 | $result['rule_cat'] = 'antispam'; |
|
1247 | $result['rule_no'] = '0144'; |
|
1248 | } /* rule: antispam, deny ip |
|
1249 | * sample: |
|
1250 | * Diagnostic-Code: SMTP; 554 Service unavailable; Client host [111.111.111.211] blocked using dynablock.domain.com; Your message could not be delivered due to complaints we received regarding the IP address you're using or your ISP. See http:// blackholes.domain.com/ Error: WS-02 |
|
1251 | */ |
|
@@ 1280-1283 (lines=4) @@ | ||
1277 | * sample: |
|
1278 | * Diagnostic-Code: SMTP; 553 5.7.1 <[email protected]>... SpamTrap=reject mode, dsn=5.7.1, Message blocked by BOX Solutions (www.domain.com) SpamTrap Technology, please contact the domain.com site manager for help: (ctlusr8012). |
|
1279 | */ |
|
1280 | elseif (\stripos($diag_code, 'SpamTrap') !== false) { |
|
1281 | $result['rule_cat'] = 'antispam'; |
|
1282 | $result['rule_no'] = '0200'; |
|
1283 | } /* rule: antispam, mailfrom mismatch |
|
1284 | * sample: |
|
1285 | * Diagnostic-Code: SMTP; 550 Verify mailfrom failed,blocked |
|
1286 | */ |