Feature #3584
Allow creating of issues in private projects by anonymous/non member via email
| Status: | New | Start date: | 2009-07-04 | |
|---|---|---|---|---|
| Priority: | Normal | Due date: | ||
| Assignee: | - | % Done: | 0% |
|
| Category: | Email receiving | |||
| Target version: | - | |||
| Resolution: |
Description
i was wondering why i cant create issues as anonymous in my private project.
we will use this for an customer tracker like support@example.com and the customers should send all mails to this account. But we don't want the whole project to be public. We don't want to show all customer mails to the www ;-).
is there a way to do this with redmine?
thx maik
Related issues
History
#1 Updated by Jean-Philippe Lang over 2 years ago
- Subject changed from allow creating of issues for anonymous in private projects to Allow creating of issues in private projects by anonymous/non member via email
#2 Updated by Ignacio Carrera over 2 years ago
I second this. I need to allow users created on-the-fly via LDAP to add issues to a non-public project via email (and read wiki articles).
Right now this is what's bothering me (User model):
def allowed_to?(action, project, options={})
...
role.allowed_to?(action) && (project.is_public? || role.member?)
...
end
The problem is that I need a non-member to read wiki articles and add issues while not allowing an anonymous user to list or see issues.
I simply commented out && (project.is_public? || role.member?) (the first check handles anonymous users great).
-- nachokb
#3 Updated by Jean-Philippe Lang over 2 years ago
- Category changed from Email notifications to Email receiving