Installing spamassassin in webmin

I tried installing spamassassin in webmin as follows :

Step 1 : Webmin >> Others >> Perl Modules >> Install  (more...)
Published in: on July 20, 2008 at 9:24 am Leave a Comment
Tags: , , ,

Some issues that we come across – III

Setting message size in webmail

Message size limit is usually not specified in exim. Its by default 50M.

You can set message size limit to, say 60M, in /etc/exim.conf as

message_size_limit = 60M

This may not work when sending mail using webmail. Then, you need to set message size for webmail too.

In webmail, by default message size limit is 2M. You can set it to, say 60M, in /usr/local/cpanel/etc/neomail.conf as

$attlimit = 60;

That’s it. :) (more…)

Some issues that we come across – II

Error : The “SendUsing” configuration value is invalid.

If you get the following error in ASP.net :

The "SendUsing" configuration value is invalid.

Check if the following line is present in the script for sending mail. If not added it.

SmtpMail.SmtpServer = "mail.youdomain.com"

Here, “mail.youdomain.com” is the mail server. If this does not work, you can try using mail server IP.

It should work. :) (more…)

Some issues that we come across

Error in Mantis

Error in Mantis during account signup :

Page redirection error, ensure that there are no spaces outside the PHP block (<?php ?>) in config_inc.php or custom_*.php files.

Comment the line :

trigger_error( ERROR_PAGE_REDIRECTION, ERROR );

found on line 53 in core/print_api.php in mantis’ directory.

Thats it. (more…)

Linux File System

What is a File?
Files are collection of data items stored on disk. Or it’s device which can store the information, data, music (mp3), picture, movie, sound, book etc. In fact what ever you store in computer it must be in form of file. Files are always associated with devices like hard disk ,floppy disk etc. File is the last object in your file system tree. (more…)

Published in: on June 10, 2007 at 10:51 am Leave a Comment