├── .gitignore ├── .travis.yml ├── Gemfile ├── HISTORY.md ├── Manifest.txt ├── PostInstall.txt ├── README.md ├── Rakefile ├── VERSION ├── bounce_email.gemspec ├── lib └── bounce_email.rb ├── release-version ├── script ├── console ├── destroy └── generate └── test ├── bounce_email_test.rb ├── bounces ├── malformed_bounce_01.txt ├── tt_1234175799.txt ├── tt_1234177688.txt ├── tt_1234210655.txt ├── tt_1234211357.txt ├── tt_1234211929.txt ├── tt_1234211931.txt ├── tt_1234211932.txt ├── tt_1234241665.txt ├── tt_1234285532.txt ├── tt_1234285668.txt ├── tt_bounce_01.txt ├── tt_bounce_02.txt ├── tt_bounce_03.txt ├── tt_bounce_04.txt ├── tt_bounce_05.txt ├── tt_bounce_06.txt ├── tt_bounce_07.txt ├── tt_bounce_08.txt ├── tt_bounce_09.txt ├── tt_bounce_10.txt ├── tt_bounce_11.txt ├── tt_bounce_12_soft.txt ├── tt_bounce_13.txt ├── tt_bounce_14.txt ├── tt_bounce_15.txt ├── tt_bounce_16.txt ├── tt_bounce_17.txt ├── tt_bounce_18.txt ├── tt_bounce_19.txt ├── tt_bounce_20.txt ├── tt_bounce_21.txt ├── tt_bounce_22.txt ├── tt_bounce_23.txt ├── tt_bounce_24.txt ├── tt_bounce_25.txt ├── undeliverable_gmail.txt └── unknown_code_bounce_01.txt ├── fixtures └── no_subject.txt ├── non_bounces ├── tt_1234210666.txt ├── tt_1234211024.txt └── tt_1234241664.txt └── test_helper.rb /.gitignore: -------------------------------------------------------------------------------- 1 | .bundle 2 | doc 3 | pkg 4 | .rvmrc 5 | .DS_Store 6 | Gemfile.lock 7 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livebg/bounce_email/HEAD/.travis.yml -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livebg/bounce_email/HEAD/Gemfile -------------------------------------------------------------------------------- /HISTORY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livebg/bounce_email/HEAD/HISTORY.md -------------------------------------------------------------------------------- /Manifest.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livebg/bounce_email/HEAD/Manifest.txt -------------------------------------------------------------------------------- /PostInstall.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livebg/bounce_email/HEAD/PostInstall.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livebg/bounce_email/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livebg/bounce_email/HEAD/Rakefile -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | 0.2.8 2 | -------------------------------------------------------------------------------- /bounce_email.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livebg/bounce_email/HEAD/bounce_email.gemspec -------------------------------------------------------------------------------- /lib/bounce_email.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livebg/bounce_email/HEAD/lib/bounce_email.rb -------------------------------------------------------------------------------- /release-version: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livebg/bounce_email/HEAD/release-version -------------------------------------------------------------------------------- /script/console: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livebg/bounce_email/HEAD/script/console -------------------------------------------------------------------------------- /script/destroy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livebg/bounce_email/HEAD/script/destroy -------------------------------------------------------------------------------- /script/generate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livebg/bounce_email/HEAD/script/generate -------------------------------------------------------------------------------- /test/bounce_email_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livebg/bounce_email/HEAD/test/bounce_email_test.rb -------------------------------------------------------------------------------- /test/bounces/malformed_bounce_01.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livebg/bounce_email/HEAD/test/bounces/malformed_bounce_01.txt -------------------------------------------------------------------------------- /test/bounces/tt_1234175799.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livebg/bounce_email/HEAD/test/bounces/tt_1234175799.txt -------------------------------------------------------------------------------- /test/bounces/tt_1234177688.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livebg/bounce_email/HEAD/test/bounces/tt_1234177688.txt -------------------------------------------------------------------------------- /test/bounces/tt_1234210655.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livebg/bounce_email/HEAD/test/bounces/tt_1234210655.txt -------------------------------------------------------------------------------- /test/bounces/tt_1234211357.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livebg/bounce_email/HEAD/test/bounces/tt_1234211357.txt -------------------------------------------------------------------------------- /test/bounces/tt_1234211929.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livebg/bounce_email/HEAD/test/bounces/tt_1234211929.txt -------------------------------------------------------------------------------- /test/bounces/tt_1234211931.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livebg/bounce_email/HEAD/test/bounces/tt_1234211931.txt -------------------------------------------------------------------------------- /test/bounces/tt_1234211932.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livebg/bounce_email/HEAD/test/bounces/tt_1234211932.txt -------------------------------------------------------------------------------- /test/bounces/tt_1234241665.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livebg/bounce_email/HEAD/test/bounces/tt_1234241665.txt -------------------------------------------------------------------------------- /test/bounces/tt_1234285532.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livebg/bounce_email/HEAD/test/bounces/tt_1234285532.txt -------------------------------------------------------------------------------- /test/bounces/tt_1234285668.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livebg/bounce_email/HEAD/test/bounces/tt_1234285668.txt -------------------------------------------------------------------------------- /test/bounces/tt_bounce_01.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livebg/bounce_email/HEAD/test/bounces/tt_bounce_01.txt -------------------------------------------------------------------------------- /test/bounces/tt_bounce_02.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livebg/bounce_email/HEAD/test/bounces/tt_bounce_02.txt -------------------------------------------------------------------------------- /test/bounces/tt_bounce_03.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livebg/bounce_email/HEAD/test/bounces/tt_bounce_03.txt -------------------------------------------------------------------------------- /test/bounces/tt_bounce_04.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livebg/bounce_email/HEAD/test/bounces/tt_bounce_04.txt -------------------------------------------------------------------------------- /test/bounces/tt_bounce_05.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livebg/bounce_email/HEAD/test/bounces/tt_bounce_05.txt -------------------------------------------------------------------------------- /test/bounces/tt_bounce_06.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livebg/bounce_email/HEAD/test/bounces/tt_bounce_06.txt -------------------------------------------------------------------------------- /test/bounces/tt_bounce_07.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livebg/bounce_email/HEAD/test/bounces/tt_bounce_07.txt -------------------------------------------------------------------------------- /test/bounces/tt_bounce_08.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livebg/bounce_email/HEAD/test/bounces/tt_bounce_08.txt -------------------------------------------------------------------------------- /test/bounces/tt_bounce_09.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livebg/bounce_email/HEAD/test/bounces/tt_bounce_09.txt -------------------------------------------------------------------------------- /test/bounces/tt_bounce_10.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livebg/bounce_email/HEAD/test/bounces/tt_bounce_10.txt -------------------------------------------------------------------------------- /test/bounces/tt_bounce_11.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livebg/bounce_email/HEAD/test/bounces/tt_bounce_11.txt -------------------------------------------------------------------------------- /test/bounces/tt_bounce_12_soft.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livebg/bounce_email/HEAD/test/bounces/tt_bounce_12_soft.txt -------------------------------------------------------------------------------- /test/bounces/tt_bounce_13.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livebg/bounce_email/HEAD/test/bounces/tt_bounce_13.txt -------------------------------------------------------------------------------- /test/bounces/tt_bounce_14.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livebg/bounce_email/HEAD/test/bounces/tt_bounce_14.txt -------------------------------------------------------------------------------- /test/bounces/tt_bounce_15.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livebg/bounce_email/HEAD/test/bounces/tt_bounce_15.txt -------------------------------------------------------------------------------- /test/bounces/tt_bounce_16.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livebg/bounce_email/HEAD/test/bounces/tt_bounce_16.txt -------------------------------------------------------------------------------- /test/bounces/tt_bounce_17.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livebg/bounce_email/HEAD/test/bounces/tt_bounce_17.txt -------------------------------------------------------------------------------- /test/bounces/tt_bounce_18.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livebg/bounce_email/HEAD/test/bounces/tt_bounce_18.txt -------------------------------------------------------------------------------- /test/bounces/tt_bounce_19.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livebg/bounce_email/HEAD/test/bounces/tt_bounce_19.txt -------------------------------------------------------------------------------- /test/bounces/tt_bounce_20.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livebg/bounce_email/HEAD/test/bounces/tt_bounce_20.txt -------------------------------------------------------------------------------- /test/bounces/tt_bounce_21.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livebg/bounce_email/HEAD/test/bounces/tt_bounce_21.txt -------------------------------------------------------------------------------- /test/bounces/tt_bounce_22.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livebg/bounce_email/HEAD/test/bounces/tt_bounce_22.txt -------------------------------------------------------------------------------- /test/bounces/tt_bounce_23.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livebg/bounce_email/HEAD/test/bounces/tt_bounce_23.txt -------------------------------------------------------------------------------- /test/bounces/tt_bounce_24.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livebg/bounce_email/HEAD/test/bounces/tt_bounce_24.txt -------------------------------------------------------------------------------- /test/bounces/tt_bounce_25.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livebg/bounce_email/HEAD/test/bounces/tt_bounce_25.txt -------------------------------------------------------------------------------- /test/bounces/undeliverable_gmail.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livebg/bounce_email/HEAD/test/bounces/undeliverable_gmail.txt -------------------------------------------------------------------------------- /test/bounces/unknown_code_bounce_01.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livebg/bounce_email/HEAD/test/bounces/unknown_code_bounce_01.txt -------------------------------------------------------------------------------- /test/fixtures/no_subject.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livebg/bounce_email/HEAD/test/fixtures/no_subject.txt -------------------------------------------------------------------------------- /test/non_bounces/tt_1234210666.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livebg/bounce_email/HEAD/test/non_bounces/tt_1234210666.txt -------------------------------------------------------------------------------- /test/non_bounces/tt_1234211024.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livebg/bounce_email/HEAD/test/non_bounces/tt_1234211024.txt -------------------------------------------------------------------------------- /test/non_bounces/tt_1234241664.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livebg/bounce_email/HEAD/test/non_bounces/tt_1234241664.txt -------------------------------------------------------------------------------- /test/test_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livebg/bounce_email/HEAD/test/test_helper.rb --------------------------------------------------------------------------------