Configure trac for anonymous ticket submissions - Stack Overflow most recent 30 from stackoverflow.com2009-11-26T16:22:06Zhttp://stackoverflow.com/feeds/question/121169http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/121169/configure-trac-for-anonymous-ticket-submissions2Configure trac for anonymous ticket submissionsthr2008-09-23T14:00:11Z2008-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#1211875Answer by cori for Configure trac for anonymous ticket submissionscori2008-09-23T14:05:15Z2008-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#1211892Answer by Joseph Daigle for Configure trac for anonymous ticket submissionsJoseph Daigle2008-09-23T14:05:16Z2008-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#1211953Answer by Kevin for Configure trac for anonymous ticket submissionsKevin2008-09-23T14:05:55Z2008-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>