Posts

Showing posts from March, 2014

How to enable the html display for horde webmail?

To enable the html display for horde webmail you need to modify /usr/local/cpanel/base/horde/imp/config/mime_drivers.php file. Open the /usr/local/cpanel/base/horde/imp/config/mime_drivers.php file in your favorite editor and change the following line from false to true  /* HTML driver settings */     'html' => array(         /* NOTE: Inline HTML display is turned OFF by default. */         'inline' => false,   <==== true         'handles' => array(             'text/html'         ), Save the changes and restart the cPanel # service cpanel restart or # /etc/init.d/cpanel restart As well as restart the Imap server, # /scripts/restartsrv courier Now, check your emails in Horde. :)

Mail server does not work in Plesk

Issue:   Sometimes, you are not able to login to all the email accounts associated with the domain. The following error you get on the Webmail or other mail client. Login failed because your username or password was entered incorrectly. Fix: You can fix the issue by repairing mail server configuration in Plesk. Use mchk utility to repair/rebuild mail server configuration and restore settings for all mailboxes created in Parallels Plesk Panel. You need to run the following command in order to fix the issue in the server: # /usr/local/psa/admin/sbin/mchk  ==> Checking for: mailsrv_conf_init... ok ==> Checking for: mail_handlers_init... ok ==> Checking for: mailsrv_entities_dump... ok ==> Checking for: mail_admin_aliases... ok ==> Checking for: mail_auth_dump... ok ==> Checking for: mailman_lists_dump... ok ==> Checking for: mail_kav8_restore... ok ==> Checking for: mail_responder_restore... ok ==> Checking for: mail_postfix_tra

The server's system package manager, 'YUM', failed

Issue: Sometimes, you encountered through the following error while running Easyapache in a cPanel server : !! The server's system package manager, 'YUM', failed. !! Fix: You can fix the issue by removing openssl library in your server using the following command: # rpm -e openssl --nodeps --justdb --allmatches Now run Easyapache. It should run successfully.