Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/codefriar/RubySpamAssassin
Ruby Spam Assassin; Kills Spam Dead. Perhaps before it's sent! (Gasp!)
https://github.com/codefriar/RubySpamAssassin
Last synced: 3 months ago
JSON representation
Ruby Spam Assassin; Kills Spam Dead. Perhaps before it's sent! (Gasp!)
- Host: GitHub
- URL: https://github.com/codefriar/RubySpamAssassin
- Owner: codefriar
- License: mit
- Created: 2011-01-27T23:42:13.000Z (almost 14 years ago)
- Default Branch: master
- Last Pushed: 2023-01-09T22:13:06.000Z (almost 2 years ago)
- Last Synced: 2024-05-18T20:25:35.321Z (6 months ago)
- Language: Ruby
- Homepage:
- Size: 615 KB
- Stars: 29
- Watchers: 6
- Forks: 17
- Open Issues: 6
-
Metadata Files:
- Readme: README.rdoc
- License: LICENSE.txt
Awesome Lists containing this project
- awesome-ruby - RubySpamAssassin
README
= RubySpamAssassin
Interacting with SpamAssassin's daemon process used to be a pain in the ass. Shelling out to run spamc, parsing the text etc.
Now you just need to:
require 'RubySpamAssassin'
include RubySpamAssassinspam_client = SpamClient.new("host_running_spamd", "port_spamd_is_listening_on", timeout)
# MyMailer is your ActionMailer
# check will also accept a string, if you're into that kind of thing
report = spam_client.check(MyMailer.my_email.to_s)
p report.inspectWasn't that easy?
Cucumber and rspec tests are on their way.
== Contributing to RubySpamAssassin
* Check out the latest master to make sure the feature hasn't been implemented or the bug hasn't been fixed yet
* Check out the issue tracker to make sure someone already hasn't requested it and/or contributed it
* Fork the project
* Start a feature/bugfix branch
* Commit and push until you are happy with your contribution
* Make sure to add tests for it. This is important so I don't break it in a future version unintentionally.
* Please try not to mess with the Rakefile, version, or history. If you want to have your own version, or is otherwise necessary, that is fine, but please isolate to its own commit so I can cherry-pick around it.== Copyright
Copyright (c) 2011 Kevin Poorman. See LICENSE.txt for further details.