Receiving old emails with POP3 using Mailman

338 Views Asked by At

I'm very new to mailman, just trying to create a handler so I can get notification when I receive new mail , something like that :

require "rubygems"
require "mailman"

Mailman.config.pop3 = {
  server: 'pop.gmail.com', port: 995, ssl: true,
  username: "[email protected]",
  password: "password"
}

Mailman::Application.run do
  default do
    puts message.subject
  end
end

Anyways for somereasone I keep getting long list of old emails subjects instead of the new one, I'm totally sure i'm doing something wrong here, but how can I make it just receive the new coming mails ?

0

There are 0 best solutions below