Category Archives: Servers

Linux : cPanel outgoing email return “this server is not permitted to relay through this server without authentication”

Recently, without any change, I noticed that some cPanel servers stop sending email and return the following error: 550-Please turn on SMTP Authentication in your mail client. 550-hostname.domain.tld [0.0.0.0]:00000 is not permitted to relay 550 through this server without authentication. What is really puzzling in that case is that this message showed up even though… Read More »

Web: ownCloud Transactional file locking should be configured

Getting the following notice from your ownCloud administrator account setting page? Transactional file locking should be configured ownCloud have the capability of managing file/folder locking on its own, on top of the filesystem. This is a must-have feature especially for large, busy, multi-users servers, and especially when users use their account on multiple devices. You… Read More »

Linux : cPanel The service “imap” appears to be down

Encountering the following issue with Dovecot/IMAP service on your cPanel server lately? The service “imap” appears to be down Reason TCP Transaction Log: << * OK [CAPABILITY IMAP4rev1 SASL-IR LOGIN-REFERRALS ID ENABLE IDLE NAMESPACE LITERAL+ STARTTLS AUTH=PLAIN AUTH=LOGIN] Dovecot ready. >> A001 LOGIN __cpanel__service__auth__imap__nJl5Hcz7gc9iiv1r V0TeDQVaynp8zl9g << * BYE Internal error occurred. Refer to server log… Read More »

Linux : How to show Apache memory usage and average process size

Here is an easy way to output in a single command the Apache memory usage and average process size : ps -ylC apache2 | awk ‘{x += $8;y += 1} END {print “Apache Memory Usage (MB): “x/1024; print “Average Proccess Size (MB): “x/((y-1)*1024)}’ This is particularly useful when you need to calculate proper process, max… Read More »