<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="http://forums.asp.net/utility/FeedStylesheets/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/"><channel><title>Issue Tracker Starter Kit</title><link>http://forums.asp.net/155.aspx</link><description>Discussions about the Issue Tracker Starter Kit for ASP.NET 1.x.</description><dc:language>en</dc:language><generator>CommunityServer 2007 SP1 (Build: 20510.895)</generator><item><title>Re: Automatic e-mail assignment delivery hasn't been implemented yet :(</title><link>http://forums.asp.net/thread/2717876.aspx</link><pubDate>Fri, 31 Oct 2008 20:26:24 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:2717876</guid><dc:creator>boloyang</dc:creator><author>boloyang</author><slash:comments>0</slash:comments><comments>http://forums.asp.net/thread/2717876.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=155&amp;PostID=2717876</wfw:commentRss><description>&lt;p&gt;nvm ... i&amp;#39;ve also found a way on how to do this ... thanks for taking the time to not reply to any more my posting. &lt;/p&gt;</description></item><item><title>Re: Automatic e-mail assignment delivery hasn't been implemented yet :(</title><link>http://forums.asp.net/thread/2710456.aspx</link><pubDate>Tue, 28 Oct 2008 15:42:04 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:2710456</guid><dc:creator>boloyang</dc:creator><author>boloyang</author><slash:comments>0</slash:comments><comments>http://forums.asp.net/thread/2710456.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=155&amp;PostID=2710456</wfw:commentRss><description>&lt;p&gt;Hey, I&amp;#39;ve tried it with this code but I&amp;#39;m getting a server error. This is the server error I&amp;#39;m getting.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;em&gt;Cannot insert the value NULL into column &amp;#39;UserId&amp;#39;, table &amp;#39;IT.dbo.IssueTracker_IssueNotifications&amp;#39;; column does not allow nulls. INSERT fails.&lt;br /&gt;The statement has been terminated.&lt;/em&gt; &lt;/p&gt;
&lt;p&gt;it&amp;#39;s from App_Code\Code\DAL\SQLDataAccessLayer.cs&lt;b&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/b&gt;&lt;/p&gt;&lt;pre&gt;Line 1878:				        sqlCmd.Connection = cn;
Line 1879:				        cn.Open();
&lt;font color="red"&gt;Line 1880:				        result = sqlCmd.ExecuteScalar();
&lt;/font&gt;Line 1881:            }
Line 1882:&lt;/pre&gt;&lt;pre&gt;&amp;nbsp;any idea?&lt;/pre&gt;</description></item><item><title>Re: Automatic e-mail assignment delivery hasn't been implemented yet :(</title><link>http://forums.asp.net/thread/739673.aspx</link><pubDate>Fri, 05 Nov 2004 20:03:56 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:739673</guid><dc:creator>Testosteles</dc:creator><author>Testosteles</author><slash:comments>0</slash:comments><comments>http://forums.asp.net/thread/739673.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=155&amp;PostID=739673</wfw:commentRss><description>Oh, and check this thread:
&lt;br /&gt;

&lt;br /&gt;
&lt;a target="_new" href="http://www.asp.net/Forums/ShowPost.aspx?tabindex=1&amp;amp;PostID=736681"&gt;http://www.asp.net/Forums/ShowPost.aspx?tabindex=1&amp;amp;PostID=736681&lt;/a&gt;</description></item><item><title>Re: Automatic e-mail assignment delivery hasn't been implemented yet :(</title><link>http://forums.asp.net/thread/739625.aspx</link><pubDate>Fri, 05 Nov 2004 18:45:43 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:739625</guid><dc:creator>Testosteles</dc:creator><author>Testosteles</author><slash:comments>0</slash:comments><comments>http://forums.asp.net/thread/739625.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=155&amp;PostID=739625</wfw:commentRss><description>I modified Issues\IssueDetails.aspx to look as follows:
&lt;br /&gt;
&lt;pre&gt;
&lt;br /&gt;
		bool SaveIssue() 
&lt;br /&gt;
		{
&lt;br /&gt;
			Issue newIssue = new Issue(IssueId, ProjectId, txtTitle.Text, dropCats.SelectedValue, dropMilestone.SelectedValue, dropPriority.SelectedValue, dropStatus.SelectedValue, dropAssigned.SelectedValue, dropOwned.SelectedValue, User.Identity.Name);
&lt;br /&gt;
			if (!newIssue.Save()) 
&lt;br /&gt;
			{
&lt;br /&gt;
				lblError.Text = &amp;quot;Could not save issue&amp;quot;;
&lt;br /&gt;
				return false;
&lt;br /&gt;
			}
&lt;br /&gt;

&lt;br /&gt;
			IssueId = newIssue.Id;
&lt;br /&gt;

&lt;br /&gt;
			if (!CustomField.SaveCustomFieldValues(IssueId, ctlCustomFields.Values) ) 
&lt;br /&gt;
			{
&lt;br /&gt;
				lblError.Text = &amp;quot;Could not save issue custom fields&amp;quot;;
&lt;br /&gt;
				return false;
&lt;br /&gt;
			}
&lt;br /&gt;

&lt;br /&gt;
			newIssue = Issue.GetIssueById( IssueId );
&lt;br /&gt;

&lt;br /&gt;
			IssueNotification notifyAssigned = new IssueNotification(IssueId, newIssue.AssignedDisplayName);
&lt;br /&gt;
			IssueNotification notifyCreator = new IssueNotification(IssueId, newIssue.CreatorUsername);
&lt;br /&gt;

&lt;br /&gt;
			notifyAssigned.Save();
&lt;br /&gt;
			IssueNotification.SendIssueNotifications( IssueId ); //Send a notification to the assigned user, but not to the creator.
&lt;br /&gt;
			notifyAssigned.Save();
&lt;br /&gt;

&lt;br /&gt;
			return true;
&lt;br /&gt;
		}
&lt;br /&gt;
&lt;/pre&gt;
&lt;br /&gt;

&lt;br /&gt;
In my estimation, the correct behaviour is as follows:
&lt;br /&gt;

&lt;br /&gt;
- Bug is created, whomever it's assigned to will get an e-mail, and be added to the notification list (and possibly whomever it's owned by).
&lt;br /&gt;

&lt;br /&gt;
- The creator is added to the notification list, but they don't get an e-mail when the issue is created (they just created it, they don't need a notification e-mail).
&lt;br /&gt;

&lt;br /&gt;
- If a user no longer wants to be notified of changes, they simply take themselves off the notification list.</description></item><item><title>Re: Automatic e-mail assignment delivery hasn't been implemented yet :(</title><link>http://forums.asp.net/thread/739375.aspx</link><pubDate>Fri, 05 Nov 2004 14:20:42 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:739375</guid><dc:creator>jwadsworth</dc:creator><author>jwadsworth</author><slash:comments>0</slash:comments><comments>http://forums.asp.net/thread/739375.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=155&amp;PostID=739375</wfw:commentRss><description>I will look into creating a workspace on gotdotnet.
&lt;br /&gt;

&lt;br /&gt;
Also, is there a way to have this forum email me when someone posts?
&lt;br /&gt;

&lt;br /&gt;
Jeremy</description></item><item><title>Re: Automatic e-mail assignment delivery hasn't been implemented yet :(</title><link>http://forums.asp.net/thread/739090.aspx</link><pubDate>Fri, 05 Nov 2004 08:01:57 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:739090</guid><dc:creator>jwezel</dc:creator><author>jwezel</author><slash:comments>0</slash:comments><comments>http://forums.asp.net/thread/739090.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=155&amp;PostID=739090</wfw:commentRss><description>Hi Jeremy!
&lt;br /&gt;

&lt;br /&gt;
Would it be possible that I can use your enhanced final version? Would be great!
&lt;br /&gt;

&lt;br /&gt;
Or Maybe it might make sense to create a new project on gotdotnet? ;-)
&lt;br /&gt;

&lt;br /&gt;
Thank you very much!
&lt;br /&gt;
Jochen
&lt;br /&gt;

&lt;br /&gt;</description></item><item><title>Re: Automatic e-mail assignment delivery hasn't been implemented yet :(</title><link>http://forums.asp.net/thread/738704.aspx</link><pubDate>Thu, 04 Nov 2004 20:56:22 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:738704</guid><dc:creator>jwadsworth</dc:creator><author>jwadsworth</author><slash:comments>0</slash:comments><comments>http://forums.asp.net/thread/738704.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=155&amp;PostID=738704</wfw:commentRss><description>I forgot to mention that the code I have written is in the beta version. I'm re-writing the functionality this week to be easier to use in the UI. Also, I'm not sure if I will be porting it over to the final release as I have made so many enhancements and modifications to the beta that I feel like maybe I wouldn't gain anything extra by trying to move all my changes to the final release version.
&lt;br /&gt;

&lt;br /&gt;
Jeremy</description></item><item><title>Re: Automatic e-mail assignment delivery hasn't been implemented yet :(</title><link>http://forums.asp.net/thread/736746.aspx</link><pubDate>Wed, 03 Nov 2004 05:46:05 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:736746</guid><dc:creator>scotta</dc:creator><author>scotta</author><slash:comments>0</slash:comments><comments>http://forums.asp.net/thread/736746.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=155&amp;PostID=736746</wfw:commentRss><description>The code would be great.
&lt;br /&gt;

&lt;br /&gt;
The way I think it should work is as follows:
&lt;br /&gt;
By default emails are sent to the creator/owner/assigned. You should then have a check box in the notifications area next to each email enabling you to switch off anyone who does not want emails.
&lt;br /&gt;

&lt;br /&gt;
Scott</description></item><item><title>Re: Automatic e-mail assignment delivery hasn't been implemented yet :(</title><link>http://forums.asp.net/thread/736409.aspx</link><pubDate>Tue, 02 Nov 2004 20:18:39 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:736409</guid><dc:creator>jwadsworth</dc:creator><author>jwadsworth</author><slash:comments>0</slash:comments><comments>http://forums.asp.net/thread/736409.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=155&amp;PostID=736409</wfw:commentRss><description>I implemented a feature like this in the beta where any changes to an issue or its comments fire off an email to the person the issue is assigned to, along with a link to the issue. The smtp address is stored in the web.config file. Also designed it so that users who want to receive email updates of issues are stored in a comma delimited string in the web.config. I did it this way as a quick effort to get it working and because some of the people I work with did not want email notifications.
&lt;br /&gt;

&lt;br /&gt;
If you're interested in the code, let me know.
&lt;br /&gt;

&lt;br /&gt;
Jeremy</description></item><item><title>Re: Automatic e-mail assignment delivery hasn't been implemented yet :(</title><link>http://forums.asp.net/thread/735692.aspx</link><pubDate>Tue, 02 Nov 2004 10:15:08 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:735692</guid><dc:creator>jwezel</dc:creator><author>jwezel</author><slash:comments>0</slash:comments><comments>http://forums.asp.net/thread/735692.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=155&amp;PostID=735692</wfw:commentRss><description>This issue is targetting the final version, not the BETA!!</description></item><item><title>Automatic e-mail assignment delivery hasn't been implemented yet :(</title><link>http://forums.asp.net/thread/735689.aspx</link><pubDate>Tue, 02 Nov 2004 10:09:47 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:735689</guid><dc:creator>jwezel</dc:creator><author>jwezel</author><slash:comments>0</slash:comments><comments>http://forums.asp.net/thread/735689.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=155&amp;PostID=735689</wfw:commentRss><description>Automatic e-mail delivery when a user get's created is not implemented.
&lt;br /&gt;
Automatic e-mail assignment for issue creators hasn't been implemented.
&lt;br /&gt;

&lt;br /&gt;
My Summary: No purpose for the e-mail address field of the user profile has been found :(</description></item></channel></rss>