POP3S, issue creation by email
Added by Fredo JFO over 11 years ago
Hello,
Is it possible to create an issue by email with POP3S (SSL/Port 995).
I tried this, but it didnt work :
<the paths> redmine:email:receive_pop3 RAILS_ENV="production" host=<the host> port=995 ssl=1 username=<the username> password=<the password> project=<the project>
But that works with POP3 without SSL.
Any idea?
Best regards
Replies (6)
RE: POP3S, issue creation by email - Added by Bryan Pearson over 11 years ago
I'm having the same issue, I thought the command was ssl=SSL.
RE: POP3S, issue creation by email - Added by Fredo JFO over 11 years ago
Hello,
I tried with ssl=SSL too, same problem.
Is POP3S implemented in Redmine?
Best regards
RE: POP3S, issue creation by email - Added by Etienne Massip over 11 years ago
No but you'll find here a patch applied some time ago to ChiliProject (Redmine fork).
RE: POP3S, issue creation by email - Added by Fredo JFO over 11 years ago
Thx a lot.
I'll try this soon.
Best regards
RE: POP3S, issue creation by email - Added by Etienne Massip over 11 years ago
Fredo JFO wrote:
Thx a lot.
I'll try this soon.
Please let us know, thanks!
RE: POP3S, issue creation by email - Added by Fredo JFO over 11 years ago
Hello,
Works with the Etienne Massip's patch below. Thx!
In addition my script :
#! /bin/bash
cd /opt/redmine-2.2.2-0/apps/redmine/htdocs/
/opt/redmine-2.2.2-0/ruby/bin/rake --trace redmine:email:receive_pop3 RAILS_ENV="production" host=<host IP> port=995 ssl=force username=<my username> password=<my password> project=<a project>
I use "force" with the ssl parameter to counter the certificate check.
Careful:
If you use :async_smtp instead of :smtp in configuration.yml, the notifications will not work for news issues added by this method. I dont have solution for the moment...