Discarded System Filter

Osama Tariq

Well-Known Member
Nov 27, 2014
206
2
18
Lahore, Pakistan
cPanel Access Level
Root Administrator
Twitter
Getting email accepted but discarded, even not blocked in /etc/vfilters/domainname and /usr/local/cpanel/etc/exim/sysfilter/options/cpanel_exim_system_filter
below are the logs:

Code:
2015-08-01 12:29:40 1ZLREh-000bSA-DY <= [email protected] H=server.app.com.pk [72.249.151.114]:36624 I=[192.99.161.36]:25 P=esmtps X=TLSv1:DHE-RSA-AES256-SHA:256 S=105314 [email protected] T="APP URDU SERVICE ISLAMABAD" from <[email protected]> for [email protected]
2015-08-01 12:29:40 1ZLREh-000bSA-DY => discarded (system filter)
2015-08-01 12:29:40 1ZLREh-000bSA-DY Completed
 
Last edited by a moderator:

Osama Tariq

Well-Known Member
Nov 27, 2014
206
2
18
Lahore, Pakistan
cPanel Access Level
Root Administrator
Twitter
I have checked from /var/log/filter.log, i get below messages:
Sat, 01 Aug 2015 13:18:22 +0500 1ZLRzp-000vy9-F5 from [email protected] contained @googlegroups.com keywords
Sat, 01 Aug 2015 14:10:56 +0500 1ZLSoi-001FKs-K4 from [email protected] contained @googlegroups.com keywords



@googlegroups is blocked in exim filter, is it possible to allow @googlegroups for specific domain ?
 

cPanelMichael

Administrator
Staff member
Apr 11, 2011
47,880
2,261
463
@googlegroups is blocked in exim filter, is it possible to allow @googlegroups for specific domain ?
Hello :)

What's the exact custom filter rule you have implemented?

Thank you.
 

Osama Tariq

Well-Known Member
Nov 27, 2014
206
2
18
Lahore, Pakistan
cPanel Access Level
Root Administrator
Twitter
Below is the code i have added in exim system filter file:

Code:
logfile /var/log/filter.log 0644
if
($received_protocol is "local"
or $received_protocol is "smtp")
and ("$h_to:, $h_cc:" contains "@googlegroups.com")
or ("$h_from:" contains "@googlegroups.com")
then
logwrite "$tod_full $message_id from $sender_address contained @googlegroups.com keywords"
seen finish
endif
Any update.. ???
 
Last edited by a moderator:

cPanelMichael

Administrator
Staff member
Apr 11, 2011
47,880
2,261
463
You might be able to implement some custom ACL rules that allow certain domain names to bypass the filters. You may want to post to the Exim-Users mailing list for assistance with configuring that type of custom filter. Or, consider implementing the filter on a per-account basis for any account that needs it, instead of globally for Exim.

Thank you.