Configure trac for anonymous ticket submissions - Stack Overflow most recent 30 from stackoverflow.com 2009-11-26T16:22:06Z http://stackoverflow.com/feeds/question/121169 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/121169/configure-trac-for-anonymous-ticket-submissions 2 Configure trac for anonymous ticket submissions thr 2008-09-23T14:00:11Z 2008-09-23T14:10:37Z <p>The title says it all: How would one configure trac to allow anonymous submission of tickets? </p> http://stackoverflow.com/questions/121169/configure-trac-for-anonymous-ticket-submissions/121187#121187 5 Answer by cori for Configure trac for anonymous ticket submissions cori 2008-09-23T14:05:15Z 2008-09-23T14:05:15Z <p>In your trac config you need to give the anonymous user the TICKET_CREATE permission.</p> http://stackoverflow.com/questions/121169/configure-trac-for-anonymous-ticket-submissions/121189#121189 2 Answer by Joseph Daigle for Configure trac for anonymous ticket submissions Joseph Daigle 2008-09-23T14:05:16Z 2008-09-23T14:05:16Z <p>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.</p> <p>The trac admin plugin makes this pretty easy.</p> http://stackoverflow.com/questions/121169/configure-trac-for-anonymous-ticket-submissions/121195#121195 3 Answer by Kevin for Configure trac for anonymous ticket submissions Kevin 2008-09-23T14:05:55Z 2008-09-23T14:05:55Z <p>Go to Admin > Permissions, then give "anonymous" the TICKET_CREATE and TICKET_MODIFY privileges (actions).</p> <p>See: <a href="http://trac.edgewall.org/wiki/TracPermissions" rel="nofollow">http://trac.edgewall.org/wiki/TracPermissions</a></p>