Search found 21 matches

by alsmith
13 Nov 2018, 23:20
Forum: General Discussion (csf)
Topic: Custom regex not working
Replies: 4
Views: 4255

Re: Custom regex not working

I found the answer in this thread https://forum.configserver.com/viewtopic.php?t=9447 # WP-LOGINS if (($globlogs{CUSTOM2_LOG}{$lgfile}) and ($line =~ /(\S+).*] "\w*(?:GET|POST) \/wp-login\.php.*" /)) { return ("your ban comment",$1,"WPLOGINorWHATEVER","3",&quo...
by alsmith
13 Nov 2018, 22:17
Forum: General Discussion (csf)
Topic: Custom regex not working
Replies: 4
Views: 4255

Re: Custom regex not working

I'm trying to implement this also but not getting anything in csf.deny. my regex.custom.pm # DETECT AND BLOCK wp-login.php POST DOS attacks (requires: CUSTOM2_LOG = "/home/*/access-logs/*" in csf.conf) if (($globlogs{CUSTOM2_LOG}{$lgfile}) and ($line =~ /(\S+).*] "POST \/wp-login\.php...
by alsmith
11 Oct 2017, 19:15
Forum: General Discussion (csf)
Topic: DynDNS: Lookup for [_spf.google.com] failed
Replies: 1
Views: 2029

Re: DynDNS: Lookup for [_spf.google.com] failed

found out my server company put this in.
I was also hoping it would help with a solution delivering email to comcast.net. I'm trying smtp.comcast.net, mx1.comcast.net, mx2.comcast.net to see if they might help.
by alsmith
10 Oct 2017, 17:49
Forum: General Discussion (csf)
Topic: DynDNS: Lookup for [_spf.google.com] failed
Replies: 1
Views: 2029

DynDNS: Lookup for [_spf.google.com] failed

I'm seeing this message DynDNS: Lookup for [_spf.google.com] failed often in my lfd.log. I see the file /etc/csf/csf.dyndns has the entry _spf.google.com in it. I've been searching here and on google to find what should be in this file. The header says only FQDN. I cannot ping this however I can get...
by alsmith
05 Jun 2017, 19:06
Forum: General Discussion (csf)
Topic: Prevent domain from being blocked
Replies: 2
Views: 2848

Prevent domain from being blocked

I searched but not sure I'm searching for the proper thing. I have one customer that has more than 30 users using email. They constantly are kicking off the firewall and I have to reset it. Is there a way to restrict the firewall from blocking people using one domain on the server? I understand this...
by alsmith
27 Oct 2016, 14:56
Forum: General Discussion (cmq)
Topic: Pending Queue - View Emails
Replies: 1
Views: 6016

Re: Pending Queue - View Emails

Oh I noticed something else. Some other user sent out newletter and I see their emails in queue now. the origional have a Age of 60m and these new ones 5m.
by alsmith
27 Oct 2016, 14:54
Forum: General Discussion (cmq)
Topic: Pending Queue - View Emails
Replies: 1
Views: 6016

Pending Queue - View Emails

Can anyone tell me what is causing emails to stay in queue for long times? Looking right now I see 59 emails in queue. If I click to deliver one it delivers. But that is it. the rest just sit there.
Is this some setting in exim I need to change?
by alsmith
12 Sep 2016, 14:23
Forum: General Discussion (cmq)
Topic: Need (desperately) a cron job
Replies: 5
Views: 14631

Re: Need (desperately) a cron job

This is a lilttle script that may help #!/bin/sh # removebounces.sh - remove bounce emails from email queue # clear junk from queue # remove all the [bounce] from the queue echo "<br>Removing [bounce] emails from queue..."; /usr/sbin/exim -bpa | /bin/grep "<>" | /bin/awk -F"...
by alsmith
17 Feb 2015, 18:17
Forum: General Discussion (cmq)
Topic: DELETE QUEUE emails from console
Replies: 2
Views: 10787

Re: DELETE QUEUE emails from console

I am not sure this is what you want but I just posted viewtopic.php?f=10&t=8117
by alsmith
17 Feb 2015, 18:15
Forum: General Discussion (cmq)
Topic: Command line equivalent for...
Replies: 4
Views: 11616

Re: Command line equivalent for...

I thought I would post this since I was needing something to help. # Check the Email Delivery queue for From [bounce] and delete them exim -bpa -C /etc/exim_outgoing.conf | grep "<>" |awk -F" " '{print $3}' | while read line do exim -C /etc/exim_outgoing.conf -Mrm $line done