Thursday, May 1, 2008

[Registry] Application Path and Their Uninstallers

hi frnds,
this is a registry path where all the programs main application paths are stored..
HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\App Paths

and this is the location where uninstaller information is placed..
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall

thanks.

--
Ravi Kr. Gupta
Lnmiit, Jaipur
http://techdc.blogspot.com

Saturday, April 26, 2008

C# DataGrid with DataSet

C# DataGrid with DataSet

Wednesday, April 23, 2008

Get all tutes u may need...

hi frnds,

this is a website known to have a collection of good tutorials.. these may not be standard but these are tutorials submitted by users... and if u browse the net for tutes u know we always look for such tutes instead of books etc.

here is the link KYNOU

if u know such more sites.. then please write in the comments..
thanks.
-Ravi kumar Gupta

Thursday, April 17, 2008

NetBeans Quiz !!!

hi frnds,

have u ever used netbeans... no!! why man... use it now... and install a plugin for "netbeans quiz"

this gives a lots of opportunities to win prizes every week...
Everything that u need.. u will find here..
just have a look at NetBeans Quiz

enjoy
Ravi Kumar Gupta
aka "D'Maverick"

Did you see something.. Google is hiring!!!

hi frnds,
wanna do a job in google... have u noticed something





have a look at this.. Google is hiring

apply on hiring page.
check out jobs page and send in your resume.

enjoy

Sunday, April 13, 2008

Run and Provide : A very basic mail server for intranet using postfix + dovecot + cyrus-imapd + squirrelmail

hi frnds,
i m assuming tht u have a linux installed (fully) but not configured.. ok

assuming hostname = maverick.co.in
so here we go..
u will have postfix, dovecot, cyrus-imapd, squirrel mail, httpd.. i mean web server pre-installed


lets first enable postfix
edit file "/etc/postfix/main.cf"

just uncomment/ add following lines

myhostname = maverick.co.in
mydomain = maverick.co.in
myorigin = $myhostname
inet_interfaces = all
mynetworks = 172.22.0.0/255.255.0.0
alias_maps = dbm:/etc/aliases
alias_database = dbm:/etc/mail/aliases

start the service
service postfix start

now lets configure dovecot
edit file "/etc/dovecot.conf"

just add
protocols = imap imaps pop3 pop3s

start the service
service dovecot start

lets create some users
adduser a
passwd a

start the service
service cyrus-imapd start

now lets configure squirrel mail
open file "/usr/share/squirrelmail/config/conf.pl"

go to server settings
change sendmail to smtp


now lets configure web server
open file "/etc/httpd/conf/httpd.conf"

change document root to [in line no. 265 around]
DocumentRoot "/usr/share/squirrelmail"

and in line no 290


start the service
service httpd start


to start all these automatically when u start ur computer
chkconfig postfix on
chkconfig dovecot on
chkconfig cyrus-imapd on
chkconfig httpd on


and this is ur mail server ready to mail each other... but limited to local users this is not intended to send mails to users on other mail servers...
luk at this like.. a gmail user can send mail only to a gmail server...
sry this has no relay facility.. but soon tht will be.. so keep watching...
till then..
enjoy