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 - Netino

Pages: 1 ... 14 15 [16] 17 18 ... 25
226
How to / Re: How to enable php-imap?
« on: March 10, 2019, 04:48:09 AM »
Your report is about your software "can't detect that IMAP is installed."
Your software is claiming just about imap module in php, not about protocol imap.

If you don't have imap installed in php, your php software cannot talk in imap protocol.

227
Installation / Re: Splitting Email with CWP
« on: March 09, 2019, 03:34:05 AM »
Hello.

We are thinking about moving from WHM into CWP. However, our emails have a particular setting: from the 10 emails we have 9 are processed in the server using Exim and 1 is split and goes through Office 365 as we have a plan there for this one email.

The email split is done at Exim level at WHM. CWP has no Exim, I think. Questions:

1. Does Exim can be installed with CWP?

No, at least no without lost several mail features of the control panel.
The default install is made with postfix.
CWP was build with postfix in mind.

Quote
2. Alternatively, is there a way to split emails using the CWP native email services?

What are you meaing by "split emails"..??
split mail files..?? split MX servers..??

228
How to / Re: How to enable php-imap?
« on: March 09, 2019, 03:20:35 AM »
You must check the return of the function "phpinfo()" if the 'imap' is installed, in the same directory of your installation, if imap is recognized:

Code: [Select]
<?
phpinfo();
?>

Or to check if IMAP is installed in command line PHP use:
Code: [Select]
# php --ri imap

Regards,
Netino

229
How to / Re: How to Automate User Account creation?
« on: March 09, 2019, 03:02:50 AM »
Try to use API.

Regards,
Netino

230
FTP / Re: FTP Authentication Failed - Troubles with Pure-ftpd
« on: March 09, 2019, 03:00:34 AM »
Your user 'oseadmin' is unknown.
Simply that.
The message showing is:
"error retrieving information about user xxxxxx"

Regards,
Netino

231
Try to include the following in '/usr/local/cwpsrv/var/services/roundcube/config/config.inc.php' and try to check the results:
Code: [Select]
// Log IMAP conversation to <log_dir>/imap or to syslog
$config['imap_debug'] = true;

Regards,
Netino

232
CSF Firewall / Re: DDOS
« on: March 09, 2019, 02:46:29 AM »
You can use CSF, but you must to consider the posted here:
https://www.liquidweb.com/kb/basic-dosddos-mitigation-with-the-csf-firewall/

Specially in following part:
1) There is no way to prevent a DoS/DDoS attack against any server connected to the Internet; once in progress, the only thing that can be done is to try to mitigate its effects.
2) There is no way to make a server respond normally when it is under attack; the most that can be done is to try to keep it online during the attack by reducing the impact of the incoming traffic.
3) In some cases, the best way to deal with a large-volume attack is to null-route the server’s IP address. Effectively, that means temporarily taking it offline until the incoming traffic subsides.
4) Any measures employed within CSF will be effective only against small attacks, and measures should be implemented in CSF only while the server is under attack. The firewall settings always should be restored afterward to minimize disruption of legitimate traffic, as the measures outlined below will slow incoming packets.
5) CSF is not the only way to mitigate small-scale attacks. Services such as those offered by CloudFlare’s network also may help because they are external, buffering traffic to the server. And for maximum protection against large attacks (millions of incoming packets per second), a specialized DoS mitigation service may be necessary. You can read more about such protection at https://www.liquidweb.com/services/network/ddos.html.

Regards,
Netino

233
Backup / Re: Connection Failed
« on: March 09, 2019, 02:40:42 AM »
I would just to copy this page, ipsis literis, but I must respect copyrights:

https://www.thegeekstuff.com/2008/11/3-steps-to-perform-ssh-login-without-password-using-ssh-keygen-ssh-copy-id

Basicly you must generate the key locally, and after you copy to the server.
Try that, and report us.

234
Backup / Re: Connection Failed
« on: March 05, 2019, 09:04:21 PM »
Start with waht you are trying to do.
Are you trying to get passwordless connection..??

Putting the private key in '/root/.ssh/id_rsa.pub' generated at CLIENT computer, and the public in '/root/.ssh/authorized_keys' would be sufficient to 'root' user use passwordless connections.
Note: it is not placed in a 'backup' subdir.
What is your correct user..?? Is root..??

If so, don't forget to set the permissions:
Code: [Select]
# chmod 700 /root/.ssh/id_rsa.pub
# chmod 640 /root/.ssh/authorized_keys

Regards,
Netino

235
CentOS-WebPanel Bugs / Re: Cron Jobs Do Not Run That Use Dev Null
« on: March 04, 2019, 08:31:44 PM »
I would not recommend to redirect both the standard output and error output.
This is due to cronjob could to warn you about problems, and without them could turn your task to debug applications much more difficult.

You still didn t said where you put that commands.
If was in panel, try to cat the content directly from /etc/crontab here to us, or by show us the result of the command "crontab -l user" here.
The objective is to check if the panel is passing correctly the commands to corntab.

Regards,
Netino

236
E-Mail / Re: Forwarding All Email for a Domain
« on: March 03, 2019, 09:51:33 PM »
Access CWP, menu "Email" >> "Email Aliases/Forwarders" >> "Add New Alias", select the user of your domain, and fill in fields:
Email Address: *
Forward To: [The final E-mail Adress destiny here]

The order of aliases creation seems important.
In my case was important the order of alias creation.
Fisrt I created the "catch-all", after some other specific address. It was sending all mails to catch-all although created a specific other alias.

So, If you have another specific alias to coexist with you catch-all address, you must try to create it before the catch-all address.

Regards,
Netino

237
Sorry, still is incomplete.
As per your mail message, you could try to use:
Code: [Select]
exe:/usr/bin/python2.7
user:netdata
cmd:/usr/bin/python /usr/libexec/netdata/plugins.d/python.d.plugin 1

This should properly ignore all python processes executing that specific file.

If your netdata command line is not like above, another thing you could try is the argumento to "pcmd" too:

pcmd:*/usr/libexec/netdata/plugins.d/python.d.plugin 1

This will ignore all commands ending in the path of the file, which includes python processes.
Like in:
Code: [Select]
exe:/usr/bin/python2.7
user:netdata
pcmd:*/usr/libexec/netdata/plugins.d/python.d.plugin 1

So, if it is invoked as "/usr/bin/python2.7" or instead as "/usr/bin/python" (or yet any other), is indifferent, this command could to target them.

And don't forget to restart csf:
Code: [Select]
# csf -x; csf -e

238
Apache / Re: Logrotate domlogs
« on: March 03, 2019, 04:20:05 AM »
Surely you have mistyped some character of that file.
Or you are uploading that file to the server as "binary" mode through you Windows PC.

239
The most important question is: 'These processes are legitimate..??'
If not, kill them, and investigate how they were activated.
If they are, why would you kill them .. ??

If you don't know if they are legitimate processes, try to learn more about the programs you have installed in your machine, and how they are executed, before to turn it public accessible. Your could have very serious security problems, too easily.

Regards,
Netino

240
High Performance / Re: 403 forbidden in subdomain or secondary domain
« on: March 03, 2019, 03:53:53 AM »
The logs of the webserver you are using.
You are using Apache webserver, but although you are using nginx as just a reverse proxy, per si nginx can return code "403" too.

So, I would recommend all of these logs, in this order:
=================================
1) /usr/local/apache/domlogs/domain.error.log
2) /usr/local/apache/domlogs/domain.log
3) /usr/local/apache/logs/error_log
4) /usr/local/apache/logs/access_log
5) /var/log/nginx/error.log
6) /var/log/nginx/access.log
=================================

Pages: 1 ... 14 15 [16] 17 18 ... 25