Search found 8 matches

by scrupul0us
22 Sep 2023, 16:07
Forum: General Discussion (csf)
Topic: MaxMind to require HTTPS March 2024
Replies: 2
Views: 1243

MaxMind to require HTTPS March 2024

Advisement from MaxMind sent out today: MaxMind will begin requiring HTTPS for GeoIP download requests in March 2024. To help customers get ready for this change, we will have a planned, temporary enforcement of this policy on October 17, 2023. Could the devs kindly advise if CSF is interacting with...
by scrupul0us
18 Nov 2020, 16:51
Forum: General Discussion (csf)
Topic: CSF blocks ip with 2 login failure in wordpress
Replies: 1
Views: 1757

Re: CSF blocks ip with 2 login failure in wordpress

Are you using the "BFLP plugin" inside Wordpress? I believe that is what is managing this section in your .htaccess.

You should be able to manage the number of failed attempts required within the plugin settings.
by scrupul0us
16 Nov 2020, 14:13
Forum: Report Bugs (csf)
Topic: CSF Messenger PHP deprecation warnings
Replies: 2
Views: 10897

CSF Messenger PHP deprecation warnings

For CSF messenger, the index.php file that handles unblocking, uses curly braces for array indexes/offsets and throws: Array and string offset access syntax with curly braces is deprecated. For example: $lang{"warning"}; Should be $lang["warning"]; -PHP: PHP 7.4.12 -OS: CentOS Li...
by scrupul0us
21 Oct 2020, 18:45
Forum: Suggestions (csf)
Topic: LFD isn't blocking dovecot login failures
Replies: 1
Views: 8311

Re: LFD isn't blocking dovecot login failures

You want:

Code: Select all

SMTPAUTH_LOG = "/var/log/exim_mainlog"
SMTPRELAY_LOG = "/var/log/exim_mainlog"
SCRIPT_LOG = "/var/log/exim_mainlog"
POP3D_LOG = "/var/log/maillog"
IMAPD_LOG = "/var/log/maillog"
...based on CentOS 7 w/cPanel
by scrupul0us
19 Oct 2020, 16:42
Forum: Suggestions (csf)
Topic: LF_TEMPBLOCK_ALERT option
Replies: 6
Views: 7918

Re: LF_TEMPBLOCK_ALERT option

This would be very easy to implement:

In csf.conf create a new option:

Code: Select all

LF_TEMP_EMAIL_ALERT = "1"
Then in lfd.pl alter the conditional on line 2520 to:

Code: Select all

if ($config{LF_EMAIL_ALERT} && ($perm || (!$perm && $config{LF_TEMP_EMAIL_ALERT})))
by scrupul0us
11 Jul 2019, 21:39
Forum: Suggestions (csf)
Topic: LF_TEMPBLOCK_ALERT option
Replies: 6
Views: 7918

Re: LF_TEMPBLOCK_ALERT option

Got my vote, this would be very useful to keep the "noise" down.
by scrupul0us
18 Jun 2019, 17:54
Forum: General Discussion (csf)
Topic: Block direct email delivery
Replies: 1
Views: 2478

Re: Block direct email delivery

Block port 25 in csf.conf and then in csf.allow:

tcp|in|d=25|s=change-to-mx-guard-ip

...add as many lines as you have IP's to trust then reload CSF:

csf -r

HTH