views:

497

answers:

3

The title says it all: How would one configure trac to allow anonymous submission of tickets?

+5  A: 

In your trac config you need to give the anonymous user the TICKET_CREATE permission.

cori
+2  A: 

Setup a trac site to allow anonymous (no actual login) login. Grant the anonymous user permission to only create tickets, and maybe view existing tickets if you wish. But deny all other permissions.

The trac admin plugin makes this pretty easy.

Joseph Daigle
+3  A: 

Go to Admin > Permissions, then give "anonymous" the TICKET_CREATE and TICKET_MODIFY privileges (actions).

See: http://trac.edgewall.org/wiki/TracPermissions

Kevin