redmine:email:receive_imap
Added by nikitoz nikitoz about 16 years ago
Hello, I have latest version of redmine from svn and what to receive imap emails.
But I get
rake --trace redmine:email:receive_imap RAILS_ENV="production" host=blabla username=blabla password=blabla
(in /home/pmadiss/redmine)
rake aborted!
Don't know how to build task 'redmine:email:receive_imap'
/usr/local/lib/ruby/gems/1.8/gems/rake-0.8.3/lib/rake.rb:1706:in `[]'
/usr/local/lib/ruby/gems/1.8/gems/rake-0.8.3/lib/rake.rb:2018:in `invoke_task'
/usr/local/lib/ruby/gems/1.8/gems/rake-0.8.3/lib/rake.rb:1997:in `top_level'
/usr/local/lib/ruby/gems/1.8/gems/rake-0.8.3/lib/rake.rb:1997:in `each'
/usr/local/lib/ruby/gems/1.8/gems/rake-0.8.3/lib/rake.rb:1997:in `top_level'
/usr/local/lib/ruby/gems/1.8/gems/rake-0.8.3/lib/rake.rb:2036:in `standard_exception_handling'
/usr/local/lib/ruby/gems/1.8/gems/rake-0.8.3/lib/rake.rb:1991:in `top_level'
/usr/local/lib/ruby/gems/1.8/gems/rake-0.8.3/lib/rake.rb:1970:in `run'
/usr/local/lib/ruby/gems/1.8/gems/rake-0.8.3/lib/rake.rb:2036:in `standard_exception_handling'
/usr/local/lib/ruby/gems/1.8/gems/rake-0.8.3/lib/rake.rb:1967:in `run'
/usr/local/lib/ruby/gems/1.8/gems/rake-0.8.3/bin/rake:31
/usr/local/bin/rake:19:in `load'
/usr/local/bin/rake:19
rake, version 0.8.3
What can I do with it?
Replies (4)
RE: redmine:email:receive_imap - Added by Eric Davis about 16 years ago
Can you paste the output of:
RAILS_ENV="production" rake -T redmine
Eric
RE: redmine:email:receive_imap - Added by nikitoz nikitoz about 16 years ago
- RAILS_ENV="production" rake -T redmine
(in /home/pmadiss/redmine)
rake redmine:fetch_changesets # Fetch changesets from the repositories
rake redmine:load_default_data # Load Redmine default configuration data
rake redmine:migrate_from_mantis # Mantis migration script
rake redmine:migrate_from_trac # Trac migration script
RE: redmine:email:receive_imap - Added by Eric Davis about 16 years ago
Looks like you are still on an older version before receive_imap. Here's my results from the latest trunk:
$ rake -T redmine (in /home/edavis/dev/redmine/redmine) rake redmine:email:read # Read an email from standard input. rake redmine:email:receive_imap # Read emails from an IMAP server. rake redmine:fetch_changesets # Fetch changesets from the repositories rake redmine:load_default_data # Load Redmine default configuration data rake redmine:migrate_from_mantis # Mantis migration script rake redmine:migrate_from_trac # Trac migration script rake redmine:plugins:hook_list # Enumerate all Redmine plugin hooks and their context parameters rake redmine:send_reminders # Send reminders about issues due in the next days.
Eric
RE: redmine:email:receive_imap - Added by Alexey Blinkov over 14 years ago
Maybe your server use ssl, for example with ssl for gmail:
rake -f /usr/share/redmine/Rakefile redmine:email:receive_imap ssl=SSL RAILS_ENV="production" host=imap.gmail.com port=993 username=username@gmail.com password=password --trace