The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
0answers
8 views

Form spam checking service

I'm looking for a good service to analyse form posts for spam. Something like http://mollom.com. This would be contact forms, product requests, reviews etc. Ideally I'd like pricing based on the ...
0
votes
0answers
24 views

how to read contact phone number?

I try to make program for sms spam.. I have a problem with match contact. I don't know how to do it. I try every code source still force close Flow Scenario : Receive SMS Read sender and message ...
0
votes
0answers
12 views

How to test spam filter on Apache James?

I am configuring apache james to detect spams. I used the the blacklisting mailets to achieve this. I added a few dnsbl urls to match against. Now, how do I check if I have configured it correctly? ...
0
votes
0answers
34 views

Honeypot implementation

Trying to filter out spam from an online form. I have a hidden div with an input. The idea is that if something goes into the field, the form will ID the user as a bot and reject the submission. ...
0
votes
0answers
45 views

x-mailer header, phpmailer and spam filters

I am a newsletter plugin developer for WordPress (Knews). It uses phpmailer to send. One user has contacted with me about an issue: all his emails (sent through phpmailer) goes to spam. He has ...
-1
votes
2answers
194 views

mail delivered as spam - phpmailer, how to avoid

I know that in first look many users mark this question as duplicate, but after reading more than 10 question I did not get any satisfactory answer, almost all question has answers having words like ...
3
votes
3answers
69 views

How to check if users are spamming other users with similar messages?

One of the PHP/MySQL sites I administer is a Social Network and I've noticed that spammers will send a lot of similarly-looking messages to several other users. Due to the number of messages sent by ...
0
votes
1answer
36 views

Where did SpamAssassin people go? [closed]

I've been reading up on Spam Assassin - and even asked a few questions here about it - but it seems like most of the rulesets I've found are from 5+ years ago. It's like it's been abandoned. My ...
2
votes
2answers
49 views

Multiple Question Marks in Regex

I downloaded a set of regular expressions that I intend to use for spam filtering. One of them looks like this: /(?!med['`s]?)\bm[_\W]{0,5}[e????????3][_\W]{0,5}[d?][_\W]{0,5}[sz5\$]?\b/i The ...
0
votes
0answers
45 views

Looking for Rule-based spam filter

I am looking for rule-based spam filters, which has free to view documentation, including the rules. I’ve already tried google, I’ve found FuzzySpamFilter and RuBaSt. But I can’t find RuBaSt rules ...
10
votes
5answers
738 views

PHP and Gmail spam filter

I've spent hours trying to solve this, so I look very much forward to any suggestions or answers, whatsoever. I have made a mail-system, that first generated a PDF-file (using the FPDF-library), ...
0
votes
1answer
74 views

Send newsletter in both HTML and TXT format in one email

I'm testing my newsletter in terms of recognition by spam filters. I see some errors. One of them is BODY: Message only has text/html MIME parts. I read that this is because I only have HTML format so ...
0
votes
1answer
419 views

Online SpamAssassin evaluation / RFC conformant check [closed]

I want to check the SpamAssassin SPAM score of E-Mails including headers generated by a script from a WebApp. Therefore I need to run this mail through SpamAssassin to get the specific SPAM headers ...
0
votes
1answer
82 views

Can we obtain hybrid algorithm for spam filtering from Naive Bayes & SVM?

I am developing a spam filtering application. I need suggestions regarding the hybrid algorithm from Naive Bayes & SVM.(e.g. based on feature vector, probabilities). Any help is appreciated. Can ...
1
vote
1answer
179 views

Must follow rules when sending emails with php and smtp to avoid beeing marked as spam or getting filtered [closed]

I am writing a php script with login system which sends activation emails once the registration process has successfully accomplished, however i've noticed that for some email providers my emails ...
0
votes
0answers
35 views

Textual analysis of spam emails from spam archives

I trying to implement an anti-spam engine using probabilistic approach. The very first step is to analyse and do some research on types of words and their frequency in spams. So I wrote a very simple ...
0
votes
0answers
22 views

Auto populate Comment Moderation

I have looked around and cant seem to find anything, does anyone know of a hook I can use in my themes functions.php in WordPress to automatically populate the "Comment moderation" textarea named ...
0
votes
0answers
29 views

how to remove special mime types in emails using spamassasin or something else

i want to sanitize the email and remove attachments from it. i think if i can remove all mime types from an email except text/plain mime i will remove any content except the clear text message in the ...
0
votes
1answer
391 views

How to get mail message id from PHP before or after sending

I want to keep track of users who assign emails as spam, then remove them from the mailing list, or just put notification to 0 for them, so they don't get emails anymore. Mail feedback loops help you ...
0
votes
0answers
79 views

outlook email going to junk when sending as html

When I send a Mail In Outlook 2007 in Html Format (Default Format) it goes to the recipient junk folder . But When i send it as in plain Text or rich format It's not going to junk. But i need to send ...
0
votes
0answers
150 views

Neural Network approach to spam detection in emails

I'm building a spam detection system using neural networks. I'm not able to understand how to proceed with what I have currently. I have- Unread Mails being flagged as read and converted to mail ...
0
votes
2answers
244 views

My site's e-mails are being spam-filtered… sometimes [closed]

When you create an account for my website, it sends an e-mail with a link to confirm the sign-up. Something like this: Thank you for signing-up. Please click here to complete the activation of ...
0
votes
0answers
54 views

What are the latest issues in spam filtering algorithms? [closed]

I am trying to build a spam filtering application. I have build naive bayes filter which uses naive bayes algorithm & filters the document using independence of the probabilities. I need to know ...
0
votes
0answers
164 views

Tweepy with Python collecting data from twitter for spam detection [closed]

I am currently working twitter spam detection. For some experiments I need to collect large twitter data. For this I am using tweepy python combo. I went through OAuth tutorial and got succeeded. Now ...
1
vote
3answers
320 views

How can I add items to collection.Counter? and then sort them into ASC?

At the moment I'm trying to process lingspam dataset by counting the occurance of words in 600 files (400 emails and 200 spam emails). I've already made each word universal with the Porter Stemmer ...
0
votes
2answers
116 views

Spam Filtering using Text Categorization

I am trying to build spam filtering application using text categorization. From where should I start learning the algorithms? Which algorithm should I implement first? Anyone can suggest any good ...
0
votes
0answers
34 views

Stopped sending receiving emails from own server

I have website having registration system, when user registers he gets email confirmation and i also get one email "new user registered". Few weeks back i created enewsletter subscription system. ...
5
votes
2answers
75 views

how to find the abnormal id from so many ids

We run an affiliate program. Users who sign up can gain points when they successfully recruit other users. However, spammers are abusing this program, and automatically signing up large numbers of ...
0
votes
1answer
301 views

Naive Bayesian and zero-frequency issue

I think I've implemented most of it correctly. One part confused me: The zero-frequency problem: Add 1 to the count for every attribute value-class combination (Laplace estimator) when an attribute ...
1
vote
1answer
52 views

Filter email by containing my name in “To” using procmail

Using procmail, I want to move any incoming mail that does not contain my name ("John Doe") in the "To" field to the "Junk" folder. However, the following rule does not seem to have any effect, even ...
0
votes
0answers
50 views

SpamAssassin not filtering links to images [closed]

A client of mine is getting dogged by spam messages that contain a small amount of HTML but numbers of <img> tags that link to embedded spam messages. They're often coming from Yahoo or Gmail ...
-1
votes
4answers
320 views

How to avoid a system generated e-mail going into spam?

I've written code for sending an e-mail using php. I don't want to go that mail into spam. How can I avoid going that mail into spam? <?php $EmailTo = "name@example.com"; $Subject = "Enquiry from ...
1
vote
2answers
208 views

Sending mails to multiple users using python

I recently found a code to send emails using python. It was only for a single user so I modified it to take emails from a txt file which stores the email on every line and then send them mails. ...
1
vote
3answers
85 views

Are ISP / email providers following links automatically within the email body for some reason? [closed]

I've a system running in php that sends a one-time confirmation link to a user. However in some cases (not always) it seems that the link is accessed before the user can click it. Do some ISP or ...
1
vote
2answers
149 views

Username/Email Spam List?

I am hoping someone can point me in the rite direction, i did a search on here and in Google. I am after a username and email spam list. When a user tries to register i want to check if the username ...
1
vote
4answers
458 views

State of the art in spam prevention

What is the current state of the art in Spam Prevention techniques? I've already read Paul Graham's articles about Bayesian filtering. (A Plan for Spam and Better Bayesian Filtering) and wanted to ...
3
votes
2answers
635 views

Which spam corpus I can use in NLTK?

My question is fairly related to this one, but I decided to open another question thread. I hope it is fine. I am building a spam filter using the NLTK in Python as well, but I've just started. I ...
3
votes
1answer
290 views

AppEngine python send email api is marked as SPAM by Gmail email reader

We send email using appengine's python send_mail api. Is there any way to tell why an email that is sent to only one recipient would be marked as SPAM. This seems to only happen when appengine's ...
0
votes
1answer
73 views

Better approach to filtering Wikipedia edits

When you are watching for news of particular Wikipedia article via its RSS channel, its annoying without filtering the information, because most of the edits is spam, vandalism, minor edits etc. My ...
2
votes
2answers
289 views

Strange FANN behavior in spam classification task

I tried to write simple spam classifier with help of FANN library. To do it I collected number of spam and ham email letters, and collected a dictionary of the most used English words. I created a ...
1
vote
0answers
31 views

How to get a list of such sites that “promote traffic” [closed]

I won't discuss legitimity of such sites, they are legitimate I guess, but they are making me traffic from all around the world that even don't know our language to generate hits on their posts as I ...
1
vote
0answers
423 views

php mail header injection cleaning for contact form

I came up with the following script to clean my php mail contact forms. Was wondering if there is anything else that is recommended I should put in here. This is just a snippet of the code as I also ...
4
votes
1answer
155 views

How to check spammyness of a link/url

I know that most spams are related with one or more links, so I am wondering if there is any web service which can check the spam-weight/spammyness of a URL. Similar to how Akismet can check the ...
0
votes
1answer
246 views

How to Design an Efficient Spam-Filtering and Moderation System?

I am building a website that allows user content to be posted. There is a flag button at the bottom of the user's post, enabling other registered users to click, identifying the post as offensive, a ...
0
votes
1answer
107 views

PHP filter_var: FILTER_VALIDATE_URL include more cases

It only validates urls that are of the format: http://www.example.com How do I also validate partial urls, such as: www.example.com, example.com, or blah/example.php, etc... (I need to do this to ...
1
vote
1answer
319 views

Spam protection algorithm for SMS

I am developing an android messaging application. Is there a good spam filtering algorithm that works well for SMS? Please give some things to kick start. Rahim.
0
votes
1answer
47 views

Considerations for anonymous users

So, the Web application I'm working on allows input from anonymous users (and their participation in the flagging system). As for the spamming issue, would it be enough to use the honeypot method or ...
1
vote
4answers
229 views

I need a neat data structure suggestion to store a very large dataset (to train Naive Bayes in Python)

I am going to implement Naive Bayes classifier with Python and classify e-mails as Spam or Not spam. I have a very sparse and long dataset with many entries. Each entry is like the following: 1 9:3 ...
12
votes
2answers
993 views

Combining individual probabilities in Naive Bayesian spam filtering

I'm currently trying to generate a spam filter by analyzing a corpus I've amassed. I'm using the wikipedia entry http://en.wikipedia.org/wiki/Bayesian_spam_filtering to develop my classification ...
3
votes
1answer
652 views

Spam detection/Spam filter system in Java [closed]

I've built a private messaging system on a site, and I want to implement a spam filter, preferably in Java. So ... I'm interested if there a Java library implementing this already, or if I have to ...

1 2