On Mon, September 13, 2004 8:30 pm, Lonnie Cumberland said: > Hello All, > > > I have just gotten Squirrelmail 1.4.3a installed with my default Linux > Fedora Core 2 but see a message from a plugin that I cannot locate on > you site and do not know what it means. > > *WARNING! Tell your admin to set the SpamFilters_YourHop variable > > > *which is from the SpamFiltering plugin but I have no docs. > > > Please tell me how to fix this? > > > Thanks in advance, > Lonnie
Simple, goto your squirrelmail install and then find plugins\filters\setup.php scroll down until you find this $SpamFilters_YourHop = ' '; from the comment above the code ---------------------------------------------------- /** * SpamFilters YourHop Setting * * Set this to a string containing something unique to the line in the * header you want me to find IPs to scan the databases with. For example, * All the email coming IN from the internet to my site has a line in * the header that looks like (all on one line): * Received: [from usw-sf-list1.sourceforge.net (usw-sf-fw2.sourceforge.net * [216.136.171.252]) by firewall.persistence.com (SYSADMIN-antispam * 0.2) with * Since this line indicates the FIRST hop the email takes into my network, * I set my SpamFilters_YourHop to 'by firewall.persistence.com' but any * case-sensitive string will do. You can set it to something found on * every line in the header (like ' ') if you want to scan all IPs in * the header (lots of false alarms here tho). * @global string $SpamFilters_YourHop */ ---------------------------------------------------- Optionally you can just set this to false instead of true $AllowSpamFilters = true; and disable the spam filters altogether. I would think that turning this off should be the default, until the admin configures it, but maybe I'm missing something. Jimmy ------------------------------------------------------- This SF.Net email is sponsored by: YOU BE THE JUDGE. Be one of 170 Project Admins to receive an Apple iPod Mini FREE for your judgement on who ports your project to Linux PPC the best. Sponsored by IBM. Deadline: Sept. 13. Go here: http://sf.net/ppc_contest.php -- squirrelmail-users mailing list Posting Guidelines: http://squirrelmail.org/wiki/wiki.php?MailingListPostingGuidelines List Address: [EMAIL PROTECTED] List Archives: http://news.gmane.org/thread.php?group=gmane.mail.squirrelmail.user List Archives: http://sourceforge.net/mailarchive/forum.php?forum_id=2995 List Info: https://lists.sourceforge.net/lists/listinfo/squirrelmail-users
