Fine-tuning email settings

2011-01-19 Thread Tristan Crockett
Is there a way to fine-tune the instances when Reviewboard sends emails? Currently it seems to send when review requests are generated and when reviews are added, but not when comments are added to reviews. There don't seem to be any configuration options. We're using 1.5.2. -- Want to help the

Cannot add repository with cvs ext in 1.5.2 on RHEL5

2011-01-19 Thread praveen kumar
Hi All, i am trying to add a cvs repository with ssh (ext). I have tried with ssh keys and just plain password. With both options it is authenticating successfully. However, the Add Repository page gives the error A repository was not found at the specified path. I have looked at most of the

Re: Fine-tuning email settings

2011-01-19 Thread David Trowbridge
There's no fine-grained control of this. Review Board should send email whenever anyone clicks publish, whether it's on a review or a reply to a review. If the latter isn't working, it's possible something is broken. Can you check your httpd logs and see if there are any errors in there? -David

GIT: Configuring repos

2011-01-19 Thread Sapna Vempati
Hi Christian, We have around 200 GIT repos that we need to configure on RB, using the web interface. Right now for testing I adding a few repos individually. Is there any other way we can do this from the backend, so it can be done faster ? Thanks, Sapna. -- Want to help the Review Board

Re: GIT: Configuring repos

2011-01-19 Thread Christian Hammond
There's nothing we provide to batch-add repositories. There are two possible solutions though: 1) Write a script that does the HTTP POST to the Add Repository page. I don't know exactly what the form content would look like, so you'd need to add some in the web UI and see what gets sent over the

Help with sqlite

2011-01-19 Thread Aravind
If you’re using SQLite as your database, you will also need to change the ownership of the site’s db directory to match the web server’s user. Otherwise, you may receive an Internal Server Error when accessing the site. I am new to linux and found the above statement in review board installment

Re: Help with sqlite

2011-01-19 Thread Christian Hammond
Hi Aravind, Actually, let me first advise you not to use SQLite for anything other than a very simple test installation. If you do, don't expect to migrate the data to another database. SQLite doesn't really scale for any more than a couple users. I recommend MySQL or PostgreSQL. What that

Re: Help with sqlite

2011-01-19 Thread Aravind
@ christian - Thank you for ur help. Actually i asked that question because i was having a problem opening the site in browser. I was getting an error : Review Board is taking a nap. I thought changing the ownership might be the problem, but even after changing the ownership it is not working. Can

Re: Help with sqlite

2011-01-19 Thread Christian Hammond
Check your web server's error log and see if there are any errors there. If not, edit your site's conf/settings_local.py file and set DEBUG to True (capital T). Then restart the web server and try again. You should have something more useful to help diagnose the problem. If it's not obvious