# Here's where you personalise the spam filter, so we can identify mail addressed # to you and mail that's from mailing lists you're subscribed to. # # Identify my ISP so that I can spot the Received: header added by it. MYISP="(myisp\.net| localhost |otherisp.org)" # # Expression matching all of my mail servers' host names, for use in forgery checking MYHOST=(mail\.myisp\.net|mta[0-9]+\.otherisp\.org) # # Expression matching all of my mail servers' IP addresses, for use in forgery checking MYIP=(127\.0\.0\.1|172\.16\.1\.[12]|192\.168\.1\.[0-9]+) # # Expression matching all of my email addresses. MYNAMES="(user@myisp\.net|nickname@otherisp.org)" # # Expression matching all of my mailing list mail. MYLISTS="(^Sender: (owner-(list1|list2-digest)@)|\ ^Mailing-List: (list (anotherlist|and_another_one)@yahoogroups\.com);|\ ^Subject: Some other list with useless headers|\ ^List-Id:.*(spam-discuss\.somewhere\.org|spam-news\.lists\.spammers\.net))" # # What "score" we decide a mail is spam at. SPAMTHRESHOLD=100 # # Handle mail delivered to a hotmail account and retrieved using gotmail # Also enables a check for spammers forging mail from hotmail (recommended) HOTMAIL=1 # # Set to 1 if you don't want to block mail with Subject: headers in these character sets CHINESE_OK=0 HEBREW_OK=0 JAPANESE_OK=0 KOREAN_OK=0 RUSSIAN_OK=0 # # Set to 1 if your resolver has a license from MAPS LLC to access their blacklists. USE_MAPS=0 # # Set to 1 if you want to filter out all executeable MIME attachments (probably viruses) DUMP_EXEC_ATTACHMENTS=1