http://www.fsf.org/ or write * to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, * MA 02111-1307, USA. * */ /* CONFIGURATION FILE FOR despam_imgtxt cmsdAm PLUGIN */ Class CmsDam_Despam_Imgtxt_Conf { var $letters_filename; var $max_string_length; function CmsDam_Despam_Imgtxt_Conf() { /* YOU MAY WANT TO CHANGE THE SETTINGS BELOW!! */ /* Text file with valid letters */ $this->letters_filename = "plugins/despam_imgtxt/letters.txt"; /* Temporary image files created */ $this->image_path = "plugins/despam_imgtxt/var/img/"; /* Max string length. Default: 6 characters */ $this->max_string_lenght = 6; /* Image Height */ $this->height = 64; /* Image Width */ $this->width = 20; /* Image BackGround RED color component */ $this->bg_red_color = 0x00; /* Image BackGround GREEN color component */ $this->bg_green_color = 0XFF; /* Image BackGround BLUE color component */ $this->bg_blue_color = 0X00; /* Image TEXT RED color component */ $this->txt_red_color = 0x00; /* Image TEXT GREEN color component */ $this->txt_green_color = 0x00; /* Image TEXT BLUE color component */ $this->txt_blue_color = 0x00; /* How many seconds to sleep before an image generation. Default: 1 second */ $this->dos_sleep = 1; /* Image Life Time in seconds. Default: 2 minutes */ $this->image_lifetime = 2 * 60; /* END OF USER SETTINGS!! */ return true; } } ?>