codestriker-user Mailing List for Codestriker: collaborative code reviewer (Page 8)
Brought to you by:
sits
You can subscribe to this list here.
| 2002 |
Jan
|
Feb
|
Mar
|
Apr
|
May
(12) |
Jun
|
Jul
|
Aug
(2) |
Sep
|
Oct
|
Nov
|
Dec
|
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 2003 |
Jan
|
Feb
|
Mar
(1) |
Apr
(6) |
May
(3) |
Jun
(1) |
Jul
|
Aug
(9) |
Sep
(2) |
Oct
(2) |
Nov
(8) |
Dec
(6) |
| 2004 |
Jan
(12) |
Feb
(19) |
Mar
(2) |
Apr
(2) |
May
(4) |
Jun
(11) |
Jul
|
Aug
(14) |
Sep
(4) |
Oct
(27) |
Nov
(4) |
Dec
(22) |
| 2005 |
Jan
(14) |
Feb
(2) |
Mar
(11) |
Apr
(3) |
May
(14) |
Jun
(60) |
Jul
(58) |
Aug
(76) |
Sep
(72) |
Oct
(59) |
Nov
|
Dec
(4) |
| 2006 |
Jan
(1) |
Feb
(5) |
Mar
(13) |
Apr
(11) |
May
(30) |
Jun
(17) |
Jul
(18) |
Aug
(39) |
Sep
|
Oct
|
Nov
|
Dec
(17) |
| 2007 |
Jan
(18) |
Feb
(5) |
Mar
(20) |
Apr
(2) |
May
(3) |
Jun
(13) |
Jul
(11) |
Aug
(4) |
Sep
(6) |
Oct
(9) |
Nov
(3) |
Dec
|
| 2008 |
Jan
(10) |
Feb
|
Mar
(5) |
Apr
|
May
|
Jun
(9) |
Jul
(10) |
Aug
(10) |
Sep
(13) |
Oct
(34) |
Nov
(12) |
Dec
(8) |
| 2009 |
Jan
(4) |
Feb
(11) |
Mar
(12) |
Apr
(3) |
May
(36) |
Jun
(4) |
Jul
(11) |
Aug
(12) |
Sep
(25) |
Oct
(13) |
Nov
(9) |
Dec
|
| 2010 |
Jan
|
Feb
(12) |
Mar
(6) |
Apr
(10) |
May
(12) |
Jun
|
Jul
(4) |
Aug
(9) |
Sep
(12) |
Oct
(3) |
Nov
(6) |
Dec
(3) |
| 2011 |
Jan
(2) |
Feb
(1) |
Mar
(3) |
Apr
(5) |
May
(3) |
Jun
(8) |
Jul
|
Aug
(14) |
Sep
|
Oct
(3) |
Nov
(1) |
Dec
|
| 2012 |
Jan
(2) |
Feb
(10) |
Mar
(4) |
Apr
(3) |
May
(2) |
Jun
(5) |
Jul
|
Aug
(3) |
Sep
|
Oct
(2) |
Nov
(4) |
Dec
(2) |
| 2013 |
Jan
|
Feb
|
Mar
|
Apr
|
May
(4) |
Jun
|
Jul
|
Aug
|
Sep
(2) |
Oct
(1) |
Nov
|
Dec
(2) |
| 2014 |
Jan
|
Feb
|
Mar
|
Apr
(1) |
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
|
From: David S. <dav...@gm...> - 2009-10-06 04:58:05
|
It is inconsistent.. I'll make sure this is cleaned up for 1.9.10. The ClearCase modules were contributed and not well maintained. On Tue, Oct 6, 2009 at 3:47 PM, <ram...@gm...> wrote: > Thanks for the quick response. > > Yes. I got it to work by changing the Clearcase retrieve function to return > 1 if the $error_msg eq "" > > return 1 if ( $error_msg eq "" ); --> added to the ClearcaseDynamic.pm > return $error_msg; > > I am not sure if this is the correct way to handle this..I am seeing > inconsistency in handling error condition and the return values in the > repository implementations for retrieve function. > > For eg: > > in Perforce.pm, we call die in case of error and there is no eval block to > catch the die > and in success scenario the function doesn't return any value to the caller. > The return value is assumed to be 1 > > in ClearcaseDynamic.pm we call die/eval in some places, reuse $error_msg > variable in case of error while closing the view and > mask any error when trying to retrieve the clearcase data. > > I started looking at codestriker today and I am really very impressed. > Thanks for the fantastic tool. > > > thanks > Ramesh > > > On Oct 5, 2009 10:00pm, David Sitsky <dav...@gm...> wrote: >> > Shouldn't $error_msg in lib/Codestriker/Repository/ClearCaseDynamic.pm >> >> > initialized to undef instead of empty string? >> >> >> >> It appears that way. Does this fix your issue if you make this change? >> >> >> >> Cheers, >> >> David >> |
|
From: <ram...@gm...> - 2009-10-06 04:47:48
|
Thanks for the quick response. Yes. I got it to work by changing the Clearcase retrieve function to return 1 if the $error_msg eq "" return 1 if ( $error_msg eq "" ); --> added to the ClearcaseDynamic.pm return $error_msg; I am not sure if this is the correct way to handle this..I am seeing inconsistency in handling error condition and the return values in the repository implementations for retrieve function. For eg: in Perforce.pm, we call die in case of error and there is no eval block to catch the die and in success scenario the function doesn't return any value to the caller. The return value is assumed to be 1 in ClearcaseDynamic.pm we call die/eval in some places, reuse $error_msg variable in case of error while closing the view and mask any error when trying to retrieve the clearcase data. I started looking at codestriker today and I am really very impressed. Thanks for the fantastic tool. thanks Ramesh On Oct 5, 2009 10:00pm, David Sitsky <dav...@gm...> wrote: > > Shouldn't $error_msg in lib/Codestriker/Repository/ClearCaseDynamic.pm > > initialized to undef instead of empty string? > It appears that way. Does this fix your issue if you make this change? > Cheers, > David |
|
From: David S. <dav...@gm...> - 2009-10-06 03:01:08
|
> Shouldn't $error_msg in lib/Codestriker/Repository/ClearCaseDynamic.pm > initialized to undef instead of empty string? It appears that way. Does this fix your issue if you make this change? Cheers, David |
|
From: Ramesh N. <ram...@gm...> - 2009-10-05 21:23:13
|
Hi,
I installed codestriker 1.9.9 and created a clearcase dynamic repository.
When I create a issue and click on the parallel link, I get the error "No
such file or directory" in a popup window.
When I look at return value of
lib/Codestriker/Repository/ClearCaseDynamic.pm, we return empty string in
case of no error
# Retrieve the data corresponding to $filename and $revision. Store each
line
# into $content_array_ref.
sub retrieve ($$$\$)
{
my ($self, $filename, $revision, $content_array_ref) = @_;
my $error_msg = '';
.............
..............
return $error_msg;
}
and in lib/Codestriker/Action/ViewTopicFile.pm we are checking if the
if ( ! $repository->retrieve($filename, $revision, \@filedata) )
$http_response->error("Couldn't get repository data for $filename " .
"$revision: $!");
}
Shouldn't $error_msg in lib/Codestriker/Repository/ClearCaseDynamic.pm
initialized to undef instead of empty string?
thanks
Ramesh
|
|
From: David S. <dav...@gm...> - 2009-09-29 06:18:34
|
Hi Shashi, Thanks for your email.. its always nice to get feedback like that. This has been asked for before.. would you mind adding your comments to this feature request? https://sourceforge.net/tracker/?func=detail&aid=2796959&group_id=41136&atid=429863. Thanks. For now.. the only practical way of doing this is to add URLs to the topic description, so that reviewers can at least refer to them as a poor-man's attachment. Cheers, David On Tue, Sep 29, 2009 at 1:02 AM, Lad Shashikant <sen...@gm...> wrote: > Hello There, > > It' really amazing tool for code-review and really easy to Use. > > I have suggestion. > > Apart from code-diff, We also should have place where we can attached file > of any kind. > e.g client has communicated via outlook on problem, User can simply > attached this mail for reviewer's reference. > Or Incase where crash log is too big, User can attached. > Or Reviewer has approved it via mail (not via code-striker) , then user can > change the state to complete after attaching the mail sent by reviewer. > > So When user creates OR change the state, attached file (mail,log) also > should go via mail notification. > > This is Just suggestion, You can simply ignore it. > > Shashi > > > |
|
From: David C. <dcc...@gm...> - 2009-09-25 14:08:11
|
On Thu, Sep 24, 2009 at 7:40 PM, David Sitsky <dav...@gm...>wrote: > Hi David, > > Try setting $codestriker_css to the full URL of your test install. > > Cheers, > David > David, That did not quite work. However, I found a better solution. Instead of changing the URL's terminal node by adding "_tst" to it, I added a penultimate node: /tst/codestriker/ for testing, /codestriker/ for deployment. Thanks for your help. Now on to see if this fixes my SVN properties bug. ~David > > On Fri, Sep 25, 2009 at 9:25 AM, David Carson <dcc...@gm...> wrote: > > Ummm, I think I've hit this before. The problem has something to do with > my > > attempt to set up a test URL. I added a second URL to the Apache config. > > Instead of /codestriker/ pointing to the cgi-bin of the real > installation, I > > can use /codestriker_tst/ to point to my staging area (and the same for > the > > html URL). But I think this is what confuses Codestriker. > > > > I have two completely separate directories under /var/www/codestriker. I > > ran bin/install.pl in each. Is there a way I can configure so that I > can do > > staging experiments on a new version, without displacing the deployed > > version? > > > > Thanks, > > David > > > > On Thu, Sep 24, 2009 at 6:49 PM, David Carson <dcc...@gm...> > wrote: > >> > >> OK, I see there was a fix for binary svn files and changed properties, > and > >> it came in 1.9.7. That may be why my situation does not work, since > I've > >> got 1.9.6. > >> > >> So, I've now downloaded 1.9.9 and I'm trying to upgrade. Did something > >> change with the Help (now Manual) link? I do not get the right URL: > >> http://our.host.com/codestriker_tst/codestriker.pl/codestriker.html > >> > >> I should point out that I'm trying to use vanilla 1.9.9 first, before I > >> add all our changes to the .conf file, etc. The only changes I did make > to > >> .conf was to set the user/pass for the DB and to empty out > >> "valid_repositories" and add ours as the single element. > >> > >> Is there something I forgot to set so Manual will actually point to the > >> right place? > >> > >> Thanks, > >> David > >> > >> On Tue, Sep 22, 2009 at 7:20 PM, David Sitsky <dav...@gm...> > >> wrote: > >>> > >>> Hi David, > >>> > >>> There has been support for that added in I am pretty sure 1.9.6. > >>> Please try the latest release first - it should be able to handle most > >>> instances. > >>> > >>> Cheers, > >>> David > >>> > >>> On Wed, Sep 23, 2009 at 7:09 AM, David Carson <dcc...@gm...> > wrote: > >>> > Is there any support for property changes in the SVN diff parsing > >>> > code? I > >>> > am currently running 1.9.6 and I would be happy to upgrade if this > >>> > support > >>> > has been added. > >>> > > >>> > (I can't seem to find a Changelog to look at. Where would I find > that, > >>> > and > >>> > does it have this same info in it?) > >> > > > > > |
|
From: Arun S. <aru...@gm...> - 2009-09-25 02:19:36
|
Thank you Ken and David. On Thu, Sep 24, 2009 at 14:35, David Sitsky <dav...@gm...> wrote: > Yes.. its not ideal at the moment. For really small changes, diffs in > the comments is a practical approach, or you can obsolete the topic > (see obsolete option on topic properties screen), create the new > topic, and then at least you are just a click away from the previous > comments. > > Ideally, the best approach would be to upload new versions of the > changed files into the same topic, and Codestriker could automatically > maintain versions of files, including their comments. > > If I actually had any spare time, I don't think it would be a mammoth > task, but these days, our team have migrated to a post-commit > workflow, which presents its own issues for tracking review comments > and responses to them. > > On Fri, Sep 25, 2009 at 4:48 AM, Kenneth Wolcott > <ken...@gm...> wrote: > > Hi Arun; > > > > Nice question! > > > > We have the same issue in my team -- the second round is now exercised > > with cvs diffs in the comment section or a new Codestriker topic is > started > > and the comments from the first topic are disconnected from the comments > in > > the second topic. > > > > Thanks, > > Ken Wolcott > > > > On Thu, Sep 24, 2009 at 11:32, Arun Saha <aru...@gm...> wrote: > >> > >> Hi, > >> We are using codestriker, and are very excited about it. We are using > >> version 1.9.7. > >> Is there any option to upload a second version of the diff? > >> The question is coming from the following situation. I create a topic, > and > >> upload a version of diff. Reviewers provide some comments. I incorporate > the > >> comments and want to upload a second version of diff for reviewers' > >> approval. > >> Regards, > >> Arun > >> > |
|
From: David S. <dav...@gm...> - 2009-09-24 23:40:37
|
Hi David, Try setting $codestriker_css to the full URL of your test install. Cheers, David On Fri, Sep 25, 2009 at 9:25 AM, David Carson <dcc...@gm...> wrote: > Ummm, I think I've hit this before. The problem has something to do with my > attempt to set up a test URL. I added a second URL to the Apache config. > Instead of /codestriker/ pointing to the cgi-bin of the real installation, I > can use /codestriker_tst/ to point to my staging area (and the same for the > html URL). But I think this is what confuses Codestriker. > > I have two completely separate directories under /var/www/codestriker. I > ran bin/install.pl in each. Is there a way I can configure so that I can do > staging experiments on a new version, without displacing the deployed > version? > > Thanks, > David > > On Thu, Sep 24, 2009 at 6:49 PM, David Carson <dcc...@gm...> wrote: >> >> OK, I see there was a fix for binary svn files and changed properties, and >> it came in 1.9.7. That may be why my situation does not work, since I've >> got 1.9.6. >> >> So, I've now downloaded 1.9.9 and I'm trying to upgrade. Did something >> change with the Help (now Manual) link? I do not get the right URL: >> http://our.host.com/codestriker_tst/codestriker.pl/codestriker.html >> >> I should point out that I'm trying to use vanilla 1.9.9 first, before I >> add all our changes to the .conf file, etc. The only changes I did make to >> .conf was to set the user/pass for the DB and to empty out >> "valid_repositories" and add ours as the single element. >> >> Is there something I forgot to set so Manual will actually point to the >> right place? >> >> Thanks, >> David >> >> On Tue, Sep 22, 2009 at 7:20 PM, David Sitsky <dav...@gm...> >> wrote: >>> >>> Hi David, >>> >>> There has been support for that added in I am pretty sure 1.9.6. >>> Please try the latest release first - it should be able to handle most >>> instances. >>> >>> Cheers, >>> David >>> >>> On Wed, Sep 23, 2009 at 7:09 AM, David Carson <dcc...@gm...> wrote: >>> > Is there any support for property changes in the SVN diff parsing >>> > code? I >>> > am currently running 1.9.6 and I would be happy to upgrade if this >>> > support >>> > has been added. >>> > >>> > (I can't seem to find a Changelog to look at. Where would I find that, >>> > and >>> > does it have this same info in it?) >> > > |
|
From: David C. <dcc...@gm...> - 2009-09-24 23:25:39
|
Ummm, I think I've hit this before. The problem has something to do with my attempt to set up a test URL. I added a second URL to the Apache config. Instead of /codestriker/ pointing to the cgi-bin of the real installation, I can use /codestriker_tst/ to point to my staging area (and the same for the html URL). But I think this is what confuses Codestriker. I have two completely separate directories under /var/www/codestriker. I ran bin/install.pl in each. Is there a way I can configure so that I can do staging experiments on a new version, without displacing the deployed version? Thanks, David On Thu, Sep 24, 2009 at 6:49 PM, David Carson <dcc...@gm...> wrote: > OK, I see there was a fix for binary svn files and changed properties, and > it came in 1.9.7. That may be why my situation does not work, since I've > got 1.9.6. > > So, I've now downloaded 1.9.9 and I'm trying to upgrade. Did something > change with the *Help* (now *Manual*) link? I do not get the right URL: > http://our.host.com/codestriker_tst/codestriker.pl/codestriker.html > > I should point out that I'm trying to use vanilla 1.9.9 first, before I add > all our changes to the .conf file, etc. The only changes I did make to > .conf was to set the user/pass for the DB and to empty out > "valid_repositories" and add ours as the single element. > > Is there something I forgot to set so *Manual* will actually point to the > right place? > > Thanks, > David > > > On Tue, Sep 22, 2009 at 7:20 PM, David Sitsky <dav...@gm...>wrote: > >> Hi David, >> >> There has been support for that added in I am pretty sure 1.9.6. >> Please try the latest release first - it should be able to handle most >> instances. >> >> Cheers, >> David >> >> On Wed, Sep 23, 2009 at 7:09 AM, David Carson <dcc...@gm...> wrote: >> > Is there any support for property changes in the SVN diff parsing code? >> I >> > am currently running 1.9.6 and I would be happy to upgrade if this >> support >> > has been added. >> > >> > (I can't seem to find a Changelog to look at. Where would I find that, >> and >> > does it have this same info in it?) >> > > |
|
From: David C. <dcc...@gm...> - 2009-09-24 22:49:24
|
OK, I see there was a fix for binary svn files and changed properties, and
it came in 1.9.7. That may be why my situation does not work, since I've
got 1.9.6.
So, I've now downloaded 1.9.9 and I'm trying to upgrade. Did something
change with the *Help* (now *Manual*) link? I do not get the right URL:
http://our.host.com/codestriker_tst/codestriker.pl/codestriker.html
I should point out that I'm trying to use vanilla 1.9.9 first, before I add
all our changes to the .conf file, etc. The only changes I did make to
.conf was to set the user/pass for the DB and to empty out
"valid_repositories" and add ours as the single element.
Is there something I forgot to set so *Manual* will actually point to the
right place?
Thanks,
David
On Tue, Sep 22, 2009 at 7:20 PM, David Sitsky <dav...@gm...>wrote:
> Hi David,
>
> There has been support for that added in I am pretty sure 1.9.6.
> Please try the latest release first - it should be able to handle most
> instances.
>
> Cheers,
> David
>
> On Wed, Sep 23, 2009 at 7:09 AM, David Carson <dcc...@gm...> wrote:
> > Is there any support for property changes in the SVN diff parsing code?
> I
> > am currently running 1.9.6 and I would be happy to upgrade if this
> support
> > has been added.
> >
> > (I can't seem to find a Changelog to look at. Where would I find that,
> and
> > does it have this same info in it?)
>
|
|
From: David S. <dav...@gm...> - 2009-09-24 21:36:07
|
Yes.. its not ideal at the moment. For really small changes, diffs in the comments is a practical approach, or you can obsolete the topic (see obsolete option on topic properties screen), create the new topic, and then at least you are just a click away from the previous comments. Ideally, the best approach would be to upload new versions of the changed files into the same topic, and Codestriker could automatically maintain versions of files, including their comments. If I actually had any spare time, I don't think it would be a mammoth task, but these days, our team have migrated to a post-commit workflow, which presents its own issues for tracking review comments and responses to them. On Fri, Sep 25, 2009 at 4:48 AM, Kenneth Wolcott <ken...@gm...> wrote: > Hi Arun; > > Nice question! > > We have the same issue in my team -- the second round is now exercised > with cvs diffs in the comment section or a new Codestriker topic is started > and the comments from the first topic are disconnected from the comments in > the second topic. > > Thanks, > Ken Wolcott > > On Thu, Sep 24, 2009 at 11:32, Arun Saha <aru...@gm...> wrote: >> >> Hi, >> We are using codestriker, and are very excited about it. We are using >> version 1.9.7. >> Is there any option to upload a second version of the diff? >> The question is coming from the following situation. I create a topic, and >> upload a version of diff. Reviewers provide some comments. I incorporate the >> comments and want to upload a second version of diff for reviewers' >> approval. >> Regards, >> Arun >> >> ------------------------------------------------------------------------------ >> Come build with us! The BlackBerry® Developer Conference in SF, CA >> is the only developer event you need to attend this year. Jumpstart your >> developing skills, take BlackBerry mobile applications to market and stay >> ahead of the curve. Join us from November 9-12, 2009. Register >> now! >> http://p.sf.net/sfu/devconf >> _______________________________________________ >> Codestriker-user mailing list >> Cod...@li... >> https://lists.sourceforge.net/lists/listinfo/codestriker-user >> > > > ------------------------------------------------------------------------------ > Come build with us! The BlackBerry® Developer Conference in SF, CA > is the only developer event you need to attend this year. Jumpstart your > developing skills, take BlackBerry mobile applications to market and stay > ahead of the curve. Join us from November 9-12, 2009. Register now! > http://p.sf.net/sfu/devconf > _______________________________________________ > Codestriker-user mailing list > Cod...@li... > https://lists.sourceforge.net/lists/listinfo/codestriker-user > > |
|
From: Kenneth W. <ken...@gm...> - 2009-09-24 18:49:06
|
Hi Arun; Nice question! We have the same issue in my team -- the second round is now exercised with cvs diffs in the comment section or a new Codestriker topic is started and the comments from the first topic are disconnected from the comments in the second topic. Thanks, Ken Wolcott On Thu, Sep 24, 2009 at 11:32, Arun Saha <aru...@gm...> wrote: > Hi, > We are using codestriker, and are very excited about it. We are using > version 1.9.7. > > Is there any option to upload a second version of the diff? > > The question is coming from the following situation. I create a topic, and > upload a version of diff. Reviewers provide some comments. I incorporate the > comments and want to upload a second version of diff for reviewers' > approval. > > Regards, > Arun > > > ------------------------------------------------------------------------------ > Come build with us! The BlackBerry® Developer Conference in SF, CA > is the only developer event you need to attend this year. Jumpstart your > developing skills, take BlackBerry mobile applications to market and stay > ahead of the curve. Join us from November 9-12, 2009. Register now! > http://p.sf.net/sfu/devconf > _______________________________________________ > Codestriker-user mailing list > Cod...@li... > https://lists.sourceforge.net/lists/listinfo/codestriker-user > > |
|
From: Arun S. <aru...@gm...> - 2009-09-24 18:32:54
|
Hi, We are using codestriker, and are very excited about it. We are using version 1.9.7. Is there any option to upload a second version of the diff? The question is coming from the following situation. I create a topic, and upload a version of diff. Reviewers provide some comments. I incorporate the comments and want to upload a second version of diff for reviewers' approval. Regards, Arun |
|
From: David S. <dav...@gm...> - 2009-09-23 03:59:15
|
> Thanks for the tip. I didn't actually have anything to do with the > choice of Codestriker; I'm just the guy who got asked to add git > support. I think the decisions probably pretty solid at this point. > but I'll certainly suggest it and have a look. We're still > prototyping, so I suspect it'll be a while before [usefully] reviewing > every commit is at all feasible. Something to consider too is possibly writing a post-commit script to automatically create topics. We do that at my work (we use subversion) and its quite handy. We have adopted a code review practice where we do post-commit reviews, and having a script to automatically create the topic saves a lot of time. We used to do pre-commits, but found this could become a bit of a bottleneck - especially as the team grew in size. Presumably this could be done with git too. Cheers, David |
|
From: Jeffrey M. <je...@gm...> - 2009-09-23 03:06:58
|
On Tue, Sep 22, 2009 at 7:40 PM, MARK KEISLER <mar...@mo...> wrote: > Not to take away from Codestriker at all, but Gerrit is a tool for Git that > is already out there so there is no need to reinvent the wheel. It it kinda > like codestriker for Git but it does more than that. It stands in front of > the actual Git repository. You submit your commits directly to Gerrit and > only after review and approval do they get merged into the respository. See > http://code.google.com/p/gerrit/ > > > -- > Mark Keisler > Principal Software Engineer > Motorola Open Source Technologies Thanks for the tip. I didn't actually have anything to do with the choice of Codestriker; I'm just the guy who got asked to add git support. I think the decisions probably pretty solid at this point. but I'll certainly suggest it and have a look. We're still prototyping, so I suspect it'll be a while before [usefully] reviewing every commit is at all feasible. Jeffrey |
|
From: David S. <dav...@gm...> - 2009-09-23 01:16:26
|
Hi Jeffrey, At a quick glance, that looks great. Thanks for passing it on. > In particular, I'm wondering about git diff's support for copy and > rename detection. It'd be nice for a copy or rename to show up as > such in the filename list, and not unnecessarily show a diff > containing the entire contents of the file. This information is We have this issue with Subversion diffs at the moment too.. Codestriker pretty much just reproduces the diff it was given. You'd have to perhaps update the filename "field" to contain this information (copied from ...). This is how Subversion diffs actually represent it. Do you have some example git diffs? Perhaps you can add those into t/FileParser/git.t? Also - just so I can update the documentation, can you email me some example repository strings for the git repository? Cheers, David |
|
From: MARK K. <mar...@mo...> - 2009-09-23 01:02:50
|
Not to take away from Codestriker at all, but Gerrit is a tool for Git that is already out there so there is no need to reinvent the wheel. It it kinda like codestriker for Git but it does more than that. It stands in front of the actual Git repository. You submit your commits directly to Gerrit and only after review and approval do they get merged into the respository. See http://code.google.com/p/gerrit/ -- Mark Keisler Principal Software Engineer Motorola Open Source Technologies On Tue, Sep 22, 2009 at 3:14 PM, Jeffrey Middleton <je...@gm...>wrote: > David: I believe one of my coworkers emailed you several months back > about git support. Last week he came and asked me to look at adding > it, and I took a stab at it. I believe that diff retrieval, diff > parsing, and retrieval for parallel view work. This is the first Perl > I've written, and I'd still consider it more of a rough draft, so I'm > sure there's plenty of room for improvement. I've attached a patch > (relative to v1.9.9) for what I've done so far, hoping for some > feedback! > > In particular, I'm wondering about git diff's support for copy and > rename detection. It'd be nice for a copy or rename to show up as > such in the filename list, and not unnecessarily show a diff > containing the entire contents of the file. This information is > printed in the header of the patch, so it's very easy for the parser > to detect (don't know about other differs; have never used CVS/SVN). I > don't see any support for this anywhere else in the diff parsers, and > it doesn't look like the code's quite set up to handle it. Thoughts? > > Thanks, > Jeffrey > > > ------------------------------------------------------------------------------ > Come build with us! The BlackBerry® Developer Conference in SF, CA > is the only developer event you need to attend this year. Jumpstart your > developing skills, take BlackBerry mobile applications to market and stay > ahead of the curve. Join us from November 9-12, 2009. Register now! > http://p.sf.net/sfu/devconf > _______________________________________________ > Codestriker-user mailing list > Cod...@li... > https://lists.sourceforge.net/lists/listinfo/codestriker-user > > |
|
From: David S. <dav...@gm...> - 2009-09-22 23:20:23
|
Hi David, There has been support for that added in I am pretty sure 1.9.6. Please try the latest release first - it should be able to handle most instances. Cheers, David On Wed, Sep 23, 2009 at 7:09 AM, David Carson <dcc...@gm...> wrote: > Is there any support for property changes in the SVN diff parsing code? I > am currently running 1.9.6 and I would be happy to upgrade if this support > has been added. > > (I can't seem to find a Changelog to look at. Where would I find that, and > does it have this same info in it?) |
|
From: David C. <dcc...@gm...> - 2009-09-22 21:09:17
|
Is there any support for property changes in the SVN diff parsing code? I am currently running 1.9.6 and I would be happy to upgrade if this support has been added. (I can't seem to find a Changelog to look at. Where would I find that, and does it have this same info in it?) Thanks, David |
|
From: Jeffrey M. <je...@gm...> - 2009-09-22 20:14:36
|
David: I believe one of my coworkers emailed you several months back about git support. Last week he came and asked me to look at adding it, and I took a stab at it. I believe that diff retrieval, diff parsing, and retrieval for parallel view work. This is the first Perl I've written, and I'd still consider it more of a rough draft, so I'm sure there's plenty of room for improvement. I've attached a patch (relative to v1.9.9) for what I've done so far, hoping for some feedback! In particular, I'm wondering about git diff's support for copy and rename detection. It'd be nice for a copy or rename to show up as such in the filename list, and not unnecessarily show a diff containing the entire contents of the file. This information is printed in the header of the patch, so it's very easy for the parser to detect (don't know about other differs; have never used CVS/SVN). I don't see any support for this anywhere else in the diff parsers, and it doesn't look like the code's quite set up to handle it. Thoughts? Thanks, Jeffrey |
|
From: Sreenivasa R. I. <Isr...@hc...> - 2009-09-17 07:07:29
|
I executed this and it says module is okay. Snap shot below.
C:\Documents and Settings\siruvanti\Desktop\codestriker-1.9.9\codestriker-1.9.9\
bin>install.pl
Checking for LWP::UserAgent (any) ok: found v5.826
Checking for CGI (v2.56) ok: found v3.43
Checking for Net::SMTP (any) ok: found v2.31
Checking for MIME::QuotedPrint (v2.14) ok: found v3.07
Checking for DBI (v1.13) ok: found v1.607
Checking for Template (v2.07) ok: found v2.22
Checking for HTML::Entities (any) ok: found v3.60
Checking for File::Temp (any) ok: found v0.18
Checking for XML::RSS (v1.05) ok: not found, optional
Checking for Encode::Byte (any) ok: found v2.03
Checking for Encode::Unicode (any) ok: found v2.05
Version string '-1' contains invalid data; ignoring: '-1' at C:\Documents and Se
ttings\siruvanti\Desktop\codestriker-1.9.9\codestriker-1.9.9\bin\install.pl line
239.
Checking for DBD::Pg (any) ok: found v2.10.0
Checking for Authen::SASL (any) ok: found v2.12
Generating cgi-bin/codestriker.pl file...
Removing old generated templates...
Done
Regards
Sreenivas
-----Original Message-----
From: David Sitsky [mailto:dav...@gm...]
Sent: Thursday, September 17, 2009 12:29 PM
To: Sreenivasa Rao Iruvanti
Cc: cod...@li...
Subject: Re: [Codestriker-user] e-mail configuration doesn't work
Run bin/install.pl - it will show you how to install the Authen::SASL
Perl module.
On Thu, Sep 17, 2009 at 4:52 PM, Sreenivasa Rao Iruvanti
<Isr...@hc...> wrote:
> Hello David,
>
> I tried with another mail server and I'm getting below error. What should I do?
>
> Software error:
> No SASL mechanism found
> at C:/Perl/site/lib/Authen/SASL.pm line 74
> For help, please send mail to the webmaster (sir...@pw...), giving this error message and the time and date of the error.
>
> Regards
> Sreenivas
>
> -----Original Message-----
> From: David Sitsky [mailto:dav...@gm...]
> Sent: Wednesday, September 16, 2009 3:36 PM
> To: Sreenivasa Rao Iruvanti
> Subject: Re: [Codestriker-user] e-mail configuration doesn't work
>
> Can you try another mail server? It is clearly something to do with
> it. No other users report this issue.
>
> On Wed, Sep 16, 2009 at 7:09 PM, Sreenivasa Rao Iruvanti
> <Isr...@hc...> wrote:
>> Hello David,
>>
>> I tried this, but no use. Pl note with or without SMTP authentication I'm able to get create user notification mail.
>>
>> Regards
>> Sreenivas
>>
>> -----Original Message-----
>> From: David Sitsky [mailto:dav...@gm...]
>> Sent: Tuesday, September 15, 2009 12:48 PM
>> To: Sreenivasa Rao Iruvanti
>> Cc: cod...@li...
>> Subject: Re: [Codestriker-user] e-mail configuration doesn't work
>>
>> Usually you need to specify a username/password, so that the SMTP
>> server knows you are authenticated. Can you set the $mailuser and
>> $mailpasswd to some valid values and try again?
>>
>> On Tue, Sep 15, 2009 at 4:15 PM, Sreenivasa Rao
>> Iruvanti<Isr...@hc...> wrote:
>>> Hello David,
>>>
>>>
>>>
>>> Thanks for your reply. Here's the message I'm getting after submit of topic
>>> and review comments. The last line says email has been sent, but actually
>>> not. But this is not true when new user created and mail has been sent
>>> successfully. Pl find attached my codestriker.conf file for your reference.
>>>
>>>
>>>
>>> Couldn't set sender to "sir...@pw..." , The sender is spoofed.
>>>
>>> Topic title: Test topic
>>>
>>> Author: sir...@pw...
>>>
>>> Topic URL:
>>> http://localhost/codestriker/codestriker.pl?action=view&topic=6676330
>>>
>>>
>>>
>>> Email has been sent to: sir...@pw..., amu...@pw...,
>>> gma...@pw...
>>>
>>>
>>>
>>> Regards
>>>
>>> Sreenivas
>>>
>>>
>>>
>>> -----Original Message-----
>>> From: David Sitsky [mailto:dav...@gm...]
>>> Sent: Tuesday, September 15, 2009 11:28 AM
>>> To: Sreenivasa Rao Iruvanti
>>> Cc: cod...@li...
>>> Subject: Re: [Codestriker-user] e-mail configuration doesn't work
>>>
>>>
>>>
>>> Hi Sreenivas,
>>>
>>>
>>>
>>> What error message do you see? Feel free to email me your
>>>
>>> codestriker.conf file so I can see what email settings you are using.
>>>
>>>
>>>
>>> Cheers,
>>>
>>> David
>>>
>>>
>>>
>>> On Tue, Sep 15, 2009 at 3:51 PM, Sreenivasa Rao
>>>
>>> Iruvanti<Isr...@hc...> wrote:
>>>
>>>> I'm sorry. There is a typo in my previous post. Pl correct as below.
>>>
>>>>
>>>
>>>>
>>>
>>>>
>>>
>>>> But same mail notification is not working when new topic is created and
>>>
>>>> review comments given by the reviewer.
>>>
>>>>
>>>
>>>>
>>>
>>>>
>>>
>>>> Regards
>>>
>>>>
>>>
>>>> Sreenivas
>>>
>>>>
>>>
>>>> -----Original Message-----
>>>
>>>> From: Sreenivasa Rao Iruvanti
>>>
>>>> Sent: Tuesday, September 15, 2009 10:51 AM
>>>
>>>> To: 'David Sitsky'
>>>
>>>> Cc: 'cod...@li...'
>>>
>>>> Subject: RE: [Codestriker-user] e-mail configuration doesn't work
>>>
>>>>
>>>
>>>>
>>>
>>>>
>>>
>>>> Hello David,
>>>
>>>>
>>>
>>>>
>>>
>>>>
>>>
>>>> Initially I thought it's issue with mail server. But I'm getting mail
>>>
>>>> notification when I create new user for login. But same mail notification
>>>> is
>>>
>>>> working when new topic is created and review comments given by the
>>>> reviewer.
>>>
>>>> I also have the following configuration values set to 1 which is true.
>>>
>>>>
>>>
>>>>
>>>
>>>>
>>>
>>>> $email_send_options =
>>>
>>>>
>>>
>>>> {
>>>
>>>>
>>>
>>>> comments_sent_to_topic_author => 0,
>>>
>>>>
>>>
>>>> comments_sent_to_commenter => 0,
>>>
>>>>
>>>
>>>> topic_state_change_sent_to_reviewers => 1
>>>
>>>>
>>>
>>>> };
>>>
>>>>
>>>
>>>> We have struck only at this point and hence seeking your help.
>>>
>>>>
>>>
>>>>
>>>
>>>>
>>>
>>>> Regards
>>>
>>>>
>>>
>>>> Sreenivas
>>>
>>>>
>>>
>>>> -----Original Message-----
>>>
>>>>
>>>
>>>> From: Sreenivasa Rao Iruvanti
>>>
>>>>
>>>
>>>> Sent: Wednesday, August 19, 2009 2:26 PM
>>>
>>>>
>>>
>>>> To: 'David Sitsky'
>>>
>>>>
>>>
>>>> Cc: cod...@li...
>>>
>>>>
>>>
>>>> Subject: RE: [Codestriker-user] e-mail configuration doesn't work
>>>
>>>>
>>>
>>>>
>>>
>>>>
>>>
>>>> Yes. I realized this and talking our IT services team.
>>>
>>>>
>>>
>>>>
>>>
>>>>
>>>
>>>> Regards
>>>
>>>>
>>>
>>>> Sreenivas
>>>
>>>>
>>>
>>>>
>>>
>>>>
>>>
>>>> -----Original Message-----
>>>
>>>>
>>>
>>>> From: David Sitsky [mailto:dav...@gm...]
>>>
>>>>
>>>
>>>> Sent: Wednesday, August 19, 2009 2:22 PM
>>>
>>>>
>>>
>>>> To: Sreenivasa Rao Iruvanti
>>>
>>>>
>>>
>>>> Cc: cod...@li...
>>>
>>>>
>>>
>>>> Subject: Re: [Codestriker-user] e-mail configuration doesn't work
>>>
>>>>
>>>
>>>>
>>>
>>>>
>>>
>>>> This is an issue with the mail server you are using. You'd need to
>>>
>>>>
>>>
>>>> look at its config to get this working. Often having email
>>>
>>>>
>>>
>>>> authentication is enough, but it is really server-specific. This has
>>>
>>>>
>>>
>>>> nothing to do with codestriker.
>>>
>>>>
>>>
>>>>
>>>
>>>>
>>>
>>>> On Wed, Aug 19, 2009 at 2:38 PM, Sreenivasa Rao
>>>
>>>>
>>>
>>>> Iruvanti<Isr...@hc...> wrote:
>>>
>>>>
>>>
>>>>> Hello,
>>>
>>>>
>>>
>>>>>
>>>
>>>>
>>>
>>>>>
>>>
>>>>
>>>
>>>>>
>>>
>>>>
>>>
>>>>> I set mail host in codestriker.conf file, but e-mail is not received and
>>>
>>>>> I'm
>>>
>>>>
>>>
>>>>> seeing the following message.
>>>
>>>>
>>>
>>>>>
>>>
>>>>
>>>
>>>>>
>>>
>>>>
>>>
>>>>>
>>>
>>>>
>>>
>>>>> Couldn't set sender to "ab...@xy..." , The sender is spoofed.
>>>
>>>>
>>>
>>>>>
>>>
>>>>
>>>
>>>>>
>>>
>>>>
>>>
>>>>>
>>>
>>>>
>>>
>>>>> What could be the problem.
>>>
>>>>
>>>
>>>>>
>>>
>>>>
>>>
>>>>>
>>>
>>>>
>>>
>>>>>
>>>
>>>>
>>>
>>>>> Regards
>>>
>>>>
>>>
>>>>>
>>>
>>>>
>>>
>>>>> Sreenivas
>>>
>>>>
>>>
>>>>>
>>>
>>>>
>>>
>>>>> DISCLAIMER:
>>>
>>>>
>>>
>>>>>
>>>
>>>>>
>>>>> -----------------------------------------------------------------------------------------------------------------------
>>>
>>>>
>>>
>>>>>
>>>
>>>>
>>>
>>>>> The contents of this e-mail and any attachment(s) are confidential and
>>>
>>>>
>>>
>>>>> intended for the named recipient(s) only.
>>>
>>>>
>>>
>>>>> It shall not attach any liability on the originator or HCL or its
>>>
>>>>
>>>
>>>>> affiliates. Any views or opinions presented in
>>>
>>>>
>>>
>>>>> this email are solely those of the author and may not necessarily reflect
>>>
>>>>
>>>
>>>>> the opinions of HCL or its affiliates.
>>>
>>>>
>>>
>>>>> Any form of reproduction, dissemination, copying, disclosure,
>>>
>>>>> modification,
>>>
>>>>
>>>
>>>>> distribution and / or publication of
>>>
>>>>
>>>
>>>>> this message without the prior written consent of the author of this
>>>
>>>>> e-mail
>>>
>>>>
>>>
>>>>> is strictly prohibited. If you have
>>>
>>>>
>>>
>>>>> received this email in error please delete it and notify the sender
>>>
>>>>
>>>
>>>>> immediately. Before opening any mail and
>>>
>>>>
>>>
>>>>> attachments please check them for viruses and defect.
>>>
>>>>
>>>
>>>>>
>>>
>>>>
>>>
>>>>>
>>>
>>>>>
>>>>> -----------------------------------------------------------------------------------------------------------------------
>>>
>>>>
>>>
>>>>>
>>>
>>>>
>>>
>>>>>
>>>
>>>>>
>>>>> ------------------------------------------------------------------------------
>>>
>>>>
>>>
>>>>> Let Crystal Reports handle the reporting - Free Crystal Reports 2008
>>>
>>>>> 30-Day
>>>
>>>>
>>>
>>>>> trial. Simplify your report design, integration and deployment - and
>>>>> focus
>>>
>>>>
>>>
>>>>> on
>>>
>>>>
>>>
>>>>> what you do best, core application coding. Discover what's new with
>>>
>>>>
>>>
>>>>> Crystal Reports now. http://p.sf.net/sfu/bobj-july
>>>
>>>>
>>>
>>>>> _______________________________________________
>>>
>>>>
>>>
>>>>> Codestriker-user mailing list
>>>
>>>>
>>>
>>>>> Cod...@li...
>>>
>>>>
>>>
>>>>> https://lists.sourceforge.net/lists/listinfo/codestriker-user
>>>
>>>>
>>>
>>>>>
>>>
>>>>
>>>
>>>>>
>>
>>
>
>
|
|
From: David S. <dav...@gm...> - 2009-09-17 06:59:10
|
Run bin/install.pl - it will show you how to install the Authen::SASL
Perl module.
On Thu, Sep 17, 2009 at 4:52 PM, Sreenivasa Rao Iruvanti
<Isr...@hc...> wrote:
> Hello David,
>
> I tried with another mail server and I'm getting below error. What should I do?
>
> Software error:
> No SASL mechanism found
> at C:/Perl/site/lib/Authen/SASL.pm line 74
> For help, please send mail to the webmaster (sir...@pw...), giving this error message and the time and date of the error.
>
> Regards
> Sreenivas
>
> -----Original Message-----
> From: David Sitsky [mailto:dav...@gm...]
> Sent: Wednesday, September 16, 2009 3:36 PM
> To: Sreenivasa Rao Iruvanti
> Subject: Re: [Codestriker-user] e-mail configuration doesn't work
>
> Can you try another mail server? It is clearly something to do with
> it. No other users report this issue.
>
> On Wed, Sep 16, 2009 at 7:09 PM, Sreenivasa Rao Iruvanti
> <Isr...@hc...> wrote:
>> Hello David,
>>
>> I tried this, but no use. Pl note with or without SMTP authentication I'm able to get create user notification mail.
>>
>> Regards
>> Sreenivas
>>
>> -----Original Message-----
>> From: David Sitsky [mailto:dav...@gm...]
>> Sent: Tuesday, September 15, 2009 12:48 PM
>> To: Sreenivasa Rao Iruvanti
>> Cc: cod...@li...
>> Subject: Re: [Codestriker-user] e-mail configuration doesn't work
>>
>> Usually you need to specify a username/password, so that the SMTP
>> server knows you are authenticated. Can you set the $mailuser and
>> $mailpasswd to some valid values and try again?
>>
>> On Tue, Sep 15, 2009 at 4:15 PM, Sreenivasa Rao
>> Iruvanti<Isr...@hc...> wrote:
>>> Hello David,
>>>
>>>
>>>
>>> Thanks for your reply. Here's the message I'm getting after submit of topic
>>> and review comments. The last line says email has been sent, but actually
>>> not. But this is not true when new user created and mail has been sent
>>> successfully. Pl find attached my codestriker.conf file for your reference.
>>>
>>>
>>>
>>> Couldn't set sender to "sir...@pw..." , The sender is spoofed.
>>>
>>> Topic title: Test topic
>>>
>>> Author: sir...@pw...
>>>
>>> Topic URL:
>>> http://localhost/codestriker/codestriker.pl?action=view&topic=6676330
>>>
>>>
>>>
>>> Email has been sent to: sir...@pw..., amu...@pw...,
>>> gma...@pw...
>>>
>>>
>>>
>>> Regards
>>>
>>> Sreenivas
>>>
>>>
>>>
>>> -----Original Message-----
>>> From: David Sitsky [mailto:dav...@gm...]
>>> Sent: Tuesday, September 15, 2009 11:28 AM
>>> To: Sreenivasa Rao Iruvanti
>>> Cc: cod...@li...
>>> Subject: Re: [Codestriker-user] e-mail configuration doesn't work
>>>
>>>
>>>
>>> Hi Sreenivas,
>>>
>>>
>>>
>>> What error message do you see? Feel free to email me your
>>>
>>> codestriker.conf file so I can see what email settings you are using.
>>>
>>>
>>>
>>> Cheers,
>>>
>>> David
>>>
>>>
>>>
>>> On Tue, Sep 15, 2009 at 3:51 PM, Sreenivasa Rao
>>>
>>> Iruvanti<Isr...@hc...> wrote:
>>>
>>>> I'm sorry. There is a typo in my previous post. Pl correct as below.
>>>
>>>>
>>>
>>>>
>>>
>>>>
>>>
>>>> But same mail notification is not working when new topic is created and
>>>
>>>> review comments given by the reviewer.
>>>
>>>>
>>>
>>>>
>>>
>>>>
>>>
>>>> Regards
>>>
>>>>
>>>
>>>> Sreenivas
>>>
>>>>
>>>
>>>> -----Original Message-----
>>>
>>>> From: Sreenivasa Rao Iruvanti
>>>
>>>> Sent: Tuesday, September 15, 2009 10:51 AM
>>>
>>>> To: 'David Sitsky'
>>>
>>>> Cc: 'cod...@li...'
>>>
>>>> Subject: RE: [Codestriker-user] e-mail configuration doesn't work
>>>
>>>>
>>>
>>>>
>>>
>>>>
>>>
>>>> Hello David,
>>>
>>>>
>>>
>>>>
>>>
>>>>
>>>
>>>> Initially I thought it's issue with mail server. But I'm getting mail
>>>
>>>> notification when I create new user for login. But same mail notification
>>>> is
>>>
>>>> working when new topic is created and review comments given by the
>>>> reviewer.
>>>
>>>> I also have the following configuration values set to 1 which is true.
>>>
>>>>
>>>
>>>>
>>>
>>>>
>>>
>>>> $email_send_options =
>>>
>>>>
>>>
>>>> {
>>>
>>>>
>>>
>>>> comments_sent_to_topic_author => 0,
>>>
>>>>
>>>
>>>> comments_sent_to_commenter => 0,
>>>
>>>>
>>>
>>>> topic_state_change_sent_to_reviewers => 1
>>>
>>>>
>>>
>>>> };
>>>
>>>>
>>>
>>>> We have struck only at this point and hence seeking your help.
>>>
>>>>
>>>
>>>>
>>>
>>>>
>>>
>>>> Regards
>>>
>>>>
>>>
>>>> Sreenivas
>>>
>>>>
>>>
>>>> -----Original Message-----
>>>
>>>>
>>>
>>>> From: Sreenivasa Rao Iruvanti
>>>
>>>>
>>>
>>>> Sent: Wednesday, August 19, 2009 2:26 PM
>>>
>>>>
>>>
>>>> To: 'David Sitsky'
>>>
>>>>
>>>
>>>> Cc: cod...@li...
>>>
>>>>
>>>
>>>> Subject: RE: [Codestriker-user] e-mail configuration doesn't work
>>>
>>>>
>>>
>>>>
>>>
>>>>
>>>
>>>> Yes. I realized this and talking our IT services team.
>>>
>>>>
>>>
>>>>
>>>
>>>>
>>>
>>>> Regards
>>>
>>>>
>>>
>>>> Sreenivas
>>>
>>>>
>>>
>>>>
>>>
>>>>
>>>
>>>> -----Original Message-----
>>>
>>>>
>>>
>>>> From: David Sitsky [mailto:dav...@gm...]
>>>
>>>>
>>>
>>>> Sent: Wednesday, August 19, 2009 2:22 PM
>>>
>>>>
>>>
>>>> To: Sreenivasa Rao Iruvanti
>>>
>>>>
>>>
>>>> Cc: cod...@li...
>>>
>>>>
>>>
>>>> Subject: Re: [Codestriker-user] e-mail configuration doesn't work
>>>
>>>>
>>>
>>>>
>>>
>>>>
>>>
>>>> This is an issue with the mail server you are using. You'd need to
>>>
>>>>
>>>
>>>> look at its config to get this working. Often having email
>>>
>>>>
>>>
>>>> authentication is enough, but it is really server-specific. This has
>>>
>>>>
>>>
>>>> nothing to do with codestriker.
>>>
>>>>
>>>
>>>>
>>>
>>>>
>>>
>>>> On Wed, Aug 19, 2009 at 2:38 PM, Sreenivasa Rao
>>>
>>>>
>>>
>>>> Iruvanti<Isr...@hc...> wrote:
>>>
>>>>
>>>
>>>>> Hello,
>>>
>>>>
>>>
>>>>>
>>>
>>>>
>>>
>>>>>
>>>
>>>>
>>>
>>>>>
>>>
>>>>
>>>
>>>>> I set mail host in codestriker.conf file, but e-mail is not received and
>>>
>>>>> I'm
>>>
>>>>
>>>
>>>>> seeing the following message.
>>>
>>>>
>>>
>>>>>
>>>
>>>>
>>>
>>>>>
>>>
>>>>
>>>
>>>>>
>>>
>>>>
>>>
>>>>> Couldn't set sender to "ab...@xy..." , The sender is spoofed.
>>>
>>>>
>>>
>>>>>
>>>
>>>>
>>>
>>>>>
>>>
>>>>
>>>
>>>>>
>>>
>>>>
>>>
>>>>> What could be the problem.
>>>
>>>>
>>>
>>>>>
>>>
>>>>
>>>
>>>>>
>>>
>>>>
>>>
>>>>>
>>>
>>>>
>>>
>>>>> Regards
>>>
>>>>
>>>
>>>>>
>>>
>>>>
>>>
>>>>> Sreenivas
>>>
>>>>
>>>
>>>>>
>>>
>>>>
>>>
>>>>> DISCLAIMER:
>>>
>>>>
>>>
>>>>>
>>>
>>>>>
>>>>> -----------------------------------------------------------------------------------------------------------------------
>>>
>>>>
>>>
>>>>>
>>>
>>>>
>>>
>>>>> The contents of this e-mail and any attachment(s) are confidential and
>>>
>>>>
>>>
>>>>> intended for the named recipient(s) only.
>>>
>>>>
>>>
>>>>> It shall not attach any liability on the originator or HCL or its
>>>
>>>>
>>>
>>>>> affiliates. Any views or opinions presented in
>>>
>>>>
>>>
>>>>> this email are solely those of the author and may not necessarily reflect
>>>
>>>>
>>>
>>>>> the opinions of HCL or its affiliates.
>>>
>>>>
>>>
>>>>> Any form of reproduction, dissemination, copying, disclosure,
>>>
>>>>> modification,
>>>
>>>>
>>>
>>>>> distribution and / or publication of
>>>
>>>>
>>>
>>>>> this message without the prior written consent of the author of this
>>>
>>>>> e-mail
>>>
>>>>
>>>
>>>>> is strictly prohibited. If you have
>>>
>>>>
>>>
>>>>> received this email in error please delete it and notify the sender
>>>
>>>>
>>>
>>>>> immediately. Before opening any mail and
>>>
>>>>
>>>
>>>>> attachments please check them for viruses and defect.
>>>
>>>>
>>>
>>>>>
>>>
>>>>
>>>
>>>>>
>>>
>>>>>
>>>>> -----------------------------------------------------------------------------------------------------------------------
>>>
>>>>
>>>
>>>>>
>>>
>>>>
>>>
>>>>>
>>>
>>>>>
>>>>> ------------------------------------------------------------------------------
>>>
>>>>
>>>
>>>>> Let Crystal Reports handle the reporting - Free Crystal Reports 2008
>>>
>>>>> 30-Day
>>>
>>>>
>>>
>>>>> trial. Simplify your report design, integration and deployment - and
>>>>> focus
>>>
>>>>
>>>
>>>>> on
>>>
>>>>
>>>
>>>>> what you do best, core application coding. Discover what's new with
>>>
>>>>
>>>
>>>>> Crystal Reports now. http://p.sf.net/sfu/bobj-july
>>>
>>>>
>>>
>>>>> _______________________________________________
>>>
>>>>
>>>
>>>>> Codestriker-user mailing list
>>>
>>>>
>>>
>>>>> Cod...@li...
>>>
>>>>
>>>
>>>>> https://lists.sourceforge.net/lists/listinfo/codestriker-user
>>>
>>>>
>>>
>>>>>
>>>
>>>>
>>>
>>>>>
>>
>>
>
>
|
|
From: Sreenivasa R. I. <Isr...@hc...> - 2009-09-17 06:53:56
|
Hello David,
I tried with another mail server and I'm getting below error. What should I do?
Software error:
No SASL mechanism found
at C:/Perl/site/lib/Authen/SASL.pm line 74
For help, please send mail to the webmaster (sir...@pw...), giving this error message and the time and date of the error.
Regards
Sreenivas
-----Original Message-----
From: David Sitsky [mailto:dav...@gm...]
Sent: Wednesday, September 16, 2009 3:36 PM
To: Sreenivasa Rao Iruvanti
Subject: Re: [Codestriker-user] e-mail configuration doesn't work
Can you try another mail server? It is clearly something to do with
it. No other users report this issue.
On Wed, Sep 16, 2009 at 7:09 PM, Sreenivasa Rao Iruvanti
<Isr...@hc...> wrote:
> Hello David,
>
> I tried this, but no use. Pl note with or without SMTP authentication I'm able to get create user notification mail.
>
> Regards
> Sreenivas
>
> -----Original Message-----
> From: David Sitsky [mailto:dav...@gm...]
> Sent: Tuesday, September 15, 2009 12:48 PM
> To: Sreenivasa Rao Iruvanti
> Cc: cod...@li...
> Subject: Re: [Codestriker-user] e-mail configuration doesn't work
>
> Usually you need to specify a username/password, so that the SMTP
> server knows you are authenticated. Can you set the $mailuser and
> $mailpasswd to some valid values and try again?
>
> On Tue, Sep 15, 2009 at 4:15 PM, Sreenivasa Rao
> Iruvanti<Isr...@hc...> wrote:
>> Hello David,
>>
>>
>>
>> Thanks for your reply. Here's the message I'm getting after submit of topic
>> and review comments. The last line says email has been sent, but actually
>> not. But this is not true when new user created and mail has been sent
>> successfully. Pl find attached my codestriker.conf file for your reference.
>>
>>
>>
>> Couldn't set sender to "sir...@pw..." , The sender is spoofed.
>>
>> Topic title: Test topic
>>
>> Author: sir...@pw...
>>
>> Topic URL:
>> http://localhost/codestriker/codestriker.pl?action=view&topic=6676330
>>
>>
>>
>> Email has been sent to: sir...@pw..., amu...@pw...,
>> gma...@pw...
>>
>>
>>
>> Regards
>>
>> Sreenivas
>>
>>
>>
>> -----Original Message-----
>> From: David Sitsky [mailto:dav...@gm...]
>> Sent: Tuesday, September 15, 2009 11:28 AM
>> To: Sreenivasa Rao Iruvanti
>> Cc: cod...@li...
>> Subject: Re: [Codestriker-user] e-mail configuration doesn't work
>>
>>
>>
>> Hi Sreenivas,
>>
>>
>>
>> What error message do you see? Feel free to email me your
>>
>> codestriker.conf file so I can see what email settings you are using.
>>
>>
>>
>> Cheers,
>>
>> David
>>
>>
>>
>> On Tue, Sep 15, 2009 at 3:51 PM, Sreenivasa Rao
>>
>> Iruvanti<Isr...@hc...> wrote:
>>
>>> I'm sorry. There is a typo in my previous post. Pl correct as below.
>>
>>>
>>
>>>
>>
>>>
>>
>>> But same mail notification is not working when new topic is created and
>>
>>> review comments given by the reviewer.
>>
>>>
>>
>>>
>>
>>>
>>
>>> Regards
>>
>>>
>>
>>> Sreenivas
>>
>>>
>>
>>> -----Original Message-----
>>
>>> From: Sreenivasa Rao Iruvanti
>>
>>> Sent: Tuesday, September 15, 2009 10:51 AM
>>
>>> To: 'David Sitsky'
>>
>>> Cc: 'cod...@li...'
>>
>>> Subject: RE: [Codestriker-user] e-mail configuration doesn't work
>>
>>>
>>
>>>
>>
>>>
>>
>>> Hello David,
>>
>>>
>>
>>>
>>
>>>
>>
>>> Initially I thought it's issue with mail server. But I'm getting mail
>>
>>> notification when I create new user for login. But same mail notification
>>> is
>>
>>> working when new topic is created and review comments given by the
>>> reviewer.
>>
>>> I also have the following configuration values set to 1 which is true.
>>
>>>
>>
>>>
>>
>>>
>>
>>> $email_send_options =
>>
>>>
>>
>>> {
>>
>>>
>>
>>> comments_sent_to_topic_author => 0,
>>
>>>
>>
>>> comments_sent_to_commenter => 0,
>>
>>>
>>
>>> topic_state_change_sent_to_reviewers => 1
>>
>>>
>>
>>> };
>>
>>>
>>
>>> We have struck only at this point and hence seeking your help.
>>
>>>
>>
>>>
>>
>>>
>>
>>> Regards
>>
>>>
>>
>>> Sreenivas
>>
>>>
>>
>>> -----Original Message-----
>>
>>>
>>
>>> From: Sreenivasa Rao Iruvanti
>>
>>>
>>
>>> Sent: Wednesday, August 19, 2009 2:26 PM
>>
>>>
>>
>>> To: 'David Sitsky'
>>
>>>
>>
>>> Cc: cod...@li...
>>
>>>
>>
>>> Subject: RE: [Codestriker-user] e-mail configuration doesn't work
>>
>>>
>>
>>>
>>
>>>
>>
>>> Yes. I realized this and talking our IT services team.
>>
>>>
>>
>>>
>>
>>>
>>
>>> Regards
>>
>>>
>>
>>> Sreenivas
>>
>>>
>>
>>>
>>
>>>
>>
>>> -----Original Message-----
>>
>>>
>>
>>> From: David Sitsky [mailto:dav...@gm...]
>>
>>>
>>
>>> Sent: Wednesday, August 19, 2009 2:22 PM
>>
>>>
>>
>>> To: Sreenivasa Rao Iruvanti
>>
>>>
>>
>>> Cc: cod...@li...
>>
>>>
>>
>>> Subject: Re: [Codestriker-user] e-mail configuration doesn't work
>>
>>>
>>
>>>
>>
>>>
>>
>>> This is an issue with the mail server you are using. You'd need to
>>
>>>
>>
>>> look at its config to get this working. Often having email
>>
>>>
>>
>>> authentication is enough, but it is really server-specific. This has
>>
>>>
>>
>>> nothing to do with codestriker.
>>
>>>
>>
>>>
>>
>>>
>>
>>> On Wed, Aug 19, 2009 at 2:38 PM, Sreenivasa Rao
>>
>>>
>>
>>> Iruvanti<Isr...@hc...> wrote:
>>
>>>
>>
>>>> Hello,
>>
>>>
>>
>>>>
>>
>>>
>>
>>>>
>>
>>>
>>
>>>>
>>
>>>
>>
>>>> I set mail host in codestriker.conf file, but e-mail is not received and
>>
>>>> I'm
>>
>>>
>>
>>>> seeing the following message.
>>
>>>
>>
>>>>
>>
>>>
>>
>>>>
>>
>>>
>>
>>>>
>>
>>>
>>
>>>> Couldn't set sender to "ab...@xy..." , The sender is spoofed.
>>
>>>
>>
>>>>
>>
>>>
>>
>>>>
>>
>>>
>>
>>>>
>>
>>>
>>
>>>> What could be the problem.
>>
>>>
>>
>>>>
>>
>>>
>>
>>>>
>>
>>>
>>
>>>>
>>
>>>
>>
>>>> Regards
>>
>>>
>>
>>>>
>>
>>>
>>
>>>> Sreenivas
>>
>>>
>>
>>>>
>>
>>>
>>
>>>> DISCLAIMER:
>>
>>>
>>
>>>>
>>
>>>>
>>>> -----------------------------------------------------------------------------------------------------------------------
>>
>>>
>>
>>>>
>>
>>>
>>
>>>> The contents of this e-mail and any attachment(s) are confidential and
>>
>>>
>>
>>>> intended for the named recipient(s) only.
>>
>>>
>>
>>>> It shall not attach any liability on the originator or HCL or its
>>
>>>
>>
>>>> affiliates. Any views or opinions presented in
>>
>>>
>>
>>>> this email are solely those of the author and may not necessarily reflect
>>
>>>
>>
>>>> the opinions of HCL or its affiliates.
>>
>>>
>>
>>>> Any form of reproduction, dissemination, copying, disclosure,
>>
>>>> modification,
>>
>>>
>>
>>>> distribution and / or publication of
>>
>>>
>>
>>>> this message without the prior written consent of the author of this
>>
>>>> e-mail
>>
>>>
>>
>>>> is strictly prohibited. If you have
>>
>>>
>>
>>>> received this email in error please delete it and notify the sender
>>
>>>
>>
>>>> immediately. Before opening any mail and
>>
>>>
>>
>>>> attachments please check them for viruses and defect.
>>
>>>
>>
>>>>
>>
>>>
>>
>>>>
>>
>>>>
>>>> -----------------------------------------------------------------------------------------------------------------------
>>
>>>
>>
>>>>
>>
>>>
>>
>>>>
>>
>>>>
>>>> ------------------------------------------------------------------------------
>>
>>>
>>
>>>> Let Crystal Reports handle the reporting - Free Crystal Reports 2008
>>
>>>> 30-Day
>>
>>>
>>
>>>> trial. Simplify your report design, integration and deployment - and
>>>> focus
>>
>>>
>>
>>>> on
>>
>>>
>>
>>>> what you do best, core application coding. Discover what's new with
>>
>>>
>>
>>>> Crystal Reports now. http://p.sf.net/sfu/bobj-july
>>
>>>
>>
>>>> _______________________________________________
>>
>>>
>>
>>>> Codestriker-user mailing list
>>
>>>
>>
>>>> Cod...@li...
>>
>>>
>>
>>>> https://lists.sourceforge.net/lists/listinfo/codestriker-user
>>
>>>
>>
>>>>
>>
>>>
>>
>>>>
>
>
|
|
From: Sreenivasa R. I. <Isr...@hc...> - 2009-09-16 09:09:57
|
Hello David,
I tried this, but no use. Pl note with or without SMTP authentication I'm able to get create user notification mail.
Regards
Sreenivas
-----Original Message-----
From: David Sitsky [mailto:dav...@gm...]
Sent: Tuesday, September 15, 2009 12:48 PM
To: Sreenivasa Rao Iruvanti
Cc: cod...@li...
Subject: Re: [Codestriker-user] e-mail configuration doesn't work
Usually you need to specify a username/password, so that the SMTP
server knows you are authenticated. Can you set the $mailuser and
$mailpasswd to some valid values and try again?
On Tue, Sep 15, 2009 at 4:15 PM, Sreenivasa Rao
Iruvanti<Isr...@hc...> wrote:
> Hello David,
>
>
>
> Thanks for your reply. Here's the message I'm getting after submit of topic
> and review comments. The last line says email has been sent, but actually
> not. But this is not true when new user created and mail has been sent
> successfully. Pl find attached my codestriker.conf file for your reference.
>
>
>
> Couldn't set sender to "sir...@pw..." , The sender is spoofed.
>
> Topic title: Test topic
>
> Author: sir...@pw...
>
> Topic URL:
> http://localhost/codestriker/codestriker.pl?action=view&topic=6676330
>
>
>
> Email has been sent to: sir...@pw..., amu...@pw...,
> gma...@pw...
>
>
>
> Regards
>
> Sreenivas
>
>
>
> -----Original Message-----
> From: David Sitsky [mailto:dav...@gm...]
> Sent: Tuesday, September 15, 2009 11:28 AM
> To: Sreenivasa Rao Iruvanti
> Cc: cod...@li...
> Subject: Re: [Codestriker-user] e-mail configuration doesn't work
>
>
>
> Hi Sreenivas,
>
>
>
> What error message do you see? Feel free to email me your
>
> codestriker.conf file so I can see what email settings you are using.
>
>
>
> Cheers,
>
> David
>
>
>
> On Tue, Sep 15, 2009 at 3:51 PM, Sreenivasa Rao
>
> Iruvanti<Isr...@hc...> wrote:
>
>> I'm sorry. There is a typo in my previous post. Pl correct as below.
>
>>
>
>>
>
>>
>
>> But same mail notification is not working when new topic is created and
>
>> review comments given by the reviewer.
>
>>
>
>>
>
>>
>
>> Regards
>
>>
>
>> Sreenivas
>
>>
>
>> -----Original Message-----
>
>> From: Sreenivasa Rao Iruvanti
>
>> Sent: Tuesday, September 15, 2009 10:51 AM
>
>> To: 'David Sitsky'
>
>> Cc: 'cod...@li...'
>
>> Subject: RE: [Codestriker-user] e-mail configuration doesn't work
>
>>
>
>>
>
>>
>
>> Hello David,
>
>>
>
>>
>
>>
>
>> Initially I thought it's issue with mail server. But I'm getting mail
>
>> notification when I create new user for login. But same mail notification
>> is
>
>> working when new topic is created and review comments given by the
>> reviewer.
>
>> I also have the following configuration values set to 1 which is true.
>
>>
>
>>
>
>>
>
>> $email_send_options =
>
>>
>
>> {
>
>>
>
>> comments_sent_to_topic_author => 0,
>
>>
>
>> comments_sent_to_commenter => 0,
>
>>
>
>> topic_state_change_sent_to_reviewers => 1
>
>>
>
>> };
>
>>
>
>> We have struck only at this point and hence seeking your help.
>
>>
>
>>
>
>>
>
>> Regards
>
>>
>
>> Sreenivas
>
>>
>
>> -----Original Message-----
>
>>
>
>> From: Sreenivasa Rao Iruvanti
>
>>
>
>> Sent: Wednesday, August 19, 2009 2:26 PM
>
>>
>
>> To: 'David Sitsky'
>
>>
>
>> Cc: cod...@li...
>
>>
>
>> Subject: RE: [Codestriker-user] e-mail configuration doesn't work
>
>>
>
>>
>
>>
>
>> Yes. I realized this and talking our IT services team.
>
>>
>
>>
>
>>
>
>> Regards
>
>>
>
>> Sreenivas
>
>>
>
>>
>
>>
>
>> -----Original Message-----
>
>>
>
>> From: David Sitsky [mailto:dav...@gm...]
>
>>
>
>> Sent: Wednesday, August 19, 2009 2:22 PM
>
>>
>
>> To: Sreenivasa Rao Iruvanti
>
>>
>
>> Cc: cod...@li...
>
>>
>
>> Subject: Re: [Codestriker-user] e-mail configuration doesn't work
>
>>
>
>>
>
>>
>
>> This is an issue with the mail server you are using. You'd need to
>
>>
>
>> look at its config to get this working. Often having email
>
>>
>
>> authentication is enough, but it is really server-specific. This has
>
>>
>
>> nothing to do with codestriker.
>
>>
>
>>
>
>>
>
>> On Wed, Aug 19, 2009 at 2:38 PM, Sreenivasa Rao
>
>>
>
>> Iruvanti<Isr...@hc...> wrote:
>
>>
>
>>> Hello,
>
>>
>
>>>
>
>>
>
>>>
>
>>
>
>>>
>
>>
>
>>> I set mail host in codestriker.conf file, but e-mail is not received and
>
>>> I'm
>
>>
>
>>> seeing the following message.
>
>>
>
>>>
>
>>
>
>>>
>
>>
>
>>>
>
>>
>
>>> Couldn't set sender to "ab...@xy..." , The sender is spoofed.
>
>>
>
>>>
>
>>
>
>>>
>
>>
>
>>>
>
>>
>
>>> What could be the problem.
>
>>
>
>>>
>
>>
>
>>>
>
>>
>
>>>
>
>>
>
>>> Regards
>
>>
>
>>>
>
>>
>
>>> Sreenivas
>
>>
>
>>>
>
>>
>
>>> DISCLAIMER:
>
>>
>
>>>
>
>>>
>>> -----------------------------------------------------------------------------------------------------------------------
>
>>
>
>>>
>
>>
>
>>> The contents of this e-mail and any attachment(s) are confidential and
>
>>
>
>>> intended for the named recipient(s) only.
>
>>
>
>>> It shall not attach any liability on the originator or HCL or its
>
>>
>
>>> affiliates. Any views or opinions presented in
>
>>
>
>>> this email are solely those of the author and may not necessarily reflect
>
>>
>
>>> the opinions of HCL or its affiliates.
>
>>
>
>>> Any form of reproduction, dissemination, copying, disclosure,
>
>>> modification,
>
>>
>
>>> distribution and / or publication of
>
>>
>
>>> this message without the prior written consent of the author of this
>
>>> e-mail
>
>>
>
>>> is strictly prohibited. If you have
>
>>
>
>>> received this email in error please delete it and notify the sender
>
>>
>
>>> immediately. Before opening any mail and
>
>>
>
>>> attachments please check them for viruses and defect.
>
>>
>
>>>
>
>>
>
>>>
>
>>>
>>> -----------------------------------------------------------------------------------------------------------------------
>
>>
>
>>>
>
>>
>
>>>
>
>>>
>>> ------------------------------------------------------------------------------
>
>>
>
>>> Let Crystal Reports handle the reporting - Free Crystal Reports 2008
>
>>> 30-Day
>
>>
>
>>> trial. Simplify your report design, integration and deployment - and
>>> focus
>
>>
>
>>> on
>
>>
>
>>> what you do best, core application coding. Discover what's new with
>
>>
>
>>> Crystal Reports now. http://p.sf.net/sfu/bobj-july
>
>>
>
>>> _______________________________________________
>
>>
>
>>> Codestriker-user mailing list
>
>>
>
>>> Cod...@li...
>
>>
>
>>> https://lists.sourceforge.net/lists/listinfo/codestriker-user
>
>>
>
>>>
>
>>
>
>>>
|
|
From: David S. <dav...@gm...> - 2009-09-15 07:17:56
|
Usually you need to specify a username/password, so that the SMTP
server knows you are authenticated. Can you set the $mailuser and
$mailpasswd to some valid values and try again?
On Tue, Sep 15, 2009 at 4:15 PM, Sreenivasa Rao
Iruvanti<Isr...@hc...> wrote:
> Hello David,
>
>
>
> Thanks for your reply. Here's the message I'm getting after submit of topic
> and review comments. The last line says email has been sent, but actually
> not. But this is not true when new user created and mail has been sent
> successfully. Pl find attached my codestriker.conf file for your reference.
>
>
>
> Couldn't set sender to "sir...@pw..." , The sender is spoofed.
>
> Topic title: Test topic
>
> Author: sir...@pw...
>
> Topic URL:
> http://localhost/codestriker/codestriker.pl?action=view&topic=6676330
>
>
>
> Email has been sent to: sir...@pw..., amu...@pw...,
> gma...@pw...
>
>
>
> Regards
>
> Sreenivas
>
>
>
> -----Original Message-----
> From: David Sitsky [mailto:dav...@gm...]
> Sent: Tuesday, September 15, 2009 11:28 AM
> To: Sreenivasa Rao Iruvanti
> Cc: cod...@li...
> Subject: Re: [Codestriker-user] e-mail configuration doesn't work
>
>
>
> Hi Sreenivas,
>
>
>
> What error message do you see? Feel free to email me your
>
> codestriker.conf file so I can see what email settings you are using.
>
>
>
> Cheers,
>
> David
>
>
>
> On Tue, Sep 15, 2009 at 3:51 PM, Sreenivasa Rao
>
> Iruvanti<Isr...@hc...> wrote:
>
>> I'm sorry. There is a typo in my previous post. Pl correct as below.
>
>>
>
>>
>
>>
>
>> But same mail notification is not working when new topic is created and
>
>> review comments given by the reviewer.
>
>>
>
>>
>
>>
>
>> Regards
>
>>
>
>> Sreenivas
>
>>
>
>> -----Original Message-----
>
>> From: Sreenivasa Rao Iruvanti
>
>> Sent: Tuesday, September 15, 2009 10:51 AM
>
>> To: 'David Sitsky'
>
>> Cc: 'cod...@li...'
>
>> Subject: RE: [Codestriker-user] e-mail configuration doesn't work
>
>>
>
>>
>
>>
>
>> Hello David,
>
>>
>
>>
>
>>
>
>> Initially I thought it's issue with mail server. But I'm getting mail
>
>> notification when I create new user for login. But same mail notification
>> is
>
>> working when new topic is created and review comments given by the
>> reviewer.
>
>> I also have the following configuration values set to 1 which is true.
>
>>
>
>>
>
>>
>
>> $email_send_options =
>
>>
>
>> {
>
>>
>
>> comments_sent_to_topic_author => 0,
>
>>
>
>> comments_sent_to_commenter => 0,
>
>>
>
>> topic_state_change_sent_to_reviewers => 1
>
>>
>
>> };
>
>>
>
>> We have struck only at this point and hence seeking your help.
>
>>
>
>>
>
>>
>
>> Regards
>
>>
>
>> Sreenivas
>
>>
>
>> -----Original Message-----
>
>>
>
>> From: Sreenivasa Rao Iruvanti
>
>>
>
>> Sent: Wednesday, August 19, 2009 2:26 PM
>
>>
>
>> To: 'David Sitsky'
>
>>
>
>> Cc: cod...@li...
>
>>
>
>> Subject: RE: [Codestriker-user] e-mail configuration doesn't work
>
>>
>
>>
>
>>
>
>> Yes. I realized this and talking our IT services team.
>
>>
>
>>
>
>>
>
>> Regards
>
>>
>
>> Sreenivas
>
>>
>
>>
>
>>
>
>> -----Original Message-----
>
>>
>
>> From: David Sitsky [mailto:dav...@gm...]
>
>>
>
>> Sent: Wednesday, August 19, 2009 2:22 PM
>
>>
>
>> To: Sreenivasa Rao Iruvanti
>
>>
>
>> Cc: cod...@li...
>
>>
>
>> Subject: Re: [Codestriker-user] e-mail configuration doesn't work
>
>>
>
>>
>
>>
>
>> This is an issue with the mail server you are using. You'd need to
>
>>
>
>> look at its config to get this working. Often having email
>
>>
>
>> authentication is enough, but it is really server-specific. This has
>
>>
>
>> nothing to do with codestriker.
>
>>
>
>>
>
>>
>
>> On Wed, Aug 19, 2009 at 2:38 PM, Sreenivasa Rao
>
>>
>
>> Iruvanti<Isr...@hc...> wrote:
>
>>
>
>>> Hello,
>
>>
>
>>>
>
>>
>
>>>
>
>>
>
>>>
>
>>
>
>>> I set mail host in codestriker.conf file, but e-mail is not received and
>
>>> I’m
>
>>
>
>>> seeing the following message.
>
>>
>
>>>
>
>>
>
>>>
>
>>
>
>>>
>
>>
>
>>> Couldn't set sender to "ab...@xy..." , The sender is spoofed.
>
>>
>
>>>
>
>>
>
>>>
>
>>
>
>>>
>
>>
>
>>> What could be the problem.
>
>>
>
>>>
>
>>
>
>>>
>
>>
>
>>>
>
>>
>
>>> Regards
>
>>
>
>>>
>
>>
>
>>> Sreenivas
>
>>
>
>>>
>
>>
>
>>> DISCLAIMER:
>
>>
>
>>>
>
>>>
>>> -----------------------------------------------------------------------------------------------------------------------
>
>>
>
>>>
>
>>
>
>>> The contents of this e-mail and any attachment(s) are confidential and
>
>>
>
>>> intended for the named recipient(s) only.
>
>>
>
>>> It shall not attach any liability on the originator or HCL or its
>
>>
>
>>> affiliates. Any views or opinions presented in
>
>>
>
>>> this email are solely those of the author and may not necessarily reflect
>
>>
>
>>> the opinions of HCL or its affiliates.
>
>>
>
>>> Any form of reproduction, dissemination, copying, disclosure,
>
>>> modification,
>
>>
>
>>> distribution and / or publication of
>
>>
>
>>> this message without the prior written consent of the author of this
>
>>> e-mail
>
>>
>
>>> is strictly prohibited. If you have
>
>>
>
>>> received this email in error please delete it and notify the sender
>
>>
>
>>> immediately. Before opening any mail and
>
>>
>
>>> attachments please check them for viruses and defect.
>
>>
>
>>>
>
>>
>
>>>
>
>>>
>>> -----------------------------------------------------------------------------------------------------------------------
>
>>
>
>>>
>
>>
>
>>>
>
>>>
>>> ------------------------------------------------------------------------------
>
>>
>
>>> Let Crystal Reports handle the reporting - Free Crystal Reports 2008
>
>>> 30-Day
>
>>
>
>>> trial. Simplify your report design, integration and deployment - and
>>> focus
>
>>
>
>>> on
>
>>
>
>>> what you do best, core application coding. Discover what's new with
>
>>
>
>>> Crystal Reports now. http://p.sf.net/sfu/bobj-july
>
>>
>
>>> _______________________________________________
>
>>
>
>>> Codestriker-user mailing list
>
>>
>
>>> Cod...@li...
>
>>
>
>>> https://lists.sourceforge.net/lists/listinfo/codestriker-user
>
>>
>
>>>
>
>>
>
>>>
|