#1028 closed enhancement (duplicate)
combo box with user names and mail address
Reported by: | Owned by: | Christopher Lenz | |
---|---|---|---|
Priority: | high | Milestone: | |
Component: | ticket system | Version: | 0.8 |
Severity: | major | Keywords: | |
Cc: | Branch: | ||
Release Notes: | |||
API Changes: | |||
Internal Changes: |
Description
it would be nice to have a combo box for the assigned to input box in the new ticket dialog with a list of known users. this list should also have the mail adresses (simple address or mailing lists) of this users to send them a mail if a new ticket arrived.
Attachments (1)
Change History (9)
comment:1 by , 20 years ago
comment:2 by , 20 years ago
This is exactly what I'm looking for.
I've applied the patch and added the smtp_replyto to the .ini, but it doesn't seem to be sending the notifications as expected (sessions table is filled with all of the appropriate email addresses).
I'll continue trying to debug this, now.
comment:3 by , 20 years ago
Please check your environment. We have applied the patch to our projects and it works well.
If a user in your project experiences problems, then try to recreate his/her session: Login, go to URL http-to-your-project
/settings?newsession=1
, reenter user fullname/email, press Save Changes.
Another way is to clean session
table:
sqlite project-path/db/trac.db "DELETE FROM session;"
This means that every user in your project will need to reenter name/email.
comment:4 by , 20 years ago
Owner: | changed from | to
---|---|
Status: | new → assigned |
Great patch, pkou. Very elegant.
comment:5 by , 20 years ago
Resolution: | → duplicate |
---|---|
Status: | assigned → closed |
This is actually a duplicate of #222.
comment:6 by , 20 years ago
Pkou, I've had a look at your patch and added a slightly reworked version to #222. Please have a look.
comment:7 by , 19 years ago
Milestone: | 0.9 |
---|
comment:8 by , 17 years ago
Type: | defect → enhancement |
---|
Attached patch provides a solution for this problem. (I did not create a new ticket because the description of this ticket is almost identical to what the patch does.)
The patch provides the following features:
The idea of the patch is the following:
owner
andcc
fields and it is translated to email address when it is necessary;always_notify_owner=true
in section[notification]
oftrac.ini
, it is possible to receive a notification when a ticket is assigned to user;restrict_owner=true
in section[ticket]
oftrac.ini
, it is possible to limit ticket owners to logged users only. Users are assigned using combo box. If a user has entered his/her full name via Settings page, then the combo box displays both user login and full name.Thus, in order to use combo boxes for ticket assignment and email notifications for ticket owner, it is necessary to make the following changes in a project: