This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.
2
Installation / Re: I don't receive a single message from root..??
« on: July 03, 2025, 05:30:42 PM »
You are specifying your server's hostname to announce it in the HELO exchange when it is talking to other mail servers. As you could see by my code block above, I (and many other mail admins) reject mail from servers that don't have their HELO hostname set (as many spammers don't use proper protocol and give proper HELO greetings. So for best mail delivery results and to avoid bounced mails, you should set your helo hostname as Starburst recommended.
3
CSF Firewall / Re: Possible fix to why CSF/LFD isn't installing.
« on: July 02, 2025, 04:30:39 PM »
Can't find perl-Sys-Hostname in the repo...
And I always add whowatch as an indispensable add-on to any system I give out shell access to (which is rare, but does happen).
And I always add whowatch as an indispensable add-on to any system I give out shell access to (which is rare, but does happen).
4
Other / Re: Support not enable my service
« on: July 01, 2025, 11:53:42 PM »
Contact Starburst here. He is a reseller for CWP and can temporarily activate CWP Pro for you while you wait for a response. Send him your IP address list. Did you pay via PayPal or another method? I've never had any problems with PayPal with CWP.
5
PHP / Re: PHP Warning: PHP Startup: Unable to load dynamic library 'intl'
« on: July 01, 2025, 06:29:06 PM »6
PHP / Re: PHP Warning: PHP Startup: Unable to load dynamic library 'intl'
« on: July 01, 2025, 04:33:40 PM »
And for sure you're testing the CWP PHP (7.2 or 7.4), not your default CLI PHP (mine is 8.2)?
Code: [Select]
[root@srv]# /usr/local/cwp/php71/bin/php --version
PHP 7.2.30 (cli) (built: Apr 29 2020 02:29:42) ( NTS )
Copyright (c) 1997-2018 The PHP Group
Zend Engine v3.2.0, Copyright (c) 1998-2018 Zend Technologies
with the ionCube PHP Loader + ionCube24 v13.0.2, Copyright (c) 2002-2023, by ionCube Ltd.
[root@srv]# /usr/local/cwp/php71/bin/php -m
[PHP Modules]
...
[b]intl[/b]
ionCube Loader
...
[Zend Modules]
the ionCube PHP Loader + ionCube24
7
Information / Re: Past Due Changelogs
« on: July 01, 2025, 03:44:48 PM »
DirectAdmin is also very expensive if you have any number of user accounts. A lot of this thread's ground was already covered in this other thread:
https://forum.centos-webpanel.com/informations/future-of-cwp/
shoulders put together this fairly comprehensive comparison of panels:
https://quantumwarp.com/kb/articles/64-cpanel/1001-cpanel-alternatives-and-linux-web-interfaces
Again, a lot of the downfall of each is high monthly cost, putting you right back into cPanel-land. Either that or they are young, unproven, or downright clunky (and some are eye gougingly ugly).
https://forum.centos-webpanel.com/informations/future-of-cwp/
shoulders put together this fairly comprehensive comparison of panels:
https://quantumwarp.com/kb/articles/64-cpanel/1001-cpanel-alternatives-and-linux-web-interfaces
Again, a lot of the downfall of each is high monthly cost, putting you right back into cPanel-land. Either that or they are young, unproven, or downright clunky (and some are eye gougingly ugly).
8
E-Mail / Re: Postfix, SpamAssassin, or something else
« on: July 01, 2025, 02:20:15 PM »
That message too is from LeaseWeb. Are they "bullet proof hosting" providers, or sympathetic to spammers? Report to their abuse system. This message uses a Polish hostname, and .pl is on many short lists of most spammy/hacky countries. You could block it if you had no need for Polish traffic on your server.
9
How to / Re: Installing ARC on ALMA 8/9
« on: July 01, 2025, 02:15:26 PM »
I've been using RBLmon, likewise a free tier:
https://rblmon.com
https://rblmon.com
11
Information / Re: Past Due Changelogs
« on: June 29, 2025, 06:26:20 PM »
Still no viable alternative in my POV... unless you want to pay cPanel $$$ annually. (I could get away with it on one server, but another server has so many accounts as to put me in a $$/mo tier. I can put up with the lack of communication as long as we have a semi-solid product.
12
PHP / Re: PHP Warning: PHP Startup: Unable to load dynamic library 'intl'
« on: June 29, 2025, 02:24:26 PM »
This is for the built-in CWP PHP (7.2 that is labeled 7.1)?
I have these files for intl (different dating than the version yours is calling):
I have these files for intl (different dating than the version yours is calling):
Code: [Select]
/usr/local/cwp/php71/lib/php/extensions/no-debug-non-zts-20170718/intl.so
/usr/local/src/intl-3.0.0/.libs/intl.so
/usr/local/src/intl-3.0.0/modules/intl.so
13
Mod_Security / Re: OWASP CRS v4.15.0 Just Release
« on: June 29, 2025, 02:20:57 PM »
Why do you quote your posts that are directly above with nothing new to add?
14
Installation / Re: I don't receive a single message from root..??
« on: June 29, 2025, 02:18:36 PM »
I don't have the directive on my CWP servers, nor on a dedicated server I maintain. These are the closest I have:
Code: [Select]
# smtpd_helo_restrictions
smtpd_helo_restrictions =
reject_invalid_helo_hostname,
reject_non_fqdn_helo_hostname
smtpd_helo_required = yes
15
How to / Re: [Howto] Install Rspamd
« on: June 27, 2025, 07:00:00 PM »
Note there is one formatting error in the first part of the instructions above (these two were grouped together in the instructions but are separate files/code blocks):
- file /etc/rspamd/local.d/worker-proxy.inc
- file /etc/rspamd/local.d/logging.inc
- file /etc/rspamd/local.d/worker-proxy.inc
Code: [Select]
bind_socket = "127.0.0.1:11332";
milter = yes;
timeout = 120s;
upstream "local" {
default = yes;
self_scan = yes;
}
- file /etc/rspamd/local.d/logging.inc
Code: [Select]
type = "file";
filename = "/var/log/rspamd/rspamd.log";
level = "error";
debug_modules = [];