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.
1
Information / Re: database special characters password
« on: February 04, 2025, 02:27:44 AM »
Also, postfix and/or dovecot don't appreciate a password that ends in a period -- it is seen as a terminator signal.
2
Information / Re: CWP AWSTATS
« on: February 04, 2025, 12:58:28 AM »
I've used it on bare metal servers. But it should be possible to install Webalizer, set up universal cron jobs, and add a menu item for Customers.
3
Suggestions / Re: :):):) Comodo WAF rules update required :):):)
« on: February 01, 2025, 04:08:16 PM »
Appreciated, keep 'em coming!
4
Problems on other RedHat linux servers / Re: How to permanently disable ClamAV?
« on: February 01, 2025, 04:07:13 PM »
I'm sure a CWP update re-enabled it at some point, since it's core functionality provided & expected by CWP's mail setup. systemctl disable removes symlinks that enable the service so you would have to periodically check for the existence of the symlinks and remove them. Or simply run your command periodically (hourly, overnight, whatever).
5
Suggestions / Re: :):):) Comodo WAF rules update required :):):)
« on: January 29, 2025, 04:42:27 PM »
I suppose a year is the breakpoint to say that Comodo WAF is dead. It might just be something Xcitium is neglecting in favor of their enterprise products (more lucrative). Time to press on...
6
Migration from other control panels / Re: CWP to CWP migration does not connect
« on: January 29, 2025, 04:38:49 PM »
Just omit that stanza in your SSH config. Good to lock things down after it is set up & working, but securing things prematurely will hinder your setup or potentially lock you at.
7
Problems on other RedHat linux servers / Re: I can send and receive messages via the web, but it doesn't work through the...
« on: January 29, 2025, 04:36:41 PM »
I'm sorry, but have you considered hiring a sysadmin to help you set up your server?
8
Problems on other RedHat linux servers / Re: I can send and receive messages via the web, but it doesn't work through the...
« on: January 25, 2025, 04:00:07 AM »AlmaLinux's default install doesn't have telnet.telnet testing is done FROM your computer (a proper desktop linux? macOS?) TO your AlmaLinux server. No need to install it on AlmaLinux.
9
Problems on other RedHat linux servers / Re: I can send and receive messages via the web, but it doesn't work through the...
« on: January 23, 2025, 10:10:03 PM »
Various caching schemes are in play, but shouldn't affect anything in this case.
Have you tried testing your server with telnet and see if you can get through the firewall and services are listening (postfix)?
Have you tried testing your server with telnet and see if you can get through the firewall and services are listening (postfix)?
Code: [Select]
telnet your.domain.com 25
telnet your.domain.com 465
telnet your.domain.com 587
10
Installation / Re: More info about apps please?
« on: January 22, 2025, 09:35:24 PM »
Great, glad you're human! Your messages seemed to be, but the signature "this" with the Cialis link was throwing me off!
I do everything in the CWP Admin panel (requiring root access). The User panels on my servers are little used, as the clients lean on me to do most of the legwork. But at least they can change e-mail PW if they need to.
I do everything in the CWP Admin panel (requiring root access). The User panels on my servers are little used, as the clients lean on me to do most of the legwork. But at least they can change e-mail PW if they need to.
11
CentOS 7 Problems / Re: Unable to register authentication agent: GDBus.Error:org.freedesktop.PolicyKit1.
« on: January 22, 2025, 04:54:00 PM »
This has been addressed previously:
https://opentechy.com/how-to-fix-gdbus-errororg-freedesktop-policykit1-error-failed/
Or simply:
(Also consider upgrading to AlmaLinux 8 or 9.)
https://opentechy.com/how-to-fix-gdbus-errororg-freedesktop-policykit1-error-failed/
Or simply:
Code: [Select]
mount proc -o remount,hidepid=0
systemctl restart polkit.service
(Also consider upgrading to AlmaLinux 8 or 9.)
12
Installation / Re: More info about apps please?
« on: January 22, 2025, 04:48:57 PM »
Are you a bot or human? Why does your signature have an advertisement for Cialis?
13
CentOS 9 Problems / Re: Can not login to CWP after changed vps password
« on: January 21, 2025, 05:36:03 AM »
What type of system does your VPS use (Proxmox, KVM, etc)? I find it hard to believe that changing your VPS password with a VPS control panel would also change your CWP root password!
14
Updates / Re: How to stop update notifications for non existent updates?
« on: January 19, 2025, 11:31:28 PM »
You shouldn't need an explicit crontab, as the daily jobs fire off if they are in place in that dir and have the proper permissions. But if you want an explicit root cron job, make sure you trigger it **after** the CWP daily anacron tasks.
Code: [Select]
0 5,12 * * * /usr/bin/yum -y update --security > /dev/null 2>&1
15
Updates / Re: How to stop update notifications for non existent updates?
« on: January 19, 2025, 06:35:27 PM »
This runs after the daily cwp task:
/etc/cron.daily/yum
/etc/cron.daily/yum
Code: [Select]
#!/bin/sh
/usr/bin/yum -y update --security