Re: [ilugd] FOSS MS Exchange replacement

2008-08-02 Thread PJ
Anand Shankar [EMAIL PROTECTED] writes:

 

 Wo'nt it be better, if we use MS Exchange with Open protocols enabled.
 I find most people do'nt use IMAP / POP3 on Exchange, but restrict to
 the proprietary RPC based protocol.

Is that webDAV?

Hotwayd provides a pop3 and smtp interface to the webdav implementation of
hotmail. And hotmail can talk to outlook via webdav for now (it may get
discontinued in a while). I've used standard mail clients to do pop3 and smtp
access is this way for years to hotmail. So, maybe rip out the relevant code for
abuse elsewhere?

PJ



___
ilugd mailinglist -- ilugd@lists.linux-delhi.org
http://frodo.hserus.net/mailman/listinfo/ilugd
Archives at: http://news.gmane.org/gmane.user-groups.linux.delhi 
http://www.mail-archive.com/ilugd@lists.linux-delhi.org/


Re: [ilugd] which flavour of linux to choose

2008-08-02 Thread Aditya Sharma
i am member of th generation in question and i had trouble making out
what was being said :P

On Mon, Jul 21, 2008 at 6:06 PM, Mehul Ved [EMAIL PROTECTED] wrote:
 On Mon, Jul 21, 2008 at 5:53 PM, neha sharma [EMAIL PROTECTED] wrote:
 hello frnz...i ve been a membr of dis grp since long bt hv been
 a mere lurker yet..newayz m jus beginning off wid linux nd i
 ve xp installed on ma machine nd i want to install linux too , can u guyz
 tell me as to whch vrsion i shld go for nd whr wld i gt d same?
 hope to gt a response..thnk u!

 You can install ubuntu, mandriva, suse - these being the most beginner
 friendly. Then there are ubuntu based distros like linux mint and
 ubuntu ultimate, which have a lot of 'non-free' i.e. proprietory
 software which isn't found in ubuntu CD/DVD.

 And please read mailing list guidelines
 [quote]
 Use good understandable english. U mite b 3l33t, bt there r other wayz
 2 sho that.
 [/quote]
 Source:- http://kandalaya.org/guidelines.html

 ___
 ilugd mailinglist -- ilugd@lists.linux-delhi.org
 http://frodo.hserus.net/mailman/listinfo/ilugd
 Archives at: http://news.gmane.org/gmane.user-groups.linux.delhi 
 http://www.mail-archive.com/ilugd@lists.linux-delhi.org/




-- 
Aditya Kumar Sharma

___
ilugd mailinglist -- ilugd@lists.linux-delhi.org
http://frodo.hserus.net/mailman/listinfo/ilugd
Archives at: http://news.gmane.org/gmane.user-groups.linux.delhi 
http://www.mail-archive.com/ilugd@lists.linux-delhi.org/


Re: [ilugd] FOSS MS Exchange replacement

2008-08-02 Thread Puneet Lakhina
On Sat, Aug 2, 2008 at 11:39, PJ [EMAIL PROTECTED] wrote:

 Anand Shankar [EMAIL PROTECTED] writes:

 

  Wo'nt it be better, if we use MS Exchange with Open protocols enabled.
  I find most people do'nt use IMAP / POP3 on Exchange, but restrict to
  the proprietary RPC based protocol.

 Is that webDAV?


WebDAV isnt proprietary.
 http://en.wikipedia.org/wiki/WebDAV

Subversion uses it for exposing version control repository over http.


-- 
Puneet
http://sahyog.blogspot.com/
Latest Post: javac -g
___
ilugd mailinglist -- ilugd@lists.linux-delhi.org
http://frodo.hserus.net/mailman/listinfo/ilugd
Archives at: http://news.gmane.org/gmane.user-groups.linux.delhi 
http://www.mail-archive.com/ilugd@lists.linux-delhi.org/


Re: [ilugd] Bash script to get maximum directory depth

2008-08-02 Thread Gora Mohanty
On Wed, 30 Jul 2008 13:56:43 +0530
Puneet Lakhina [EMAIL PROTECTED] wrote:

 On Wed, Jul 30, 2008 at 12:45, Gora Mohanty [EMAIL PROTECTED] wrote:
 
  On Wed, 30 Jul 2008 12:32:13 +0530
  Puneet Lakhina [EMAIL PROTECTED] wrote:
 
   you could use the following script
   basedir=$1;
   find $basedir -type d|sed s#$basedir##g | awk -F'/' '{print NF-1 \n}'
  |
   sort -n | tail -1;
  
   invoke this using
$./script.sh dir
 
  [...]
 
  Try it with a directory named My Documents.
 
 
 Yeah, sorry that wont work. Any workarounds? keeping in mind non
 availability of printf.
[...]

Sorry, this had slipped into my Reply Later buffer. In a shell
script, you have to quote any variable that might contain spaces.
Thus,
  basedir=$1
  find $basedir | sed s#$basedir##g | awk -F'/' '{print NF}' | sort -n | 
tail -1

However, if one is using gawk, or a modern awk, one can get it to replace
sed (and, with some more work, probably sort, and tail also), viz.,
  find $1 | gawk -vbasedir=$1 -F/ '{gsub(basedir, , $0); print NF-1}' | 
sort -n | tail -1 

Regards,
Gora

___
ilugd mailinglist -- ilugd@lists.linux-delhi.org
http://frodo.hserus.net/mailman/listinfo/ilugd
Archives at: http://news.gmane.org/gmane.user-groups.linux.delhi 
http://www.mail-archive.com/ilugd@lists.linux-delhi.org/


Re: [ilugd] Bash script to get maximum directory depth

2008-08-02 Thread Anupam Jain
On Sat, Aug 2, 2008 at 3:27 PM, Gora Mohanty [EMAIL PROTECTED] wrote:
 On Wed, 30 Jul 2008 13:56:43 +0530
 Puneet Lakhina [EMAIL PROTECTED] wrote:

 On Wed, Jul 30, 2008 at 12:45, Gora Mohanty [EMAIL PROTECTED] wrote:

  On Wed, 30 Jul 2008 12:32:13 +0530
  Puneet Lakhina [EMAIL PROTECTED] wrote:
 
   you could use the following script
   basedir=$1;
   find $basedir -type d|sed s#$basedir##g | awk -F'/' '{print NF-1 \n}'
  |
   sort -n | tail -1;
  
   invoke this using
$./script.sh dir
 
  [...]
 
  Try it with a directory named My Documents.
 

 Yeah, sorry that wont work. Any workarounds? keeping in mind non
 availability of printf.
 [...]

 Sorry, this had slipped into my Reply Later buffer. In a shell
 script, you have to quote any variable that might contain spaces.
 Thus,
  basedir=$1
  find $basedir | sed s#$basedir##g | awk -F'/' '{print NF}' | sort -n | 
 tail -1

 However, if one is using gawk, or a modern awk, one can get it to replace
 sed (and, with some more work, probably sort, and tail also), viz.,
  find $1 | gawk -vbasedir=$1 -F/ '{gsub(basedir, , $0); print NF-1}' | 
 sort -n | tail -1

Nice solution! Not strictly required for my current problem but good
to remember.. Much appreciated :)

-- Anupam

___
ilugd mailinglist -- ilugd@lists.linux-delhi.org
http://frodo.hserus.net/mailman/listinfo/ilugd
Archives at: http://news.gmane.org/gmane.user-groups.linux.delhi 
http://www.mail-archive.com/ilugd@lists.linux-delhi.org/