2011-10-29 16:19:11 +04:00
|
|
|
#-- encoding: UTF-8
|
2011-05-30 00:11:52 +04:00
|
|
|
#-- copyright
|
|
|
|
# ChiliProject is a project management system.
|
2011-05-30 22:52:25 +04:00
|
|
|
#
|
2012-01-03 23:36:40 +04:00
|
|
|
# Copyright (C) 2010-2012 the ChiliProject Team
|
2011-05-30 22:52:25 +04:00
|
|
|
#
|
2011-05-30 00:11:52 +04:00
|
|
|
# This program is free software; you can redistribute it and/or
|
|
|
|
# modify it under the terms of the GNU General Public License
|
|
|
|
# as published by the Free Software Foundation; either version 2
|
|
|
|
# of the License, or (at your option) any later version.
|
2011-05-30 22:52:25 +04:00
|
|
|
#
|
2011-05-30 00:11:52 +04:00
|
|
|
# See doc/COPYRIGHT.rdoc for more details.
|
|
|
|
#++
|
|
|
|
|
2010-01-17 16:53:13 +03:00
|
|
|
require 'net/pop'
|
|
|
|
|
|
|
|
module Redmine
|
|
|
|
module POP3
|
|
|
|
class << self
|
|
|
|
def check(pop_options={}, options={})
|
2011-12-27 00:45:30 +04:00
|
|
|
if pop_options[:ssl]
|
|
|
|
ssl = true
|
|
|
|
if pop_options[:ssl] == 'force'
|
|
|
|
Net::POP3.enable_ssl(OpenSSL::SSL::VERIFY_NONE)
|
|
|
|
else
|
|
|
|
Net::POP3.enable_ssl(OpenSSL::SSL::VERIFY_PEER)
|
|
|
|
end
|
|
|
|
else
|
|
|
|
ssl = false
|
|
|
|
end
|
|
|
|
|
2010-01-17 16:53:13 +03:00
|
|
|
host = pop_options[:host] || '127.0.0.1'
|
2011-12-27 00:45:30 +04:00
|
|
|
port = pop_options[:port]
|
|
|
|
port ||= ssl ? '995' : '110'
|
2010-01-17 16:53:13 +03:00
|
|
|
apop = (pop_options[:apop].to_s == '1')
|
|
|
|
delete_unprocessed = (pop_options[:delete_unprocessed].to_s == '1')
|
|
|
|
|
|
|
|
pop = Net::POP3.APOP(apop).new(host,port)
|
2011-01-22 15:09:07 +03:00
|
|
|
logger.debug "Connecting to #{host}..." if logger && logger.debug?
|
2010-01-17 16:53:13 +03:00
|
|
|
pop.start(pop_options[:username], pop_options[:password]) do |pop_session|
|
|
|
|
if pop_session.mails.empty?
|
2011-01-22 15:09:07 +03:00
|
|
|
logger.debug "No email to process" if logger && logger.debug?
|
2010-01-17 16:53:13 +03:00
|
|
|
else
|
2011-01-22 15:09:07 +03:00
|
|
|
logger.debug "#{pop_session.mails.size} email(s) to process..." if logger && logger.debug?
|
2010-01-17 16:53:13 +03:00
|
|
|
pop_session.each_mail do |msg|
|
|
|
|
message = msg.pop
|
|
|
|
message_id = (message =~ /^Message-ID: (.*)/ ? $1 : '').strip
|
|
|
|
if MailHandler.receive(message, options)
|
|
|
|
msg.delete
|
2011-01-22 15:09:07 +03:00
|
|
|
logger.debug "--> Message #{message_id} processed and deleted from the server" if logger && logger.debug?
|
2010-01-17 16:53:13 +03:00
|
|
|
else
|
|
|
|
if delete_unprocessed
|
|
|
|
msg.delete
|
2011-01-22 15:09:07 +03:00
|
|
|
logger.debug "--> Message #{message_id} NOT processed and deleted from the server" if logger && logger.debug?
|
2010-01-17 16:53:13 +03:00
|
|
|
else
|
2011-01-22 15:09:07 +03:00
|
|
|
logger.debug "--> Message #{message_id} NOT processed and left on the server" if logger && logger.debug?
|
2010-01-17 16:53:13 +03:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2011-05-30 22:52:25 +04:00
|
|
|
|
2011-01-22 15:09:07 +03:00
|
|
|
private
|
|
|
|
|
|
|
|
def logger
|
|
|
|
RAILS_DEFAULT_LOGGER
|
|
|
|
end
|
2010-01-17 16:53:13 +03:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|