Show Posts

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.


Messages - Starburst

Pages: [1] 2 3 ... 59
1
E-Mail / Re: Email is neither received nor sent.
« on: Today at 12:27:16 AM »
Noting else works.
I watch tons of videos, noting helps :(

You will need to un-proxy mail.domainname.com
Or get a 2nd IP just for mail.domainname.com, if you don't want to expose the primary IP.

When the mailserver checks the PTR & rDNS it will fail, as Cloudflare's proxy DNS doesn't have any entries.
Also trying to use Cloudflare's NS servers in an MX will get your IP into trouble, as their system could see it as a spammer attack.

Also if you are using a NAT for a local network, that also makes things more complicated, as your ISP may not allow port 25 access.

2
E-Mail / Re: Email is neither received nor sent.
« on: Today at 12:18:40 AM »
I never seen an email server run behind the Cloudflare proxy service before.

Usually this is only for websites, as email servers want to connect to/from the actual IP address.

3
PHP / Re: Problem PHP Mail Function Alma Linux 8
« on: April 22, 2024, 04:50:07 PM »
I can tell you , you will run into problems with the Minimal version.

Since the CLI mail test didn't work, something was missing.
Not sure if it was cronie or not.

if you run

Code: [Select]
rpm -qa | grep cron
It should show:
cronie-anacron-1.5.2-8.el8.alma.1.x86_64
cronie-1.5.2-8.el8.alma.1.x86_64
crontabs-1.11-17.20190603git.el8.noarch

The other option during testing, is install postfix, and s-nail.
If it still fails the CLI test, then some backend package required isn't being installed.

As mentioned we have the base AL8 install with CWP 8 installed on mirror servers, and those even tested OK wit the CLI test I gave you.
https://almalinux.stl.us.ssimn.org/

This is a weird problem you are having.

4
Which is the folder that I had told you to look in and delete the domain from on 2024-04-19

But am glad you got it fixed.
This seems to be a problem with how Let's Encrypt acme cron works, and not CWP.

Quote
One other place you can look is:

Code: [Select]
cd /root/.acme.sh/cwp_certs

5
PHP / Re: Problem PHP Mail Function Alma Linux 8
« on: April 21, 2024, 04:59:49 PM »
That's why I tested from one of our new mirror servers, those run the bare minimum.

Are you installing AlmaLinux 8 from the DVD or minimal version? As the DVD version is recommended.
Or is this an image from a provider?

Is Postfix installed & running?

A quick Google search shows some possible solutions, like at:
https://unix.stackexchange.com/questions/711728/spam-messages-cb-crond1288-no-configuration-file-found-at-root-esmtprc-or

https://think.unblog.ch/en/send-mail-mailx-command/


6
PHP / Re: Problem PHP Mail Function Alma Linux 8
« on: April 20, 2024, 11:23:05 PM »
Try to send an email from the CLI.
Just to be safe, I just tested these 3 commands from one of our mirror servers, and they worked fine.

Code: [Select]
echo "Hello world" | mail -s "Test" email_address
Code: [Select]
echo "Hello world" | mailx -s "Test" email_address
Code: [Select]
echo "Hello world" | s-nail -s "Test" email_address
e.g. - echo "Hello world" | mail -s "Test" jdoe@example.com

As you can see s-nail (Simple Sendmail) aliases mail AND mailx for backwards compatibility with scripts.

If the command line test works, then it would point more towards a script config, maybe pointing to a wrong directory.
CWP does have a different directory structure than cPanel.
But if you are going from CWP to CWP there shouldn't be any problems.

Here is something we run as a prep on all AlmaLinux 8 & 9 servers, before we even start installing CWP:
Code: [Select]
dnf install nano wget ipset ebtables iptables uuid uuid-devel libuuid-devel m4 pcre pcre-devel zlib-devel perl-DBD-MySQL perl-IPC-Cmd perl-Pod-Html perl-Sys-Hostname perl-libwww-perl.noarch perl-LWP-Protocol-https.noarch perl-GDGraph libtool s-nail htop sysstat -y

7
PHP / Re: Problem PHP Mail Function Alma Linux 8
« on: April 20, 2024, 03:00:45 PM »
When you install s-nail, you still can use the mail command as it redirects automatically.

8
PHP / Re: Problem PHP Mail Function Alma Linux 8
« on: April 20, 2024, 12:16:31 PM »
mail, and mail-x are depreciated and no longer available to install.

The replacement you need to install is s-nail.

You also want to have PHP-Mail using SMTP Authentication to prevent abuse.
See: https://www.alphagnu.com/topic/43-disable-php-mail-function-in-cwp-%E2%80%93-control-webpanel/

9
One other place you can look is:

Code: [Select]
cd /root/.acme.sh/cwp_certs

10
@devloraa

The location myself & @overseer gave you IS CORRECT FOR CWP Managed SSL Certificates.

See the screenshot below, as CWP gives you the path to all certificates it manages.

From the Admin panel, click on Webserver Settings (1) -> SSL Certificates (2) | List Installed will show the SSL Certificates CWP manages via Let's Encrypt & Also allows you to Delete, Edit, or Manually Renew | AutoSSL [FREE] (3) is where you can create new Let's Encrypt SSL Certificates via CWP.

NOTE THE BLUE BOX - And the Paths we mentioned are listed there as the CORRECT PATH.




There is also a small FAQ at: https://forum.centos-webpanel.com/ssl/how-to-install-multiple-ssl-certificates-on-shared-ip/

If you are still having a problem, I would suggest you open a paid support ticket directly with CWP.


11
CentOS-WebPanel Bugs / Re: Auto Responder not working
« on: April 18, 2024, 12:52:42 AM »
Check your Postfix config

Code: [Select]
nano /etc/postfix/main.cf
UNDER (# rules restrictions), under the line: smtpd_helo_required = yes
ADD:
smtp_helo_name = $myhostname

Code: [Select]
systemctl restart postfix
If it still doesn't work, change the line: mydestination = $myhostname, localhost.$mydomain, localhost
to
mydestination = $myhostname


Also maybe review: https://forum.centos-webpanel.com/index.php?topic=13510.msg47197;topicseen#msg47197

12
CentOS-WebPanel Bugs / Re: Main PHP Selector isn't work in 0.9.8.1177
« on: April 18, 2024, 12:47:37 AM »
Correct I have the pro version and I still haven't got the update yet to fix this bug

It was a bug in the CWP backend, not in server panel, and that was fixed awhile ago.

13
No one is going to use a beta OS like CentOS Stream for a production server.

So the only real options are AlmaLinux & CloudLinux (same developers), or Rocky.

See: https://forum.centos-webpanel.com/index.php?topic=13527.0

15
Suggestions / Re: How secure is CentOS Web Panel?
« on: April 17, 2024, 10:16:28 PM »
If you run CWPpro with mod_security with the Comodo rule set along with CSF/LDF (configured correctly) then it is secure.

You have to worry more about keeping your scripts/carts/WordPress up to date.
That's where most security holes come from.

Pages: [1] 2 3 ... 59