bug in /usr/bin/calendar: Thu+1 doesn't match on 7th or December

2012-06-06 Thread Winston
Bug report for /usr/bin/calendar

SUMMARY:  calendar does not match Thu+1 or Mon+1 in some months.

With one exception, it looks like calendar file dates such as Thu+1
and Mon+1 are failing to match in two cases: (1) the 7th of Jan-Nov,
and (2) December.


DETAILS/EXAMPLES:

FreeBSD crystal 9.0-RELEASE FreeBSD 9.0-RELEASE #0: Tue Jan  3 07:46:30 UTC 
2012 r...@farrell.cse.buffalo.edu:/usr/obj/usr/src/sys/GENERIC  amd64

The bug occurs whether or not the command line options below are used.
I first noticed it today (a Wednesday) because a Thu+1 event tomorrow was
not in calendar's output.

Example 1: Thu+1

~/.calendar/calendar: 
Thu+1   foo (that's Thu+1\tfoo\n in C)

foreach i ( 1 2 3 4 5 6 7 8 9 10 11 12 )
calendar -t 1.$i.2011 -W 9
end
Jan  6* foo
Feb  3* foo
Mar  3* foo
- Apr 7 absent
May  5* foo
Jun  2* foo
- Jul 7 absent
Aug  4* foo
Sep  1* foo
Oct  6* foo
Nov  3* foo
- Dec 1 absent

foreach i ( 1 2 3 4 5 6 7 8 9 10 11 12 )
calendar -t 1.$i.2012 -W 9
end
Jan  5* foo
Feb  2* foo
Mar  1* foo
Apr  5* foo
May  3* foo
- Jun 7 absent
Jul  5* foo
Aug  2* foo
Sep  6* foo
Oct  4* foo
Nov  1* foo
- Dec 6 absent

foreach i ( 1 2 3 4 5 6 7 8 9 10 11 12 )
calendar -t 1.$i.2013 -W 9
end
Jan  3* foo
- Feb 7 absent
- Mar 7 absent
Apr  4* foo
May  2* foo
Jun  6* foo
Jul  4* foo
Aug  1* foo
Sep  5* foo
Oct  3* foo
- Nov 7 absent
- Dec 5 absent

Example 2: Mon+1

foo:
Mon+1   foo (Mon+1\tfoo\n)

foreach i ( 1 2 3 4 5 6 7 8 9 10 11 12 )
calendar -t 1.$i.2011 -W 9 -f foo
end
Jan  3* foo
- Feb 7 absent
- Mar 7 absent
Apr  4* foo
May  2* foo
Jun  6* foo
Jul  4* foo
Aug  1* foo
Sep  5* foo
Oct  3* foo
- Nov 7 absent
- Dec 5 absent

foreach i ( 1 2 3 4 5 6 7 8 9 10 11 12 )
calendar -t 1.$i.2012 -W 9 -f foo
end
Jan  2* foo
Feb  6* foo
Mar  5* foo
Apr  2* foo
- May 3 absent --- EXCEPTION!
Jun  4* foo
Jul  2* foo
Aug  6* foo
Sep  3* foo
Oct  1* foo
Nov  5* foo
- Dec 3 absent

foreach i ( 1 2 3 4 5 6 7 8 9 10 11 12 )
calendar -t 1.$i.2013 -W 9 -f foo
end
- Jan 7 absent
Feb  4* foo
Mar  4* foo
Apr  1* foo
May  6* foo
Jun  3* foo
Jul  1* foo
Aug  5* foo
Sep  2* foo
- Oct 7 absent
Nov  4* foo
- Dec 2 absent

HTH,
 -WBE
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Re: bug in /usr/bin/calendar: Thu+1 doesn't match on 7th or December

2012-06-06 Thread Julian H. Stacey
Hi,
Please report bugs with send-pr
(cos bug reports to mail list get lost)
See 
man send-pr
If you can attach a patch to fix it, so much the better

Cheers,
Julian
-- 
Julian Stacey, BSD Unix Linux C Sys Eng Consultants Munich http://berklix.com
 Reply below not above, cumulative like a play script,  indent with  .
 Format: Plain text. Not HTML, multipart/alternative, base64, quoted-printable.
Mail from @yahoo dumped @berklix.  http://berklix.org/yahoo/
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


conky calendar

2009-10-10 Thread PJ
I'm having a bit of a time with the calendar.sh script I found on the
Net; it doesn't display quite correctly.
It should have brackets around the current date, but I can't figure out
what is not functioning correctly:

#!/bin/sh
cal | awk 'NR2' | sed -e 's/   //g' -e 's/[^ ] / /g' -e 's/..*/  
/' -e 's/ \('`date | awk '{print $2}'`'\) /\['`date | awk '{print $2}'`'\]/'

Change the NR2 to NR1 and the printout includes the days of the week:
  Su  Mo  Tu  We  Th  Fr  Sa
   1   2   3
   4   5   6   7   8   9  10
  11  12  13  14  15  16  17
  18  19  20  21  22  23  24
  25  26  27  28  29  30  31

Since today is the 10th, we should be seeing [10] - but we are not.
Also, there is the problem of the 1,2,3 not showing in the right days -
in conky this can be fixed by not using xft... but then I'm not sure of
how to change the font size... perhaps the xorg screen size is the
default ???

I'm not very good at programming, but I did look up the man pages for
cal, sed and awk but it is a little complicated for my little brain.
Can anyone help, please?
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Re: conky calendar

2009-10-10 Thread jhell


On Sat, 10 Oct 2009 05:01, af.gourmet@ wrote:

I'm having a bit of a time with the calendar.sh script I found on the
Net; it doesn't display quite correctly.
It should have brackets around the current date, but I can't figure out
what is not functioning correctly:

#!/bin/sh
cal | awk 'NR2' | sed -e 's/   //g' -e 's/[^ ] / /g' -e 's/..*/  
/' -e 's/ \('`date | awk '{print $2}'`'\) /\['`date | awk '{print $2}'`'\]/'

Change the NR2 to NR1 and the printout includes the days of the week:
 Su  Mo  Tu  We  Th  Fr  Sa
  1   2   3
  4   5   6   7   8   9  10
 11  12  13  14  15  16  17
 18  19  20  21  22  23  24
 25  26  27  28  29  30  31

Since today is the 10th, we should be seeing [10] - but we are not.
Also, there is the problem of the 1,2,3 not showing in the right days -
in conky this can be fixed by not using xft... but then I'm not sure of
how to change the font size... perhaps the xorg screen size is the
default ???

I'm not very good at programming, but I did look up the man pages for
cal, sed and awk but it is a little complicated for my little brain.
Can anyone help, please?



Where did you Saturday go to ? I would love for some of my Thursdays and 
sometimes Fridays to just disappear like this but Saturday ? come on now 
what is the world coming to ? ;)


--

 ;; dataix.net!jhell 2048R/89D8547E 2009-09-30
 ;; BSD since FreeBSD 4.2Linux since Slackware 2.1
 ;; 85EF E26B 07BB 3777 76BE  B12A 9057 8789 89D8 547E

___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Re: conky calendar

2009-10-10 Thread Roland Smith
On Sat, Oct 10, 2009 at 05:01:34AM -0400, PJ wrote:
 I'm having a bit of a time with the calendar.sh script I found on the
 Net; it doesn't display quite correctly.
 It should have brackets around the current date, but I can't figure out
 what is not functioning correctly:
 
 #!/bin/sh
 cal | awk 'NR2' | sed -e 's/   //g' -e 's/[^ ] / /g' -e 's/..*/  
 /' -e 's/ \('`date | awk '{print $2}'`'\) /\['`date | awk '{print $2}'`'\]/'

Look at the output of the date command:
Sat Oct 10 15:12:39 CEST 2009

Change 'print $2' to 'print $3' to get the numercal date.
Or even simpler: use date +%d instead of date | awk '{print $3}'.

Roland
-- 
R.F.Smith   http://www.xs4all.nl/~rsmith/
[plain text _non-HTML_ PGP/GnuPG encrypted/signed email much appreciated]
pgp: 1A2B 477F 9970 BA3C 2914  B7CE 1277 EFB0 C321 A725 (KeyID: C321A725)


pgp3BcgoKyz5L.pgp
Description: PGP signature


Re: conky calendar

2009-10-10 Thread Richard Mahlerwein
From: Roland Smith rsm...@xs4all.nl
Subject: Re: conky calendar
To: PJ af.gour...@videotron.ca
Cc: freebsd-questions@freebsd.org
Date: Saturday, October 10, 2009, 9:27 AM

On Sat, Oct 10, 2009 at 05:01:34AM -0400, PJ wrote:
 I'm having a bit of a time with the calendar.sh script I 
 found on the Net; it doesn't display quite correctly.
 It should have brackets around the current date, but I 
 can't figure out what is not functioning correctly:
 
 #!/bin/sh
 cal | awk 'NR2' | sed -e 's/   /    /g' -e 's/[^ ] / /g' -e 's/..*/   /' 
 -e 's/ \('`date | awk '{print $2}'`'\) /\['`date | awk '{print $2}'`'\]/'

Look at the output of the date command:
Sat Oct 10 15:12:39 CEST 2009

Change 'print $2' to 'print $3' to get the numercal date.
Or even simpler: use date +%d instead of date | awk '{print $3}'.

Roland

I could not get it to work until I changed the single quotes in the last -e 
expression to double quotes.  (This either interactively under csh or as a 
script under sh).  BTW, using `date +%s` and with an additional minor change to 
make the numbers continue to line up ... Oh!  This will not fix mis-alignments 
on days when it is not the end of the week, I don't think ... anyway.

cal | awk 'NR1' | sed -e 's/   //g' -e 's/[^ ] / /g' -e 's/..*/  /' -e 
s/\ `date +%d`/\[`date +%d`\]/

Gives
$ sh newcal.sh
  Su  Mo  Tu  We  Th  Fr  Sa
   1   2   3
   4   5   6   7   8   9 [10]
  11  12  13  14  15  16  17
  18  19  20  21  22  23  24
  25  26  27  28  29  30  31

Now, if you had a space character at the end of each line, you could do 
something like ...

cal | awk 'NR1' | sed -e 's/   //g' -e 's/[^ ] / /g' -e 's/..*/  /' -e 
s/\ `date +%d`\ /\[`date +%d`\]/

And then it would replace (underscore is space) _8_ with [8] so it would 
always line up.  You can't do that without the space at the end of the line 
because the trailing numbers look like this _17 not _17_.  But, fix that, 
and you can use the above.  That is left as an exercise for the reader.  

-Rich


 
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Re: conky calendar

2009-10-10 Thread Karl Vogel
You can use the terminal standout codes to highlight today's date, but you
need either the Linux compatibility stuff or a recent version of ncurses
installed:

  #!/bin/ksh
  PATH=/usr/compat/linux/usr/bin:/usr/local/bin:/bin:/usr/bin
  export PATH

  DAY=$(date +%d | sed 's/0\([123456789]\)/ \1/')
  SMSO=$(tput smso)
  RMSO=$(tput rmso)
  cal | sed -e 's/^/ /' -e 3,\$s/ ${DAY}/ ${SMSO}${DAY}${RMSO}/
  exit 0

-- 
Karl Vogel  I don't speak for the USAF or my company

Letterman's top signs your cat is trying to kill you #9:
 To tune of Meow Mix song sings, Kill kill kill kill, kill kill kill kill
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Re: Evolution 2.24.5 Exchange can't Subscribe to Other user's Calendar

2009-07-30 Thread Matthias Apitz
El día Saturday, July 25, 2009 a las 08:30:16AM -0400, Charles Oppermann 
escribió:

 $ nslookup -type=SRV '_kerberos._udp.oa.OCLC.ORG'
 Server: yyy.yyy.yyy.yyy
 Address:yyy.yyy.yyy.yyy#53
 
 Non-authoritative answer:
 _kerberos._udp.oa.OCLC.ORG  service = 0 100 88 oadc5server.oa.oclc.org.
 _kerberos._udp.oa.OCLC.ORG  service = 0 100 88 oadc01ewbe.oa.oclc.org.
 _kerberos._udp.oa.OCLC.ORG  service = 0 100 88 oadc1server.oa.oclc.org.
 _kerberos._udp.oa.OCLC.ORG  service = 0 100 88 oadc2server.oa.oclc.org.
 ...
 
 Why Evo is asking for '_kerberos._udp.OCLC.ORG' and not for 
 '_kerberos._udp.oa.OCLC.ORG'

 Active Directory LDAP schemes can be mis-configured and yet still appear 
 to work.  Check earlier to see if Evolution or PAM (if you're using 
 PAM), was given oa.oclc.org or just oclc.org.
 
 What domain are you in?  It's possible that Evolution assumes that SMTP 
 address reflects your domain.  If you are in the OA domain, it should 
 not hurt to list your address as x...@oa.oclc.org.  Mail sent to 
 x...@oclc.org will still find you, and you can set the reply-to: header 
 field to x...@oclc.org.
 
 I have this issue at work, as for testing purposes my email address is 
 currently chuc...@exchange.microsoft.com, but the alias 
 chuc...@microsoft.com works as well.  But my email client keeps wanting 
 to send @exchange.microsoft.com which confuses my friends into thinking 
 my email address has changed.
 
 Good luck and let us know.

Here is what I got from the Exchange server Admin:

«Mattias,
I am still looking into this issue. Your settings are correct in
Evolution. This appears to be an issue with Evolution itself
based on my testing and the information I found on Google»

Do you want to see the screens of my mail settings in Evolution,
Charles?

Thx

matthias
-- 
Matthias Apitz
t +49-89-61308 351 - f +49-89-61308 399 - m +49-170-4527211
e g...@unixarea.de - w http://www.unixarea.de/
People who hate Microsoft Windows use Linux but people who love UNIX use 
FreeBSD.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


RE: Evolution 2.24.5 Exchange can't Subscribe to Other user's Calendar

2009-07-30 Thread Charles Oppermann
 Do you want to see the screens of my mail settings in Evolution, Charles?

Sure.  Have you tried setting up Evolution using the x...@oa.oclc.org
variant of your address?

___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Re: Evolution 2.24.5 Exchange can't Subscribe to Other user's Calendar

2009-07-25 Thread Charles Oppermann

On 7/24/2009 1:10 PM, Matthias Apitz wrote:

Using the mentioned environment (on FreeBSD 8-CURRENT) I can't Subscribe
to Other user's Calendar in the Exchange server (don't blame me for
this, using Exchange :-)) . It fails with a more or less stupid message
about wrong password.
   
Exchange is an excellent mail handling system, with lots of benefits, no 
need to trash it here.


It's not a stupid message; it's telling you it can't authenticate you.  
To tell you explicitly cannot find credentials servers and services 
would be a security hole, because if it could find them and merely told 
you bad authentication you'd know you have a bad password, and could 
try a different one.

I've watched with TCPDUMP what's happening when I access in the Menue
'Subscribe to Other user's Calendar': it does a DNS lookup for
kerberos.OCLC.org which is failing (yyy.yyy.yyy.yyy is our DNS server,
xxx.xxx.xxx.xxx is my laptop):
10:43:53.583797 IP xxx.xxx.xxx.xxx.34455  yyy.yyy.yyy.yyy.53: 43976+ SRV?  
_kerberos._udp.OCLC.ORG. (41)
10:43:53.585520 IP yyy.yyy.yyy.yyy.53  xxx.xxx.xxx.xxx.34455: 43976 NXDomain 
0/1/0 (91)
10:43:53.586181 IP xxx.xxx.xxx.xxx.51100  yyy.yyy.yyy.yyy.53: 48460+ SRV?  
_kerberos._tcp.OCLC.ORG. (41)
10:43:53.587866 IP yyy.yyy.yyy.yyy.53  xxx.xxx.xxx.xxx.51100: 48460 NXDomain 
0/1/0 (91)
10:43:53.588479 IP xxx.xxx.xxx.xxx.23102  yyy.yyy.yyy.yyy.53: 46661+ SRV?  
_kerberos._http.OCLC.ORG. (42)
10:43:53.590098 IP yyy.yyy.yyy.yyy.53  xxx.xxx.xxx.xxx.23102: 46661 NXDomain 
0/1/0 (92)
10:43:53.590505 IP xxx.xxx.xxx.xxx.57028  yyy.yyy.yyy.yyy.53: 45174+ A?  
kerberos.OCLC.ORG. (35)
10:43:53.592087 IP yyy.yyy.yyy.yyy.53  xxx.xxx.xxx.xxx.57028: 45174 NXDomain 
0/1/0 (85)
10:43:53.592241 IP xxx.xxx.xxx.xxx.54405  yyy.yyy.yyy.yyy.53: 45175+ ?  
kerberos.OCLC.ORG. (35)
10:43:53.593850 IP yyy.yyy.yyy.yyy.53  xxx.xxx.xxx.xxx.54405: 45175 NXDomain 
0/1/0 (85)

The domain OCLC.ORG is the part of my mail addr, i.e. my addr 
isxx...@oclc.org.
The IT folks of my company gave me the hint that the above nslookup should not
be, for example, '_kerberos._udp.OCLC.ORG', but '_kerberos._udp.oa.OCLC.ORG'
(i.e. in the zone oa.OCLC.ORG) which indead is working with nslookup:

$ nslookup -type=SRV '_kerberos._udp.oa.OCLC.ORG'
Server: yyy.yyy.yyy.yyy
Address:yyy.yyy.yyy.yyy#53

Non-authoritative answer:
_kerberos._udp.oa.OCLC.ORG  service = 0 100 88 oadc5server.oa.oclc.org.
_kerberos._udp.oa.OCLC.ORG  service = 0 100 88 oadc01ewbe.oa.oclc.org.
_kerberos._udp.oa.OCLC.ORG  service = 0 100 88 oadc1server.oa.oclc.org.
_kerberos._udp.oa.OCLC.ORG  service = 0 100 88 oadc2server.oa.oclc.org.
...

Why Evo is asking for '_kerberos._udp.OCLC.ORG' and not for 
'_kerberos._udp.oa.OCLC.ORG'
   
Active Directory LDAP schemes can be mis-configured and yet still appear 
to work.  Check earlier to see if Evolution or PAM (if you're using 
PAM), was given oa.oclc.org or just oclc.org.


What domain are you in?  It's possible that Evolution assumes that SMTP 
address reflects your domain.  If you are in the OA domain, it should 
not hurt to list your address as x...@oa.oclc.org.  Mail sent to 
x...@oclc.org will still find you, and you can set the reply-to: header 
field to x...@oclc.org.


I have this issue at work, as for testing purposes my email address is 
currently chuc...@exchange.microsoft.com, but the alias 
chuc...@microsoft.com works as well.  But my email client keeps wanting 
to send @exchange.microsoft.com which confuses my friends into thinking 
my email address has changed.


Good luck and let us know.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Re: Evolution 2.24.5 Exchange can't Subscribe to Other user's Calendar

2009-07-25 Thread Matthias Apitz
El día Saturday, July 25, 2009 a las 08:30:16AM -0400, Charles Oppermann 
escribió:

 On 7/24/2009 1:10 PM, Matthias Apitz wrote:
 Using the mentioned environment (on FreeBSD 8-CURRENT) I can't Subscribe
 to Other user's Calendar in the Exchange server (don't blame me for
 this, using Exchange :-)) . It fails with a more or less stupid message
 about wrong password.


Hello Charles,

...
 It's not a stupid message; it's telling you it can't authenticate you.  
 To tell you explicitly cannot find credentials servers and services 
 would be a security hole, because if it could find them and merely told 
 you bad authentication you'd know you have a bad password, and could 
 try a different one.

I disagree here.  Look the three examples for host 'boell' I've typed a
wrong password, host 'krampus' (a MS$ one) does not run SSH daemon and
host 'krampuss' just does not exist:

$ ssh boell
g...@boell.sisis.de's password: 
Permission denied, please try again.

$ ssh krampus
ssh: connect to host krampus.Sisis.de port 22: Connection refused

$ ssh krampuss
ssh: Could not resolve hostname krampuss: hostname nor servname
provided, or not known

These are the normal world responses, at least of a SSH client in
FreeBSD; I don't see any security hole, but in any of the three cases
you know the error which has occured.

...

 Active Directory LDAP schemes can be mis-configured and yet still appear 
 to work.  Check earlier to see if Evolution or PAM (if you're using 
 PAM), was given oa.oclc.org or just oclc.org.
 
 What domain are you in?  It's possible that Evolution assumes that SMTP 
 address reflects your domain.  If you are in the OA domain, it should 
 not hurt to list your address as x...@oa.oclc.org.  Mail sent to 
 x...@oclc.org will still find you, and you can set the reply-to: header 
 field to x...@oclc.org.

In the Exchange authentication fields of Evo (Edit--Preferences--MailAccount)
I have to set following the advice of the server admins:

Username: OCLC\apitzm

I have no access to the Exchange server, but will check your hint with
the admins there.

 I have this issue at work, as for testing purposes my email address is 
 currently chuc...@exchange.microsoft.com, but the alias 
 chuc...@microsoft.com works as well.  But my email client keeps wanting 
 to send @exchange.microsoft.com which confuses my friends into thinking 
 my email address has changed.
 
 Good luck and let us know.

Thanks for your kind help and I will let you know, of course

matthias

-- 
Matthias Apitz
t +49-89-61308 351 - f +49-89-61308 399 - m +49-170-4527211
e g...@unixarea.de - w http://www.unixarea.de/
People who hate Microsoft Windows use Linux but people who love UNIX use 
FreeBSD.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Evolution 2.24.5 Exchange can't Subscribe to Other user's Calendar

2009-07-24 Thread Matthias Apitz

Hello,

I've already asked the below question in the Evolution mailing-list with
no response; maybe someone of the FreeBSD net folks can bring a bit
light into this.

Using the mentioned environment (on FreeBSD 8-CURRENT) I can't Subscribe
to Other user's Calendar in the Exchange server (don't blame me for
this, using Exchange :-)) . It fails with a more or less stupid message
about wrong password. 

I've watched with TCPDUMP what's happening when I access in the Menue
'Subscribe to Other user's Calendar': it does a DNS lookup for
kerberos.OCLC.org which is failing (yyy.yyy.yyy.yyy is our DNS server,
xxx.xxx.xxx.xxx is my laptop):


10:43:53.583797 IP xxx.xxx.xxx.xxx.34455  yyy.yyy.yyy.yyy.53: 43976+ SRV?  
_kerberos._udp.OCLC.ORG. (41)
10:43:53.585520 IP yyy.yyy.yyy.yyy.53  xxx.xxx.xxx.xxx.34455: 43976 NXDomain 
0/1/0 (91)
10:43:53.586181 IP xxx.xxx.xxx.xxx.51100  yyy.yyy.yyy.yyy.53: 48460+ SRV?  
_kerberos._tcp.OCLC.ORG. (41)
10:43:53.587866 IP yyy.yyy.yyy.yyy.53  xxx.xxx.xxx.xxx.51100: 48460 NXDomain 
0/1/0 (91)
10:43:53.588479 IP xxx.xxx.xxx.xxx.23102  yyy.yyy.yyy.yyy.53: 46661+ SRV?  
_kerberos._http.OCLC.ORG. (42)
10:43:53.590098 IP yyy.yyy.yyy.yyy.53  xxx.xxx.xxx.xxx.23102: 46661 NXDomain 
0/1/0 (92)
10:43:53.590505 IP xxx.xxx.xxx.xxx.57028  yyy.yyy.yyy.yyy.53: 45174+ A?  
kerberos.OCLC.ORG. (35)
10:43:53.592087 IP yyy.yyy.yyy.yyy.53  xxx.xxx.xxx.xxx.57028: 45174 NXDomain 
0/1/0 (85)
10:43:53.592241 IP xxx.xxx.xxx.xxx.54405  yyy.yyy.yyy.yyy.53: 45175+ ?  
kerberos.OCLC.ORG. (35)
10:43:53.593850 IP yyy.yyy.yyy.yyy.53  xxx.xxx.xxx.xxx.54405: 45175 NXDomain 
0/1/0 (85)

The domain OCLC.ORG is the part of my mail addr, i.e. my addr is 
xx...@oclc.org. 
The IT folks of my company gave me the hint that the above nslookup should not
be, for example, '_kerberos._udp.OCLC.ORG', but '_kerberos._udp.oa.OCLC.ORG'
(i.e. in the zone oa.OCLC.ORG) which indead is working with nslookup:

$ nslookup -type=SRV '_kerberos._udp.oa.OCLC.ORG'
Server: yyy.yyy.yyy.yyy
Address:yyy.yyy.yyy.yyy#53

Non-authoritative answer:
_kerberos._udp.oa.OCLC.ORG  service = 0 100 88 oadc5server.oa.oclc.org.
_kerberos._udp.oa.OCLC.ORG  service = 0 100 88 oadc01ewbe.oa.oclc.org.
_kerberos._udp.oa.OCLC.ORG  service = 0 100 88 oadc1server.oa.oclc.org.
_kerberos._udp.oa.OCLC.ORG  service = 0 100 88 oadc2server.oa.oclc.org.
...

Why Evo is asking for '_kerberos._udp.OCLC.ORG' and not for 
'_kerberos._udp.oa.OCLC.ORG'?

Thanks

matthias
-- 
Matthias Apitz
t +49-89-61308 351 - f +49-89-61308 399 - m +49-170-4527211
e g...@unixarea.de - w http://www.unixarea.de/
People who hate Microsoft Windows use Linux but people who love UNIX use 
FreeBSD.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Re: /usr/bin/calendar in cgi script

2009-04-12 Thread Modulok
I don't know what program you're using for your CGI stuff, but
basically all that is needed is the 'pre/pre' tags. Here is an
example which uses PHP to call the system 'calendar' command:

!DOCTYPE HTML PUBLIC -//W3C//DTD HTML 4.01//EN
html
head
meta http-equiv=content-type content=text/html; charset=UTF-8
titleModulore Training Media/title
body
p
Hello world. Calling UNIX calendar program via PHP:
p
pre
?php
system(calendar -f calendar.history);
?
/pre
/body
/html

On 4/11/09, Charles Howse cho...@charter.net wrote:

 On Apr 11, 2009, at 2:07 PM, Robert Huff wrote:


 Charles Howse writes:

 Now, when I run that script in a terminal, the output is perfectly
 formatted, multiple lines (if there are multiple events on this
 date),
 date first, event, year.  Just right.

 But, when I put that in an include statement in a webpage, the
 output is a single line, regardless of whether there are multiple
 events.
 You can see a bad example here:

 http://bubbabbq.homeunix.net/history_cgi.shtml

 How can I make multiple events show on separate lines, like it
 does in terminal?

  Would I be correct in believing you're unfamiliar with html?

 You would most certainly NOT BE CORRECT.  I've had my own server
 running Apache for years.

 I don't think this is something that can be solved with html tags, but
 I will try Brad's suggestions.
 Read man calendar about how it uses cpp, and how the calendar.* files
 are formatted.
 If I recall, I used this same technique years ago and had a simple,
 elegant way of solving it using some default tool like col, though
 that doesn't seem to work now.

 ___
 freebsd-questions@freebsd.org mailing list
 http://lists.freebsd.org/mailman/listinfo/freebsd-questions
 To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org

___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Re: /usr/bin/calendar in cgi script

2009-04-12 Thread Charles Howse

Yes, I was reminded of the pre /pre tags, and that solved it.
Thanks!

On Apr 12, 2009, at 3:58 PM, Modulok wrote:


I don't know what program you're using for your CGI stuff, but
basically all that is needed is the 'pre/pre' tags. Here is an
example which uses PHP to call the system 'calendar' command:

!DOCTYPE HTML PUBLIC -//W3C//DTD HTML 4.01//EN
html
head
meta http-equiv=content-type content=text/html; charset=UTF-8
titleModulore Training Media/title
body
p
Hello world. Calling UNIX calendar program via PHP:
p
pre
?php
system(calendar -f calendar.history);
?
/pre
/body
/html

On 4/11/09, Charles Howse cho...@charter.net wrote:


On Apr 11, 2009, at 2:07 PM, Robert Huff wrote:



Charles Howse writes:


Now, when I run that script in a terminal, the output is perfectly
formatted, multiple lines (if there are multiple events on this
date),
date first, event, year.  Just right.

But, when I put that in an include statement in a webpage, the
output is a single line, regardless of whether there are multiple
events.
You can see a bad example here:

http://bubbabbq.homeunix.net/history_cgi.shtml

How can I make multiple events show on separate lines, like it
does in terminal?


Would I be correct in believing you're unfamiliar with html?


You would most certainly NOT BE CORRECT.  I've had my own server
running Apache for years.

I don't think this is something that can be solved with html tags,  
but

I will try Brad's suggestions.
Read man calendar about how it uses cpp, and how the calendar.* files
are formatted.
If I recall, I used this same technique years ago and had a simple,
elegant way of solving it using some default tool like col, though
that doesn't seem to work now.

___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org 





___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


/usr/bin/calendar in cgi script

2009-04-11 Thread Charles Howse

Hi,
I have a cgi script on my website that runs:

/usr/bin/calendar -f /usr/share/calendar/calendar.history

Now, when I run that script in a terminal, the output is perfectly  
formatted, multiple lines (if there are multiple events on this date),  
date first, event, year.  Just right.


But, when I put that in an include statement in a webpage, the  
output is a single line, regardless of whether there are multiple  
events.

You can see a bad example here:

http://bubbabbq.homeunix.net/history_cgi.shtml

How can I make multiple events show on separate lines, like it does in  
terminal?



--
Thanks,
Charles

Reasons it's great to be a guy...
You get to think about sex 90% of your waking hours.


___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


/usr/bin/calendar in cgi script

2009-04-11 Thread Robert Huff

Charles Howse writes:

  Now, when I run that script in a terminal, the output is perfectly  
  formatted, multiple lines (if there are multiple events on this date),  
  date first, event, year.  Just right.
  
  But, when I put that in an include statement in a webpage, the  
  output is a single line, regardless of whether there are multiple  
  events.
  You can see a bad example here:
  
  http://bubbabbq.homeunix.net/history_cgi.shtml
  
  How can I make multiple events show on separate lines, like it
  does in terminal?

Would I be correct in believing you're unfamiliar with html?


Robert Huff


___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Re: /usr/bin/calendar in cgi script

2009-04-11 Thread Brad Mettee
You'll need to put it in a pre /pre html block to preserve the 
formatting. Or you can try to substitute the '\n' into 'br' somehow (been 
a while since I did search/replace in an include so I can't be more specific).



At 03:02 PM 4/11/2009, you wrote:

Hi,
I have a cgi script on my website that runs:

/usr/bin/calendar -f /usr/share/calendar/calendar.history

Now, when I run that script in a terminal, the output is perfectly
formatted, multiple lines (if there are multiple events on this date),
date first, event, year.  Just right.

But, when I put that in an include statement in a webpage, the
output is a single line, regardless of whether there are multiple
events.
You can see a bad example here:

http://bubbabbq.homeunix.net/history_cgi.shtml

How can I make multiple events show on separate lines, like it does in
terminal?


--
Thanks,
Charles

Reasons it's great to be a guy...
You get to think about sex 90% of your waking hours.


___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Re: /usr/bin/calendar in cgi script

2009-04-11 Thread Charles Howse


On Apr 11, 2009, at 2:07 PM, Robert Huff wrote:



Charles Howse writes:


Now, when I run that script in a terminal, the output is perfectly
formatted, multiple lines (if there are multiple events on this  
date),

date first, event, year.  Just right.

But, when I put that in an include statement in a webpage, the
output is a single line, regardless of whether there are multiple
events.
You can see a bad example here:

http://bubbabbq.homeunix.net/history_cgi.shtml

How can I make multiple events show on separate lines, like it
does in terminal?


Would I be correct in believing you're unfamiliar with html?


You would most certainly NOT BE CORRECT.  I've had my own server  
running Apache for years.


I don't think this is something that can be solved with html tags, but  
I will try Brad's suggestions.
Read man calendar about how it uses cpp, and how the calendar.* files  
are formatted.
If I recall, I used this same technique years ago and had a simple,  
elegant way of solving it using some default tool like col, though  
that doesn't seem to work now.


___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Re: calendar software wanted

2008-10-24 Thread Marco

Andrew Gould wrote:
I currently use webcalendar (with apache, php, postgresql) for my
calendar.
I heard about solutions like that, maybe i implement something for my
family too.


Thank you guys for the hints, i'll happily test them and see if
something fits my needs :-)

Best regards,
 marco

Andrew Gould wrote:
 On Wed, Oct 22, 2008 at 8:51 AM, Daniel Molina Wegener [EMAIL PROTECTED] 
 wrote:

   
 Marco escribió:

 
 hello list,

 anybody has experience with calendar software which runs on freebsd. i
 maybe would integrate it also in thunderbird/mutt,but thats not
 necessary, or use a stand alone software.
 minimum requirements to the software would be making entries, getting
 alarms for appointments.

   
  Try kontact (the kdepim port). Have fun xD


 
 thank you for responses,
  marco

   
 Regards,

 

 Before I moved from my PalmPilot III (still works) to an iPhone (not 3G), I
 used JPilot for my PIM and Sylpheed-Claws (the name has changed?) for
 email.  This was a good setup because there was a plugin that allowed
 Sylpheed-Claws to  access the JPilot addressbook.

 I currently use webcalendar (with apache, php, postgresql) for my calendar.
 This is overkill for an individual; but has many advantages for family
 scheduling:  I can add an item to my wife's calendar with an email
 reminder.  Since my wife has a blackberry email address, the message will
 get pushed to her phone.  When testing this feature, I would suggest
 starting with something like a dinner invitation rather than a grocery list.
;-)

 Have fun,

 Andrew
 ___
 freebsd-questions@freebsd.org mailing list
 http://lists.freebsd.org/mailman/listinfo/freebsd-questions
 To unsubscribe, send any mail to [EMAIL PROTECTED]

   

___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


calendar software wanted

2008-10-22 Thread Marco
hello list,

anybody has experience with calendar software which runs on freebsd. i
maybe would integrate it also in thunderbird/mutt,but thats not
necessary, or use a stand alone software.
minimum requirements to the software would be making entries, getting
alarms for appointments.

thank you for responses,
 marco
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: calendar software wanted

2008-10-22 Thread Paul A. Procacci

http://www.mozilla.org/projects/calendar/sunbird/


Marco wrote:

hello list,

anybody has experience with calendar software which runs on freebsd. i
maybe would integrate it also in thunderbird/mutt,but thats not
necessary, or use a stand alone software.
minimum requirements to the software would be making entries, getting
alarms for appointments.

thank you for responses,
 marco
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]
  


___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: calendar software wanted

2008-10-22 Thread tequnix
Am Wed, 22 Oct 2008 10:02:22 +0200
schrieb Marco [EMAIL PROTECTED]:

 hello list,
 
 anybody has experience with calendar software which runs on freebsd. i
 maybe would integrate it also in thunderbird/mutt,but thats not
 necessary, or use a stand alone software.
 minimum requirements to the software would be making entries, getting
 alarms for appointments.
 
 thank you for responses,
  marco
 ___
 freebsd-questions@freebsd.org mailing list
 http://lists.freebsd.org/mailman/listinfo/freebsd-questions
 To unsubscribe, send any mail to [EMAIL PROTECTED]

egroupware has a nice web-interface, and is also usable
with lightning and sunbird ..

it's in the ports (deskutils/egroupware)

br,
reinhard
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: calendar software wanted

2008-10-22 Thread Daniel Molina Wegener

Marco escribió:

hello list,

anybody has experience with calendar software which runs on freebsd. i
maybe would integrate it also in thunderbird/mutt,but thats not
necessary, or use a stand alone software.
minimum requirements to the software would be making entries, getting
alarms for appointments.


  Try kontact (the kdepim port). Have fun xD



thank you for responses,
 marco


Regards,
--
.O. | Daniel Molina Wegener   | C/C++ Coder
..O | dmw [at] coder [dot] cl | FOSS Developer
OOO | FreeBSD  Linux User| Standards Basis


___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: calendar software wanted

2008-10-22 Thread Andrew Gould
On Wed, Oct 22, 2008 at 8:51 AM, Daniel Molina Wegener [EMAIL PROTECTED] 
wrote:

 Marco escribió:

 hello list,

 anybody has experience with calendar software which runs on freebsd. i
 maybe would integrate it also in thunderbird/mutt,but thats not
 necessary, or use a stand alone software.
 minimum requirements to the software would be making entries, getting
 alarms for appointments.


  Try kontact (the kdepim port). Have fun xD


 thank you for responses,
  marco


 Regards,


Before I moved from my PalmPilot III (still works) to an iPhone (not 3G), I
used JPilot for my PIM and Sylpheed-Claws (the name has changed?) for
email.  This was a good setup because there was a plugin that allowed
Sylpheed-Claws to  access the JPilot addressbook.

I currently use webcalendar (with apache, php, postgresql) for my calendar.
This is overkill for an individual; but has many advantages for family
scheduling:  I can add an item to my wife's calendar with an email
reminder.  Since my wife has a blackberry email address, the message will
get pushed to her phone.  When testing this feature, I would suggest
starting with something like a dinner invitation rather than a grocery list.
   ;-)

Have fun,

Andrew
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Off Topic: Sunbird calendar server?

2008-06-30 Thread Michael W. Holdeman


On Sunday 29 June 2008 13:20:11 Andrew Berry wrote:
 On 28-Jun-08, at 12:01 AM, Jack Barnett wrote:
  She is a fan of Google Calendars (which I admit works well), but I'm
  a fan of Sunbird (since it's local and don't need internets for it
  to work).
  I could probably convert her to Sunbird if I found a good way to
  share out our calendars.

 As long as you just want to see the other persons calendar, Google can
 export a calendar as an iCal subscription, or as an XML feed.
 gcaldaemon might also be something to look into:

 http://gcaldaemon.sourceforge.net/index.html

 The problem that I've had is that I want a web front end which can
 talk to a CalDav server. Zimbra has it, but it's a very heavy install
 and only supports Linux :(

 --Andrew

The latest sunbird has an add on google provider I think it is called. It will 
enable 2 way with sunbird to access to your google cals.

Mike

-- 
Michael W. Holdeman
Chief
Porter Fire Department

Powered by Kubunty Hardy 8.04, KDE-4.1 beta
http://kubuntu.org

___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Off Topic: Sunbird calendar server?

2008-06-30 Thread Michael W. Holdeman


On Monday 30 June 2008 10:53:00 Michael W. Holdeman wrote:
 On Sunday 29 June 2008 13:20:11 Andrew Berry wrote:
  On 28-Jun-08, at 12:01 AM, Jack Barnett wrote:
   She is a fan of Google Calendars (which I admit works well), but I'm
   a fan of Sunbird (since it's local and don't need internets for it
   to work).
   I could probably convert her to Sunbird if I found a good way to
   share out our calendars.
 
  As long as you just want to see the other persons calendar, Google can
  export a calendar as an iCal subscription, or as an XML feed.
  gcaldaemon might also be something to look into:
 
  http://gcaldaemon.sourceforge.net/index.html
 
  The problem that I've had is that I want a web front end which can
  talk to a CalDav server. Zimbra has it, but it's a very heavy install
  and only supports Linux :(
 
  --Andrew

 The latest sunbird has an add on google provider I think it is called. It
 will enable 2 way with sunbird to access to your google cals.

 Mike
Hate replting to my own.

But FWIW I also set up Kontact-4.1-beta with the gcaldeamon and it seems to be 
working swell.

Mike
-- 
Michael W. Holdeman
Chief
Porter Fire Department

Powered by Kubunty Hardy 8.04, KDE-4.1 beta
http://kubuntu.org

___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Off Topic: Sunbird calendar server?

2008-06-29 Thread Andrew Berry

On 28-Jun-08, at 12:01 AM, Jack Barnett wrote:

She is a fan of Google Calendars (which I admit works well), but I'm  
a fan of Sunbird (since it's local and don't need internets for it  
to work).
I could probably convert her to Sunbird if I found a good way to  
share out our calendars.


As long as you just want to see the other persons calendar, Google can  
export a calendar as an iCal subscription, or as an XML feed.  
gcaldaemon might also be something to look into:


http://gcaldaemon.sourceforge.net/index.html

The problem that I've had is that I want a web front end which can  
talk to a CalDav server. Zimbra has it, but it's a very heavy install  
and only supports Linux :(


--Andrew

Re: Off Topic: Sunbird calendar server?

2008-06-28 Thread Fraser Tweedale
On Fri, Jun 27, 2008 at 11:01:35PM -0500, Jack Barnett wrote:
 
 This is a bit off topic, but does anyone know of a Calendar Server 
 that is compatible with Sunbird?
 
 Basically, I have a personal calender, then we have a Holidays 
 calendar and my girlfriend has her own calendar.
 We want to be able to share the Holidays calendar and also share 
 out/view each others.
 
 She is a fan of Google Calendars (which I admit works well), but I'm a 
 fan of Sunbird (since it's local and don't need internets for it to work).
 I could probably convert her to Sunbird if I found a good way to share 
 out our calendars.
 
Plain old Apache + mod_dav with simple auth is what I use, and it works
a treat.

frase


pgpYXiRT9ipb4.pgp
Description: PGP signature


Off Topic: Sunbird calendar server?

2008-06-27 Thread Jack Barnett


This is a bit off topic, but does anyone know of a Calendar Server 
that is compatible with Sunbird?


Basically, I have a personal calender, then we have a Holidays 
calendar and my girlfriend has her own calendar.
We want to be able to share the Holidays calendar and also share 
out/view each others.


She is a fan of Google Calendars (which I admit works well), but I'm a 
fan of Sunbird (since it's local and don't need internets for it to work).
I could probably convert her to Sunbird if I found a good way to share 
out our calendars.




___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Off Topic: Sunbird calendar server?

2008-06-27 Thread Matthias Fechner

Hi Jack,

Jack Barnett wrote:
This is a bit off topic, but does anyone know of a Calendar Server 
that is compatible with Sunbird?


you can try that one:
http://rscds.sourceforge.net/

I access it from Sunbird/Lightning from Windows and Linux and with iCal 
from MacOSX. I can work offline with it and iCal synchronizes then the 
changes. Works really great.

I also include some ical files like holidays from my webserver to lightning.

Bye,
Matthias

--
Programming today is a race between software engineers striving to 
build bigger and better idiot-proof programs, and the universe trying to 
produce bigger and better idiots. So far, the universe is winning. -- 
Rich Cook

___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Calendar Solution?

2008-02-26 Thread B. Cook

Hello All,

Anyone have any suggestions for a 'corporate' calendar?  Either ports  
or DIY or other ..


I am trying to get them on the idea of an OSX server..

They are using words like 'Exchange' and 'Externally Hosted Exchange'  
servers..

(just sends a chill down my spine.. )

We have our own email server with qmail, dovecot, squirrelmail.. etc  
but no calendar..


any suggestions or opinions welcome.

Thanks in advance
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Calendar Solution?

2008-02-26 Thread Roland Smith
On Tue, Feb 26, 2008 at 11:29:14AM -0500, B. Cook wrote:
 Hello All,
 
 Anyone have any suggestions for a 'corporate' calendar?  Either ports or 
 DIY or other ..

Have a look at deskutils/horde-kronolith. It uses the 'horde'
framework; www/horde-base IIRC.
 
 I am trying to get them on the idea of an OSX server..
 
 They are using words like 'Exchange' and 'Externally Hosted Exchange' 
 servers..
 (just sends a chill down my spine.. )

As long as someone else is doing the feeding  caring of the exchange
server... :-) Expensive, though.

Roland
-- 
R.F.Smith   http://www.xs4all.nl/~rsmith/
[plain text _non-HTML_ PGP/GnuPG encrypted/signed email much appreciated]
pgp: 1A2B 477F 9970 BA3C 2914  B7CE 1277 EFB0 C321 A725 (KeyID: C321A725)


pgp5N3M01PqE8.pgp
Description: PGP signature


Re: Calendar Solution?

2008-02-26 Thread Derek Ragona

At 10:29 AM 2/26/2008, B. Cook wrote:

Hello All,

Anyone have any suggestions for a 'corporate' calendar?  Either ports
or DIY or other ..

I am trying to get them on the idea of an OSX server..

They are using words like 'Exchange' and 'Externally Hosted Exchange'
servers..
(just sends a chill down my spine.. )

We have our own email server with qmail, dovecot, squirrelmail.. etc
but no calendar..

any suggestions or opinions welcome.

Thanks in advance


I have used the sunbird application from Mozilla.

-Derek

--
This message has been scanned for viruses and
dangerous content by MailScanner, and is
believed to be clean.

___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Calendar Solution?

2008-02-26 Thread herbert langhans
Maybe this is the thing for you:
http://www.k5n.us/webcalendar.php
Needs Apache and an sql-server. I use it for years now and like the function 
what sends you an email before the appointment.

Cheers
herbs
 

On Tue, 26 Feb 2008 11:29:14 -0500
B. Cook [EMAIL PROTECTED] wrote:

 Hello All,
 
 Anyone have any suggestions for a 'corporate' calendar?  Either ports  
 or DIY or other ..
 
 I am trying to get them on the idea of an OSX server..
 
 They are using words like 'Exchange' and 'Externally Hosted Exchange'  
 servers..
 (just sends a chill down my spine.. )
 
 We have our own email server with qmail, dovecot, squirrelmail.. etc  
 but no calendar..
 
 any suggestions or opinions welcome.
 
 Thanks in advance
 ___
 freebsd-questions@freebsd.org mailing list
 http://lists.freebsd.org/mailman/listinfo/freebsd-questions
 To unsubscribe, send any mail to [EMAIL PROTECTED]
 
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Calendar Solution?

2008-02-26 Thread Da Rock

On Tue, 2008-02-26 at 20:24 +0100, herbert langhans wrote:
 Maybe this is the thing for you:
 http://www.k5n.us/webcalendar.php
 Needs Apache and an sql-server. I use it for years now and like the function 
 what sends you an email before the appointment.
 
 Cheers
 herbs
  
 
 On Tue, 26 Feb 2008 11:29:14 -0500
 B. Cook [EMAIL PROTECTED] wrote:
 
  Hello All,
  
  Anyone have any suggestions for a 'corporate' calendar?  Either ports  
  or DIY or other ..
  
  I am trying to get them on the idea of an OSX server..
  
  They are using words like 'Exchange' and 'Externally Hosted Exchange'  
  servers..
  (just sends a chill down my spine.. )
  
  We have our own email server with qmail, dovecot, squirrelmail.. etc  
  but no calendar..
  
  any suggestions or opinions welcome.
  
  Thanks in advance
  ___
  freebsd-questions@freebsd.org mailing list
  http://lists.freebsd.org/mailman/listinfo/freebsd-questions
  To unsubscribe, send any mail to [EMAIL PROTECTED]
  
 ___
 freebsd-questions@freebsd.org mailing list
 http://lists.freebsd.org/mailman/listinfo/freebsd-questions
 To unsubscribe, send any mail to [EMAIL PROTECTED]
 

I'm having a similar problem. It all depends on what you want it to do
exactly. Do you need to use a client? Do you need to access it from the
web? Does it need a db backend for ease of use?

Many Caldav solutions require Tomcat- if you need or want to use Apache
you'll need to work out which connector to use. Mod_JK in ports is the
only one there that will build to my knowledge.

Evolution claims full CalDAV compatibility, but doesn't and will not
work with Darwin Calendar Server and most others. Bedework looks good,
uses Tomcat, and appears to offer interacting calendars.

I'm using Evolution myself for the fact that it will integrate into the
entire Gnome desktop. But apparently others offer better support than
Evolution for CalDav purposes- sunbird keeps popping up in most of the
CalDav sites.

Having traversed nearly the entire CalDAV server range (Horde has
apparently been discontinued) I found none that worked for what I
needed, but that may not be the case for you. I'm building my own system
for an entirely customised purpose. It'll be a few months before I'm
finished and may or may not be CalDAV per se. But if you post your exact
requirements and limitations then I could probably help you find the
right system.

Also, Darwin Calendar Server would be the same server you'll be using on
Leopard (with a lot more support for it mind), so if you want to start
there it would help you work out your OSX Server later down the track.

Good luck - you'll need it...

___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Calendar Solution?

2008-02-26 Thread Jonathan Chen
On Tue, Feb 26, 2008 at 11:29:14AM -0500, B. Cook wrote:
 Hello All,
 
 Anyone have any suggestions for a 'corporate' calendar?  Either ports  
 or DIY or other ..

What you're looking for is a calendar server. One that you can take a
look at is Bedework http://www.bedework.org/ which runs in a Java Web
Container. It will support calendar clients using iCalendar or CalDAV,
eg: lightning, evolution, outlook express(?) et al.

Cheers.
-- 
Jonathan Chen [EMAIL PROTECTED]
--
If you wish your merit to be known, acknowledge that of other people
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


RE: Calendar Solution?

2008-02-26 Thread Ted Mittelstaedt

 -Original Message-
 From: [EMAIL PROTECTED]
 [mailto:[EMAIL PROTECTED] Behalf Of Roland Smith
 Sent: Tuesday, February 26, 2008 10:19 AM
 To: B. Cook
 Cc: freebsd-questions@freebsd.org
 Subject: Re: Calendar Solution?


  I am trying to get them on the idea of an OSX server..
 
  They are using words like 'Exchange' and 'Externally Hosted Exchange'
  servers..
  (just sends a chill down my spine.. )

 As long as someone else is doing the feeding  caring of the exchange
 server... :-) Expensive, though.


The other problem is that after a period of time you will find the employees
using the mail system to share files, rather than using your
carefully setup shared directories off the main fileserver.  That is
when your performance of an externally hosted exchange server will take
a dump.

My employer hosts exchange servers for customers.  Take my advice,
the only way it really works is to get a T1 from the hosting company to
the remote office, and get rid of all servers at the remote office and
put Microsoft Terminal Server client on all the machines and run a big
terminal server at the hoster, in conjunction with an exchange server.
Any other way and the performance will stink and the connection will be
unreliable, and the employees will bitch.  Naturally, hosters like us
absolutely love people who come in thinking they will have us externally
host an exchange server for them.  We will start them on the server then
over time rope them into moving all their business-critical IT functions
to us.  It's very profitable. Arguably though, any customer dumb enough
to think that they can just get a hoster to externally host an Exchange
server, is too incompetent to be trusted to properly care for their own
data, anyway, and in the long run is better off just paying an outsourcer
like us to do it.

Ted

___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Still looking for a calendar server...

2008-02-19 Thread Beech Rintoul
On Monday 18 February 2008, Ted Mittelstaedt said:
  -Original Message-
  From: [EMAIL PROTECTED]
  [mailto:[EMAIL PROTECTED] Behalf Of Da Rock
  Sent: Monday, February 18, 2008 4:16 PM
  To: freebsd-questions@freebsd.org
  Subject: Re: Still looking for a calendar server...
 
 
 
  I'm currently looking into bedework now- it seems ideal, but
  getting tomcat to work with apache is becoming a challenge. I'm
  using mod_jk but it doesn't appear to be cooperating yet.
 
  What is your experience in building apache modules? The problem
  is mainly in the mod_dav_acl module which needs xattr.h. I'm
  wondering if we can borrow the headers from another source.

 You can borrow whatever headers you need to get the code to
 compile. You may find that it would work a lot better though if you
 change the xattr.h include to:

 include sys/extattr.h

 The problem will be in the link stage.  If the libraries that you
 have linked in do not contain the functions that are defined in
 xattr.h then you will get link failures.

 However I don't really understand why your having problems.  The
 SF page for this, here:

 http://sourceforge.net/projects/moddavacl

 claims:

 Operating System: All POSIX (Linux/BSD/UNIX-like OSes)

 This would indicate a configure script that understands
 FreeBSD is present.  It sounds to me like you are not
 following the instructions included with the mod_dav_acl module
 to build it properly.  What exactly are you doing?  Could you
 post the steps your going through to build this?

 I had thought Mirosoft deprecated all the webdav stuff in
 future IIS servers - maybe there is a lack of interest in the
 industry now?

 Ted

He also might want to look at Horde. You can install from 
www/horde-meta and choose the kronolith module. 

From their website:

The Kronolith calendar provides a robust web-based calendar for any 
number of users or groups, with the ability to show any number of 
calendars in a single overlaid view. Users can create any number of 
calendars and grant read, edit, or full permissions to any user, 
group, or any combination thereof.

Beech

-- 
---
Beech Rintoul - FreeBSD Developer - [EMAIL PROTECTED]
/\   ASCII Ribbon Campaign  | FreeBSD Since 4.x
\ / - NO HTML/RTF in e-mail   | http://www.freebsd.org
 X  - NO Word docs in e-mail | Latest Release:
/ \  - http://www.FreeBSD.org/releases/6.3R/announce.html
---



___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Still looking for a calendar server...

2008-02-19 Thread Da Rock

On Mon, 2008-02-18 at 22:59 -0900, Beech Rintoul wrote:
 On Monday 18 February 2008, Ted Mittelstaedt said:
   -Original Message-
   From: [EMAIL PROTECTED]
   [mailto:[EMAIL PROTECTED] Behalf Of Da Rock
   Sent: Monday, February 18, 2008 4:16 PM
   To: freebsd-questions@freebsd.org
   Subject: Re: Still looking for a calendar server...
  
  
  
   I'm currently looking into bedework now- it seems ideal, but
   getting tomcat to work with apache is becoming a challenge. I'm
   using mod_jk but it doesn't appear to be cooperating yet.
  
   What is your experience in building apache modules? The problem
   is mainly in the mod_dav_acl module which needs xattr.h. I'm
   wondering if we can borrow the headers from another source.
 
  You can borrow whatever headers you need to get the code to
  compile. You may find that it would work a lot better though if you
  change the xattr.h include to:
 
  include sys/extattr.h
 
  The problem will be in the link stage.  If the libraries that you
  have linked in do not contain the functions that are defined in
  xattr.h then you will get link failures.
 
  However I don't really understand why your having problems.  The
  SF page for this, here:
 
  http://sourceforge.net/projects/moddavacl
 
  claims:
 
  Operating System: All POSIX (Linux/BSD/UNIX-like OSes)
 
  This would indicate a configure script that understands
  FreeBSD is present.  It sounds to me like you are not
  following the instructions included with the mod_dav_acl module
  to build it properly.  What exactly are you doing?  Could you
  post the steps your going through to build this?
 
  I had thought Mirosoft deprecated all the webdav stuff in
  future IIS servers - maybe there is a lack of interest in the
  industry now?
 
  Ted
 
 He also might want to look at Horde. You can install from 
 www/horde-meta and choose the kronolith module. 
 
 From their website:
 
 The Kronolith calendar provides a robust web-based calendar for any 
 number of users or groups, with the ability to show any number of 
 calendars in a single overlaid view. Users can create any number of 
 calendars and grant read, edit, or full permissions to any user, 
 group, or any combination thereof.
 
 Beech
 

I understand what you're saying about the usability of the code acroos
platforms, however, the code will only work on systems which support
extended attributes, it must have that header file, and the developer
has refused to build for anything beyond debian (God knows why!). It has
been pointed out in the forums there (Only 3 postings and that includes
myself... hmmm. What does that tell you?) that while the sourceforge
system says its cross platform that it doesn't work cross platforms, and
so should be corrected- and that person was building for bsd too.

So, where does that leave us?

Incidentally, since when do we care what BS Microcrap is doing with
their toy servers? (I've had plenty of crap go on with MS and their
systems, my laptop manufacturer only supports them and gives me curry
every time I ask for warranty, and MS cancelled my hotmail account to
boot. Apparently I transgressed, but I haven't, I have important emails
I can't access now, and their system has no way to contact me with a
reply as to what I've done- life is wonderful!)

The question remains is does kronolith provide caldav access for
evolution, and does it connect via apache?

I'm currently trying to get bedework working, but I'm having trouble
linking Tomcat 6 and Apache (Bedework appears to fit all these criteria
that I require). I can access Tomcat directly, and Apache is ok, I
checked the config for the mod_jk and I think its working, but when I
try to navigate to Tomcat via Apache I get a 404 from Tomcat. Does
anyone know how to fix this? It seems I have the connector working and
there is something in Tomcat to configure but I don't know what.

Thanks for the feedback guys- its all been helpful. I hope I'll have an
answer soon which I'll post back, and maybe make up a how-to, package or
port. Keep it all coming...

Cheers

___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


RE: Still looking for a calendar server...

2008-02-18 Thread Da Rock



 Date: Mon, 18 Feb 2008 15:52:58 +1300
 From: [EMAIL PROTECTED]
 To: [EMAIL PROTECTED]
 CC: freebsd-questions@freebsd.org
 Subject: Re: Still looking for a calendar server...
 
 On Mon, Feb 18, 2008 at 02:21:44AM +, Da Rock wrote:
 
 I've brought this up before, I know, but I need a caldav server that will 
 work with evolution. I've checked out Darwin Calendar Server, but they are 
 not going to solve an issue (as of 2006) that means evolution can't use it, 
 and evolution won't budge either- so a mexican stand-off and I'm caught in 
 the middle (probably with others).
 
 
 You could try Bedework http://www.bedework.org/ and see if that fits
 with what you want. However, it requires Java Web container to live
 in.
 
 Cheers.
 -- 
 Jonathan Chen 
 --
  In mathematics you don't understand things.
You just get used to them.
  - Johann von Neumann
 ___
 freebsd-questions@freebsd.org mailing list
 http://lists.freebsd.org/mailman/listinfo/freebsd-questions
 To unsubscribe, send any mail to [EMAIL PROTECTED]

It looks almost perfect, but once again I have been stumbled. I need to setup 
tomcat to get it working, and tomcat is now installed, but the apache connector 
is the tough point again- I'm trying to install mod_webapp as per instructions 
here (http://www.osnews.com/story/3558), but the port breaks with missing 
includes.

It appears FreeBSD just doesn't want to be a calendar server! I am chasing 
either the developer or another poor soul trying to get the mod_dav_acl (which 
is required by mod_caldav) to work on anything other than linux. Once this 
hurdle is worked out then the caldav module might work very well.

As for bedework I'll keep on that track- I have to get somewhere eventually! 
One way or the other

At the end I'll post the result, and maybe I'll work on a port or something.
_
New music from the Rogue Traders - listen now!
http://ninemsn.com.au/share/redir/adTrack.asp?mode=clickclientID=832referral=hotmailtaglineOct07URL=http://music.ninemsn.com.au/roguetraders___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Still looking for a calendar server...

2008-02-18 Thread Jan-Hendrik Zab
On Mon, 18 Feb 2008 02:21:44 +
Da Rock [EMAIL PROTECTED] wrote:

Hey,
 I've brought this up before, I know, but I need a caldav server that
 will work with evolution. I've checked out Darwin Calendar Server,
 but they are not going to solve an issue (as of 2006) that means
 evolution can't use it, and evolution won't budge either- so a
 mexican stand-off and I'm caught in the middle (probably with others).

I'm currently looking for a caldav/calendar server myself. There are
actually quite a few, but I guess a lot won't met your specific
requirements. To name a few:

caldav:
 - bedework
 - davical
 - zimbra
 - cosmo

webdav:
 - horde
 - phpcalendar

Bedework seems to be a nice choice, I haven't found a way to integrate
tomcat into LDAP yet. But I'm not familiar with tomcat, so that's to be
expected. Davical doesn't seem to care about the access rights I
configured in the web interface, a bug I guess.

 So that brings me back to the Apache module under construction
 (mod_caldav), but nothing seems to be happening with it. I've
 requested support on the forum their at sourceforge, but I have had
 no response for over a week, and no responses have been issued since
 april 2006.

I didn't know that such a module existed, I'll look into it! :)

Jan-Hendrik Zab
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Still looking for a calendar server...

2008-02-18 Thread Da Rock

On Tue, 2008-02-19 at 00:26 +0100, Jan-Hendrik Zab wrote:
 On Mon, 18 Feb 2008 02:21:44 +
 Da Rock [EMAIL PROTECTED] wrote:
 
 Hey,
  I've brought this up before, I know, but I need a caldav server that
  will work with evolution. I've checked out Darwin Calendar Server,
  but they are not going to solve an issue (as of 2006) that means
  evolution can't use it, and evolution won't budge either- so a
  mexican stand-off and I'm caught in the middle (probably with others).
 
 I'm currently looking for a caldav/calendar server myself. There are
 actually quite a few, but I guess a lot won't met your specific
 requirements. To name a few:
 
 caldav:
  - bedework
  - davical
  - zimbra
  - cosmo
 
 webdav:
  - horde
  - phpcalendar
 
 Bedework seems to be a nice choice, I haven't found a way to integrate
 tomcat into LDAP yet. But I'm not familiar with tomcat, so that's to be
 expected. Davical doesn't seem to care about the access rights I
 configured in the web interface, a bug I guess.
 
  So that brings me back to the Apache module under construction
  (mod_caldav), but nothing seems to be happening with it. I've
  requested support on the forum their at sourceforge, but I have had
  no response for over a week, and no responses have been issued since
  april 2006.
 
 I didn't know that such a module existed, I'll look into it! :)
 
   Jan-Hendrik Zab

I'm currently looking into bedework now- it seems ideal, but getting
tomcat to work with apache is becoming a challenge. I'm using mod_jk but
it doesn't appear to be cooperating yet.

What is your experience in building apache modules? The problem is
mainly in the mod_dav_acl module which needs xattr.h. I'm wondering if
we can borrow the headers from another source.

I haven't checked zimbra or cosmo properly yet, but at first glance it
appeared they didn't quite have what I wanted.

___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


RE: Still looking for a calendar server...

2008-02-18 Thread Ted Mittelstaedt


 -Original Message-
 From: [EMAIL PROTECTED]
 [mailto:[EMAIL PROTECTED] Behalf Of Da Rock
 Sent: Monday, February 18, 2008 4:16 PM
 To: freebsd-questions@freebsd.org
 Subject: Re: Still looking for a calendar server...
 
 
 
 I'm currently looking into bedework now- it seems ideal, but getting
 tomcat to work with apache is becoming a challenge. I'm using mod_jk but
 it doesn't appear to be cooperating yet.
 
 What is your experience in building apache modules? The problem is
 mainly in the mod_dav_acl module which needs xattr.h. I'm wondering if
 we can borrow the headers from another source.
 

You can borrow whatever headers you need to get the code to compile.
You may find that it would work a lot better though if you
change the xattr.h include to:

include sys/extattr.h

The problem will be in the link stage.  If the libraries that you
have linked in do not contain the functions that are defined in
xattr.h then you will get link failures.

However I don't really understand why your having problems.  The
SF page for this, here:

http://sourceforge.net/projects/moddavacl

claims:

Operating System: All POSIX (Linux/BSD/UNIX-like OSes)

This would indicate a configure script that understands
FreeBSD is present.  It sounds to me like you are not
following the instructions included with the mod_dav_acl module
to build it properly.  What exactly are you doing?  Could you
post the steps your going through to build this?

I had thought Mirosoft deprecated all the webdav stuff in
future IIS servers - maybe there is a lack of interest in the
industry now?

Ted
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Still looking for a calendar server...

2008-02-17 Thread Da Rock

I've brought this up before, I know, but I need a caldav server that will work 
with evolution. I've checked out Darwin Calendar Server, but they are not going 
to solve an issue (as of 2006) that means evolution can't use it, and evolution 
won't budge either- so a mexican stand-off and I'm caught in the middle 
(probably with others).

So that brings me back to the Apache module under construction (mod_caldav), 
but nothing seems to be happening with it. I've requested support on the forum 
their at sourceforge, but I have had no response for over a week, and no 
responses have been issued since april 2006.

So now I'm wondering where to start: is it possible to build on this code to 
achieve what I want? Does anyone know where to get help developing an Apache 
module? (especially seeing as this will be my first attempt at c++ programming)

Current issues with this module atm is a missing xattr.h file. I'm wondering if 
it can be changed to support the extended attributes natively in freebsd ufs2. 
I'd also like to consider using mysql or other db as a backend.

I'm scouring the script as of now, and I figure that an Apache module will be 
more stable and easier to administer. Any help would be appreciated here.

Cheers
_
New music from the Rogue Traders - listen now!
http://ninemsn.com.au/share/redir/adTrack.asp?mode=clickclientID=832referral=hotmailtaglineOct07URL=http://music.ninemsn.com.au/roguetraders___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Still looking for a calendar server...

2008-02-17 Thread Jonathan Chen
On Mon, Feb 18, 2008 at 02:21:44AM +, Da Rock wrote:
 
 I've brought this up before, I know, but I need a caldav server that will 
 work with evolution. I've checked out Darwin Calendar Server, but they are 
 not going to solve an issue (as of 2006) that means evolution can't use it, 
 and evolution won't budge either- so a mexican stand-off and I'm caught in 
 the middle (probably with others).
 

You could try Bedework http://www.bedework.org/ and see if that fits
with what you want. However, it requires Java Web container to live
in.

Cheers.
-- 
Jonathan Chen [EMAIL PROTECTED]
--
 In mathematics you don't understand things.
   You just get used to them.
 - Johann von Neumann
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Darwin Calendar Server not starting - Kerberos problem

2008-02-11 Thread Da Rock

I've just been trying to get a calendar server running for my network, and have 
tried a couple of options including webcalendar, and an apache calDAV module 
(this won't build due to a lack of xattr.h.

I ended trying to build the Darwin Calendar Server based on these instructions 
(http://www.royhooper.ca/blog/articles/2007/07/07/installing-the-darwin-calendar-server-on-freebsd)
 which were quite reasonable, and which I finally worked out (see freebsd-ports 
list). But it won't start. It loops saying that kerberos is not supported.

According to the instructions, kerberos needs to be there, but not configured. 
So I didn't configure it originally, but when it failed I tried configuring it. 
I started it, but it fails again saying its incorrectly configured, and I have 
no idea whats wrong. Apparently the database is not operational or something 
which I can't work out as I have no idea about kerberos and I followed the 
instructions in the handbook.

Any ideas? What info do I need to post? Thanks in advance guys
_
Your Future Starts Here. Dream it? Then be it! Find it at www.seek.com.au
http://a.ninemsn.com.au/b.aspx?URL=http%3A%2F%2Fninemsn%2Eseek%2Ecom%2Eau%2F%3Ftracking%3Dsk%3Ahet%3Ask%3Anine%3A0%3Ahot%3Atext_t=764565661_r=OCT07_endtext_Future_m=EXT___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Calendar for 7.0-RELEASE

2007-06-29 Thread Jose Luis Alarcon Sanchez
Hello Folks.

Please, anyone knows when is planned (aprox.) FreeBSD 7.0-RELEASE
will be available?.

Thanks you very much, in advance.

Regards.

Jose.

-- 
http://www.lordofunix.org/
 
Not Registered GNU/Hurd User.
Registered BSD User 51101.
Registered Linux User #213309.
Memories. You are talking about memories.
Rick Deckard. Blade Runner.


pgp0rylYx3Wpl.pgp
Description: PGP signature


Re: Calendar for 7.0-RELEASE

2007-06-29 Thread Oliver Herold
http://www.freebsd.org/releng/

Cheers,

Oliver

On Fri, Jun 29, 2007 at 01:30:45PM +0200, Jose Luis Alarcon Sanchez wrote:
 Hello Folks.
 
 Please, anyone knows when is planned (aprox.) FreeBSD 7.0-RELEASE
 will be available?.
 
 Thanks you very much, in advance.
 
 Regards.
 
 Jose.
 
 -- 
 http://www.lordofunix.org/
  
 Not Registered GNU/Hurd User.
 Registered BSD User 51101.
 Registered Linux User #213309.
 Memories. You are talking about memories.
 Rick Deckard. Blade Runner.



-- 
You will be singled out for promotion in your work.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Calendar for 7.0-RELEASE

2007-06-29 Thread John Nielsen
On Friday 29 June 2007 09:43:12 am Oliver Herold wrote:
 On Fri, Jun 29, 2007 at 01:30:45PM +0200, Jose Luis Alarcon Sanchez wrote:
  Please, anyone knows when is planned (aprox.) FreeBSD 7.0-RELEASE
  will be available?.

 http://www.freebsd.org/releng/

Also http://www.freebsd.org/releases/7.0R/schedule.html, although there's not 
much on it yet. The code freeze has definitely started though, so I expect 
the above links will be updated fairly regularly in the coming weeks.

JN
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Squirrelmail Calendar Broken After Upgrade?

2007-02-27 Thread chris
I just upgraded php due to a security issue, so I have upgraded
squirrelmail too.  The calendar no longer has administration options and
all of the entries we have added disappeared.  I looked on their site for
documentation of this issue, but no luck.  Maybe it is a specific issue
with the ports anyone else experiencing the same problem?

Chris Maness

___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Squirrelmail Calendar Broken After Upgrade?

2007-02-27 Thread Kevin Kinsey

[EMAIL PROTECTED] wrote:

I just upgraded php due to a security issue, so I have upgraded
squirrelmail too.  The calendar no longer has administration options and
all of the entries we have added disappeared.  I looked on their site for
documentation of this issue, but no luck.  Maybe it is a specific issue
with the ports anyone else experiencing the same problem?



Just guessing, but it seems kind of likely that upgrading Squirrelmail 
overwrote your config file?  I've not used SM for a while (RoundCube 
now) but most PHP apps have a config.php or similar which might 
contains such things at database authentication information ... the lack 
of which would, most likely, cause just the sort of effect you describe.


Kevin Kinsey

--
Calvin: I wonder where we go when we die.
Hobbes: Pittsburgh?
Calvin: You mean if we're good or if we're bad?

___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Squirrelmail Calendar Broken After Upgrade?

2007-02-27 Thread Wojciech Puchar



I just upgraded php due to a security issue, so I have upgraded
squirrelmail too.  The calendar no longer has administration options and
all of the entries we have added disappeared.  I looked on their site for


Maybe OT, but check sqwebmail. it runs without PHP, mysql and other such 
things, just requires Maildir folders and it works well.


no bugs and VERY fast.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Squirrelmail Calendar Broken After Upgrade?

2007-02-27 Thread chris
 [EMAIL PROTECTED] wrote:
 I just upgraded php due to a security issue, so I have upgraded
 squirrelmail too.  The calendar no longer has administration options and
 all of the entries we have added disappeared.  I looked on their site
 for
 documentation of this issue, but no luck.  Maybe it is a specific issue
 with the ports anyone else experiencing the same problem?


 Just guessing, but it seems kind of likely that upgrading Squirrelmail
 overwrote your config file?  I've not used SM for a while (RoundCube
 now) but most PHP apps have a config.php or similar which might
 contains such things at database authentication information ... the lack
 of which would, most likely, cause just the sort of effect you describe.

 Kevin Kinsey

 --
 Calvin:   I wonder where we go when we die.
 Hobbes:   Pittsburgh?
 Calvin:   You mean if we're good or if we're bad?



Thanks, it wasn't the config file, but you clued me in on the fact that
the calendar plugin that comes with the distribution overwrote the 3rd
party shared calendar.  I just untared back over it and it is fine.

Chris Maness

___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


My birthday calendar

2007-02-12 Thread Vijay D

   Vijay D ([EMAIL PROTECTED]) is a member of BirthdayTime.com
   and wants to know your birthday.
   Vijay D says:
   Hi !!
   I'm inviting you to enter your birthday into my calendar at
   BirthdayTime.
   You will help me remember it!
   Click here to enter your birthday into my list:[2]
   http://www.birthdaytime.com/add_birthday/Vijay D
   Thanks!
   Vijay D
   ---
   What is BirthdayTime?
   BirthdayTime is a free birthday/holiday reminder service that notifies
   you about upcoming dates before it is too late!
   ---
   Why did I receive this email?
   Vijay D ([EMAIL PROTECTED]) wants to be notified when your
   birthday is near. It's safe, fast, and provides a valuable service!
   ---
   I don't know who Vijay D is!
   It's possible that you were included in someone's birthday request
   because you appear in his/her email contact list.
   ---
   This email was sent by Vijay D ([EMAIL PROTECTED])
   To stop receiving emails from birthdaytime, please click here:
   http://www.birthdaytime.com/cancelfollow.php?id=MbFWaDcn50zG0Y44IdtHiW
   Np0sKeVMn%2BVbPZhxltIR8%3Ddata=gpGqFOG2ZV9izgpluSTpHP6YRMOD4SG3BcGOl9
   OqePqlnR%2Fo5QXfaA%3D%3D
   BirthdayTime's offices are located at 2202 S.Figueroa St, Los Angeles,
   CA 90007.

References

   1. mailto:[EMAIL PROTECTED]
   2. 
http://www.birthdaytime.com/addyourbday.php?id=MbFWaDcn50zG0Y44IdtHiWNp0sKeVMn%2BVbPZhxltIR8%3Ddata=gpGqFOG2ZV9izgpluSTpHP6YRMOD4SG3BcGOl9OqePqlnR%2Fo5QXfaA%3D%3D
   3. mailto:[EMAIL PROTECTED]
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


which web mail / calendar to use

2007-01-02 Thread Michael Grant

I'm looking for a web mail and calendar to install on my freebsd box.
Ideally something web 2.0 like gmail and google calendar is what my
users are after.

In some searching around, I turned up Hula (http://hula-project.org)
and Zimbra (http://www.zimbra.com).  Both have open-source versions.
Zimbra seems more mature.  Neither seems to be easy to install on an
existing freebsd box and both seem to replace everything including the
mailer and popd/imapd.  It's not clear to me if anyone has ever
succeeded in getting Hula working on Freebsd.

Has anyone had any luck with any other packages?

Michael Grant
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: which web mail / calendar to use

2007-01-02 Thread Girish Venkatachalam
On Tue, Jan 02, 2007 at 11:43:33AM +0100, Michael Grant wrote:
 I'm looking for a web mail and calendar to install on my freebsd box.
 Ideally something web 2.0 like gmail and google calendar is what my
 users are after.
 
 In some searching around, I turned up Hula (http://hula-project.org)
 and Zimbra (http://www.zimbra.com).  Both have open-source versions.
 Zimbra seems more mature.  Neither seems to be easy to install on an
 existing freebsd box and both seem to replace everything including the
 mailer and popd/imapd.  It's not clear to me if anyone has ever
 succeeded in getting Hula working on Freebsd.
 
 Has anyone had any luck with any other packages?
 

roundcube seems to be the most talked about Ajax webmail software out there.

I would go for a simple Javascript web calender. I am yet to find one since I 
never looked for it. :)

Hope this helps.

regards,
Girish

-- 
When your mind is purified like a mirror knowledge is reflected in it.
Adi Sankaracharya, Hindu saint
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: which web mail / calendar to use

2007-01-02 Thread Norberto Meijome
On Tue, 2 Jan 2007 17:21:42 +0530
Girish Venkatachalam [EMAIL PROTECTED] wrote:

 roundcube seems to be the most talked about Ajax webmail software out there.
 
 I would go for a simple Javascript web calender. I am yet to find one since I
 never looked for it. :)

I have to say that roundcube is pretty good. I've set it up late last week and
it worked just fine out of the box. Not using calendar, but mainly the mail
client to a local IMAP (or remote, and it talks over TLS to it, in case you are
concerned about security ).

B

_
{Beto|Norberto|Numard} Meijome

All that is necessary for the triumph of evil is that good men do nothing.
  Edmund Burke

I speak for myself, not my employer. Contents may be hot. Slippery when wet.
Reading disclaimers makes you go blind. Writing them is worse. You have been
Warned.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: which web mail / calendar to use

2007-01-02 Thread Nathan Vidican

Michael Grant wrote:

I'm looking for a web mail and calendar to install on my freebsd box.
Ideally something web 2.0 like gmail and google calendar is what my
users are after.

In some searching around, I turned up Hula (http://hula-project.org)
and Zimbra (http://www.zimbra.com).  Both have open-source versions.
Zimbra seems more mature.  Neither seems to be easy to install on an
existing freebsd box and both seem to replace everything including the
mailer and popd/imapd.  It's not clear to me if anyone has ever
succeeded in getting Hula working on Freebsd.

Has anyone had any luck with any other packages?

Michael Grant
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to 
[EMAIL PROTECTED]



I'm using Horde, has a nice homepage-builder like, with support for 
calendars, email, and news/rss feeds as well. Clean, simple, easy to 
navigate interface - highly reccomend for ldap email. If using pop3, or 
running on local mail server - go with OpenWebMail - way easier, and 
supports decent calendaring interface.


Just my two cents ;) - been using openwebmail as primary mail reader for 
passed several years, now using imap and Mozilla Thunderbird + Horde via 
web when not at desk... both work excellent.


--
Nathan Vidican
[EMAIL PROTECTED]
Windsor Match Plate  Tool Ltd.
http://www.wmptl.com/
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


RE: which web mail / calendar to use

2007-01-02 Thread Marwan Sultan

I cannot find better than OpenWebMail
Its openwebmail.org
really easy..supporting almost everything,
it has any feature you are looking for...
virtual users, real, quota, password changesetc...
give it a try.

have fun.


I'm looking for a web mail and calendar to install on my freebsd box.
Ideally something web 2.0 like gmail and google calendar is what my
users are after.

In some searching around, I turned up Hula (http://hula-project.org)
and Zimbra (http://www.zimbra.com).  Both have open-source versions.
Zimbra seems more mature.  Neither seems to be easy to install on an
existing freebsd box and both seem to replace everything including the
mailer and popd/imapd.  It's not clear to me if anyone has ever
succeeded in getting Hula working on Freebsd.

Has anyone had any luck with any other packages?

Michael Grant
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to 
[EMAIL PROTECTED]


_
Express yourself instantly with MSN Messenger! Download today it's FREE! 
http://messenger.msn.click-url.com/go/onm00200471ave/direct/01/


___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


calendar and email reminder application

2006-12-21 Thread Noah

Hi there,

I am looking for a recommendation for application that I can place on 
one of my FreeBSD servers.  It is a web-based calendar system that I can 
schedule recurring  email reminders that are automatically sent.


Any clues here?

Cheers,

Noah

___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: calendar

2006-09-26 Thread Lowell Gilbert
Michael S [EMAIL PROTECTED] writes:

 Where does one get an updated calendar.judaic? Mine seems to be out of sync.

Nobody's maintaining that file these days.  Because the holidays are
scheduled on a whole different calendar, they need to be recalculated
every year.  A tool that actually understands the Hebrew calendar
would avoid this problem to some extent; see the calendar functions in
emacs for an example.

Please feel free to submit the annual updates for the file...
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: calendar

2006-09-26 Thread [EMAIL PROTECTED]
On   Mon, 25 Sep 2006 05:39:08 -0700 (PDT)
Michael S [EMAIL PROTECTED]   wrote

 Good day all.

 Where does one get an updated calendar.judaic? Mine seems to be out
of  sync.

 Thanks in advance.
 Michael

On the internet, google  Jewish calendar, try it both with the quotes
and without them (I forget which one I used, but I think with is better).

___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


calendar

2006-09-25 Thread Michael S
Good day all.

Where does one get an updated calendar.judaic? Mine seems to be out of sync.

Thanks in advance.
Michael


___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: calendar

2006-09-04 Thread RW
On Sunday 03 September 2006 18:01, Michael S wrote:
 Good day all.

 I have a question about calendar.usholidays. In the man page for
 calendar it says that this file must be updated every year. Is it
 enough just to cvsup, buildworld and installworld?
 I am following RELENG_6_1.

So am I, and my copy of  /usr/share/calendar/calendar.usholiday has  CVS 
comments that suggest it dates from 2003. Most of the entries are perpetual 
though.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


calendar

2006-09-03 Thread Michael S

Good day all.

I have a question about calendar.usholidays. In the man page for
calendar it says that this file must be updated every year. Is it
enough just to cvsup, buildworld and installworld?
I am following RELENG_6_1.

Thanks in advance.
Michael
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: seamonkey -- building calendar (option)

2006-05-10 Thread martinko
Garrett Cooper wrote:
 
 
 martinko wrote:
 hello!

 i've just upgraded from mozilla (1.7.12) to seamonkey (1.0.1) and
 discovered the following issue:

 there's WITH_CALENDAR make switch in the port which is/was supposed to
 turn building of mozilla with calendar module. i've been happily using
 it with mozilla suite. the switch is still in seamonkey's makefile but i
 haven't got calendar module after compilation of the port. :-(

 /note that i'm running seamonkey on freebsd 6.1-rc, after just
 reinstalling all my ports from scratch./

 any thoughts or suggestions pls ??

 cheers,

 martin
   
For now you can just download the extension from Mozilla's site
 http://www.mozilla.org/projects/calendar/.
 -Garrett


garrett, have you actually tried it pls ?
i'm asking because, on my work laptop running winxp, i upgraded from
mozilla to seamonkey and therefore i had to upgrade calendar extension
too, at which point i found out it is not functional at all (and
eventually i had to reinstall seamonkey to get rid of it).

m.

___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


seamonkey -- building calendar (option)

2006-05-08 Thread martinko
hello!

i've just upgraded from mozilla (1.7.12) to seamonkey (1.0.1) and
discovered the following issue:

there's WITH_CALENDAR make switch in the port which is/was supposed to
turn building of mozilla with calendar module. i've been happily using
it with mozilla suite. the switch is still in seamonkey's makefile but i
haven't got calendar module after compilation of the port. :-(

/note that i'm running seamonkey on freebsd 6.1-rc, after just
reinstalling all my ports from scratch./

any thoughts or suggestions pls ??

cheers,

martin

___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: seamonkey -- building calendar (option)

2006-05-08 Thread Garrett Cooper



martinko wrote:

hello!

i've just upgraded from mozilla (1.7.12) to seamonkey (1.0.1) and
discovered the following issue:

there's WITH_CALENDAR make switch in the port which is/was supposed to
turn building of mozilla with calendar module. i've been happily using
it with mozilla suite. the switch is still in seamonkey's makefile but i
haven't got calendar module after compilation of the port. :-(

/note that i'm running seamonkey on freebsd 6.1-rc, after just
reinstalling all my ports from scratch./

any thoughts or suggestions pls ??

cheers,

martin
  
   For now you can just download the extension from Mozilla's site 
http://www.mozilla.org/projects/calendar/.

-Garrett
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: seamonkey -- building calendar (option)

2006-05-08 Thread Kevin Kinsey

martinko wrote:

hello!

i've just upgraded from mozilla (1.7.12) to seamonkey (1.0.1) and
discovered the following issue:

there's WITH_CALENDAR make switch in the port which is/was supposed to
turn building of mozilla with calendar module. i've been happily using
it with mozilla suite. the switch is still in seamonkey's makefile but i
haven't got calendar module after compilation of the port. :-(

/note that i'm running seamonkey on freebsd 6.1-rc, after just
reinstalling all my ports from scratch./

any thoughts or suggestions pls ??



Check their site --- something jars my memory.  Any
chance they're splitting off the calendar under another
name?

Just a guess,

Kevin Kinsey

--
Education is learning what you didn't even know you didn't know.
-- Daniel J. Boorstin

___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


calendar scheduler

2005-12-08 Thread Mark Busby
I've been searching for a web-based calendar, scheduler and message board for a 
small network of 15 employees. I saw one about a year ago that used 
bsd-apache-php and any browser could access it, but I've been unable to find it 
now. Any suggestions to fill the need?

___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: calendar scheduler

2005-12-08 Thread Eric F Crist

On Dec 8, 2005, at 9:51 AM, Mark Busby wrote:

I've been searching for a web-based calendar, scheduler and message  
board for a small network of 15 employees. I saw one about a year  
ago that used bsd-apache-php and any browser could access it, but  
I've been unable to find it now. Any suggestions to fill the need?


Take a look at eGroupware.  Don't remember if it's in the ports tree  
or not...

-
Eric F Crist
Secure Computing Networks
http://www.secure-computing.net



___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Microsoft Outlook Calendar Sharing

2005-09-05 Thread Garrett Cooper

On Sep 5, 2005, at 5:14 PM, Shane James wrote:


Hey guys,

Can you suggest a nice 'Microsoft Exchange' clone or a daemon that  
can allow 'Microsoft Calendar sharing' to interface with it?


Regards,
Shane James


I don't know of any one program in particular, but if people had  
access to a shared calendar via a shared folder or could transfer the  
calendar to a shared location that is 'publishable' to, you could  
always use mozilla's calendar plugin http://www.mozilla.org/projects/ 
calendar in either mozilla, firefox, or thunderbird. Sunbird isn't  
really being supported anymore, even though it's a fairly nice  
separate program-for at least Windows. I had lots of issues compiling/ 
running the binary it in Linux, and I assume that it's similar in  
FreeBSD.

-Garrett
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Microsoft Outlook Calendar Sharing

2005-09-05 Thread Shane James

I need it specifically for Microsoft Outlook :/

- Original Message - 
From: Garrett Cooper [EMAIL PROTECTED]

To: Shane James [EMAIL PROTECTED]
Cc: FreeBSD Questions freebsd-questions@freebsd.org
Sent: Monday, September 05, 2005 10:54 AM
Subject: Re: Microsoft Outlook Calendar Sharing



On Sep 5, 2005, at 5:14 PM, Shane James wrote:


Hey guys,

Can you suggest a nice 'Microsoft Exchange' clone or a daemon that  can 
allow 'Microsoft Calendar sharing' to interface with it?


Regards,
Shane James


I don't know of any one program in particular, but if people had 
access to a shared calendar via a shared folder or could transfer the 
calendar to a shared location that is 'publishable' to, you could  always 
use mozilla's calendar plugin http://www.mozilla.org/projects/ calendar 
in either mozilla, firefox, or thunderbird. Sunbird isn't  really being 
supported anymore, even though it's a fairly nice  separate program-for at 
least Windows. I had lots of issues compiling/ running the binary it in 
Linux, and I assume that it's similar in  FreeBSD.

-Garrett
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to 
[EMAIL PROTECTED]




___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Microsoft Outlook Calendar Sharing

2005-09-05 Thread Shane James
I need it specifically for Microsoft Outlook :/
  - Original Message - 
  From: Garrett Cooper 
  To: Shane James 
  Cc: FreeBSD Questions 
  Sent: Monday, September 05, 2005 10:54 AM
  Subject: Re: Microsoft Outlook Calendar Sharing


  On Sep 5, 2005, at 5:14 PM, Shane James wrote:


Hey guys,


Can you suggest a nice 'Microsoft Exchange' clone or a daemon that can 
allow 'Microsoft Calendar sharing' to interface with it?


Regards,
Shane James


  I don't know of any one program in particular, but if people had access 
to a shared calendar via a shared folder or could transfer the calendar to a 
shared location that is 'publishable' to, you could always use mozilla's 
calendar plugin http://www.mozilla.org/projects/calendar in either mozilla, 
firefox, or thunderbird. Sunbird isn't really being supported anymore, even 
though it's a fairly nice separate program-for at least Windows. I had lots of 
issues compiling/running the binary it in Linux, and I assume that it's similar 
in FreeBSD.
  -Garrett
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Microsoft Outlook Calendar Sharing

2005-09-05 Thread Garrett Cooper

On Sep 5, 2005, at 6:10 PM, Shane James wrote:


On Sep 5, 2005, at 5:14 PM, Shane James wrote:



Good luck finding something something because it sounds like the  
Outlook Calendar sharing stuff is fairly new (see http:// 
www.slipstick.com/outlook/share.htm), and unless you plan to use  
something with iCalendar support (which the last time I checked  
Outlook, wasn't supported but is the preferred format for Apple's  
Calendar program), you'll have to wait a while.

-Garrett
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Microsoft Outlook Calendar Sharing

2005-09-05 Thread Leonidas Tsampros
On Mon, Sep 05, 2005 at 06:25:18PM +0900, Garrett Cooper wrote:
 On Sep 5, 2005, at 6:10 PM, Shane James wrote:
 
 On Sep 5, 2005, at 5:14 PM, Shane James wrote:
 
 
 Good luck finding something something because it sounds like the  
 Outlook Calendar sharing stuff is fairly new (see http:// 
 www.slipstick.com/outlook/share.htm), and unless you plan to use  
 something with iCalendar support (which the last time I checked  
 Outlook, wasn't supported but is the preferred format for Apple's  
 Calendar program), you'll have to wait a while.
 -Garrett


Visit this link:
http://mirror.open-xchange.org/ox/EN/community/

It's about an open-xchange server. I have never used it though but it
may suit your needs.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Microsoft Outlook Calendar Sharing

2005-09-05 Thread Sean

Shane James wrote:

I need it specifically for Microsoft Outlook :/
  - Original Message - 
  From: Garrett Cooper 
  To: Shane James 
  Cc: FreeBSD Questions 
  Sent: Monday, September 05, 2005 10:54 AM

  Subject: Re: Microsoft Outlook Calendar Sharing


  On Sep 5, 2005, at 5:14 PM, Shane James wrote:


Hey guys,


Can you suggest a nice 'Microsoft Exchange' clone or a daemon that can 
allow 'Microsoft Calendar sharing' to interface with it?


Regards,
Shane James


  I don't know of any one program in particular, but if people had access to a 
shared calendar via a shared folder or could transfer the calendar to a shared 
location that is 'publishable' to, you could always use mozilla's calendar plugin 
http://www.mozilla.org/projects/calendar in either mozilla, firefox, or 
thunderbird. Sunbird isn't really being supported anymore, even though it's a fairly 
nice separate program-for at least Windows. I had lots of issues compiling/running 
the binary it in Linux, and I assume that it's similar in FreeBSD.
  -Garrett
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]



I thought latest version of Evolution from Novell/Ximian supported Exchange?
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


RE: web calendar program recommendation

2005-06-17 Thread Ted Mittelstaedt


-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] Behalf Of Bob Bomar
Sent: Thursday, June 16, 2005 9:18 AM
To: Noah; [EMAIL PROTECTED]
Subject: Re: web calendar program recommendation


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Noah wrote:
| FreeBSD-4.11 R3
|
|
| I am looking for a really nice calendar program that I can 
run from a web
| interface.  That has the ability to import my calendar from my palm.
|
| horde is nice but I cant import any of my palm calendars.
|
| neither can webcalendar unless there is some recent update in 
the past 3
| months that does it now.
|
| evolution is nice but I think this is X only and not for the 
web.  please
| correct me if I am wrong.
|
| Please pass along any recommendations.

I use deskutils/phpicalendar.  iCal on my Mac is able to
sync with it. 
 There are several out there.  Another that
I have used is Web Calendar, http://www.k5n.us/webcalendar.php.
Its pretty good.q


The problem isn't the applications.  The problem is that Palm in it's
infinite stupidity does not support any of the standardized calendar
syncing formats.  And your also confused because the ical on a Mac
isn't the same thing as IETF's standard  RFC2445 spec iCAL.

Palm claims support of ical for their handhelds but they are talking
about the ical application on a Mac.  They aren't talking about the
standards-based RFC, which is what Horde and all the other calendaring
applications support.

Please see the following for enlightenment:

http://zgp.org/pipermail/linux-elitists/2004-January/008663.html

http://linuxmafia.com/faq/Apps/scheduling.html

About the only thing that the OP can do is sync to Palm Desktop on
a 'doze box then export the calendar from that comma-delimited then
suck that into Horde.

Ted
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: web calendar program recommendation

2005-06-17 Thread Chad Leigh -- Shire.Net LLC


On Jun 17, 2005, at 12:20 AM, Ted Mittelstaedt wrote:






-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] Behalf Of Bob Bomar
Sent: Thursday, June 16, 2005 9:18 AM
To: Noah; [EMAIL PROTECTED]
Subject: Re: web calendar program recommendation


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Noah wrote:
| FreeBSD-4.11 R3
|
|
| I am looking for a really nice calendar program that I can
run from a web
| interface.  That has the ability to import my calendar from my  
palm.

|
| horde is nice but I cant import any of my palm calendars.
|
| neither can webcalendar unless there is some recent update in
the past 3
| months that does it now.
|
| evolution is nice but I think this is X only and not for the
web.  please
| correct me if I am wrong.
|
| Please pass along any recommendations.

I use deskutils/phpicalendar.  iCal on my Mac is able to
sync with it.
There are several out there.  Another that
I have used is Web Calendar, http://www.k5n.us/webcalendar.php.
Its pretty good.q




The problem isn't the applications.  The problem is that Palm in it's
infinite stupidity does not support any of the standardized calendar
syncing formats.  And your also confused because the ical on a Mac
isn't the same thing as IETF's standard  RFC2445 spec iCAL.


Uhh, I have not tried to interoperate but Apple iCal uses .ics files  
when publishing or sending invites.  Those seem to be the same as  
your RFC 2445 spec iCAL.  Your linuxmafia link below even shows this...





Palm claims support of ical for their handhelds but they are talking
about the ical application on a Mac.  They aren't talking about the
standards-based RFC, which is what Horde and all the other calendaring
applications support.


Now, palm may synch directly to the Apple iCal data and not to an ics  
file, I don't know, so in that way you would be right.  But Apple  
iCal seems to use the standard iCAL format for communications.





Please see the following for enlightenment:

http://zgp.org/pipermail/linux-elitists/2004-January/008663.html

http://linuxmafia.com/faq/Apps/scheduling.html

About the only thing that the OP can do is sync to Palm Desktop on
a 'doze box then export the calendar from that comma-delimited then
suck that into Horde.


of on a Mac and then use Apple iCal to publish that to Horde or whatever

Chad



Ted
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions- 
[EMAIL PROTECTED]




---
Chad Leigh -- Shire.Net LLC
Your Web App and Email hosting provider
[EMAIL PROTECTED]


___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: web calendar program recommendation

2005-06-17 Thread Andrew L. Gould
On Thursday 16 June 2005 08:38 am, Noah wrote:
 FreeBSD-4.11 R3


 I am looking for a really nice calendar program that I can run from a
 web interface.  That has the ability to import my calendar from my
 palm.

 horde is nice but I cant import any of my palm calendars.

 neither can webcalendar unless there is some recent update in the
 past 3 months that does it now.

 evolution is nice but I think this is X only and not for the web. 
 please correct me if I am wrong.

 Please pass along any recommendations.

 Thanks in advance,

 Noah

If you're just trying to get remote access to your calendar using a web 
browser, you could use any palm-syncable software and tightvnc.  You 
can find tightvnc in the ports.  Tightvnc has a small web server that 
allows access to your desktop from a remote internet browser.  

Unfortunately, this does not facilitate remote syncing of your palm 
device.

To view tightvnc from a web browser, point your url to your desktop 
machine using port 5800 +  the display number.

Example:
I sync my palm pilot using the jpilot port.  I invoke tightvnc on 
display 1 on my desktop at hostname.com using:
vncserver :1

To run my desktop from a remote browser, I would point my browser to:
http://hostname.com:5801
Then I run jpilot on my desktop.

I hope this helps.

Andrew Gould
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


RE: web calendar program recommendation

2005-06-17 Thread Ted Mittelstaedt


-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] Behalf Of Chad Leigh --
Shire.Net LLC
Sent: Thursday, June 16, 2005 11:46 PM
To: Ted Mittelstaedt
Cc: FreeBSD Questions
Subject: Re: web calendar program recommendation



On Jun 17, 2005, at 12:20 AM, Ted Mittelstaedt wrote:




 -Original Message-
 From: [EMAIL PROTECTED]
 [mailto:[EMAIL PROTECTED] Behalf Of Bob Bomar
 Sent: Thursday, June 16, 2005 9:18 AM
 To: Noah; [EMAIL PROTECTED]
 Subject: Re: web calendar program recommendation


 -BEGIN PGP SIGNED MESSAGE-
 Hash: SHA1

 Noah wrote:
 | FreeBSD-4.11 R3
 |
 |
 | I am looking for a really nice calendar program that I can
 run from a web
 | interface.  That has the ability to import my calendar from my
 palm.
 |
 | horde is nice but I cant import any of my palm calendars.
 |
 | neither can webcalendar unless there is some recent update in
 the past 3
 | months that does it now.
 |
 | evolution is nice but I think this is X only and not for the
 web.  please
 | correct me if I am wrong.
 |
 | Please pass along any recommendations.

 I use deskutils/phpicalendar.  iCal on my Mac is able to
 sync with it.
 There are several out there.  Another that
 I have used is Web Calendar, http://www.k5n.us/webcalendar.php.
 Its pretty good.q



 The problem isn't the applications.  The problem is that Palm in it's
 infinite stupidity does not support any of the standardized calendar
 syncing formats.  And your also confused because the ical on a Mac
 isn't the same thing as IETF's standard  RFC2445 spec iCAL.

Uhh, I have not tried to interoperate but Apple iCal uses .ics files
when publishing or sending invites.  Those seem to be the same as
your RFC 2445 spec iCAL.  Your linuxmafia link below even shows this...


Perhaps you are right and the iCal app in MacOS X can output
RFC-compliant
.ics files.  But the syncing program that talks from MacOS X's iCal and
the Palm Pilot doesen't speak iCAL data files, it speaks it's own
proprietary
format.



 Palm claims support of ical for their handhelds but they are talking
 about the ical application on a Mac.  They aren't talking about the
 standards-based RFC, which is what Horde and all the other calendaring
 applications support.

Now, palm may synch directly to the Apple iCal data and not to an ics
file, I don't know, so in that way you would be right.  But Apple
iCal seems to use the standard iCAL format for communications.


But he wants an app on FreeBSD not on MacOS X.  Apple hasn't provided
source
for it's iCal app, and Palm certainly hasn't provided source for the
syncer program that goes from a Palm Pilot to the MacOS X, so this is
still just as bad as syncing to Palm Desktop on a windows box then
outputting
in comma-delimited, then pulling that into Horde (or equivalent)

Ted

___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


web calendar program recommendation

2005-06-16 Thread Noah
FreeBSD-4.11 R3


I am looking for a really nice calendar program that I can run from a web
interface.  That has the ability to import my calendar from my palm.

horde is nice but I cant import any of my palm calendars.

neither can webcalendar unless there is some recent update in the past 3
months that does it now.

evolution is nice but I think this is X only and not for the web.  please
correct me if I am wrong.

Please pass along any recommendations.

Thanks in advance,

Noah

___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: web calendar program recommendation

2005-06-16 Thread Tony Shadwick

What you're needing is a system, and not a single piece of software.

I would focus on the icalendar calendaring format.  Once you have that, 
then pick the piece of software you want to run on your local machine to 
sync against your palm, and have it publish your calendar to a webdav 
share or similar, then pick your piece of web calendaring software to 
manage that calendar from the web.  I have used phpicalendar, but last I 
looked it still did not support creating new items.  Perhaps Horde does?


On Thu, 16 Jun 2005, Noah wrote:


FreeBSD-4.11 R3


I am looking for a really nice calendar program that I can run from a web
interface.  That has the ability to import my calendar from my palm.

horde is nice but I cant import any of my palm calendars.

neither can webcalendar unless there is some recent update in the past 3
months that does it now.

evolution is nice but I think this is X only and not for the web.  please
correct me if I am wrong.

Please pass along any recommendations.

Thanks in advance,

Noah

___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: web calendar program recommendation

2005-06-16 Thread Bob Bomar

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Noah wrote:
| FreeBSD-4.11 R3
|
|
| I am looking for a really nice calendar program that I can run from a web
| interface.  That has the ability to import my calendar from my palm.
|
| horde is nice but I cant import any of my palm calendars.
|
| neither can webcalendar unless there is some recent update in the past 3
| months that does it now.
|
| evolution is nice but I think this is X only and not for the web.  please
| correct me if I am wrong.
|
| Please pass along any recommendations.

I use deskutils/phpicalendar.  iCal on my Mac is able to
sync with it.  There are several out there.  Another that
I have used is Web Calendar, http://www.k5n.us/webcalendar.php.
Its pretty good.q

- --
Bob Bomar
[EMAIL PROTECTED]
http://www.bomar.us/~bob
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.2.4 (Darwin)
Comment: Using GnuPG with Thunderbird - http://enigmail.mozdev.org

iD8DBQFCsaYh9Jm/aTrtdKoRAkHWAJ9hgJvLrVCgCrJwr/TulUYxpqpAfgCfUXg2
yF3L8m3WM5PLfvu7P/K/17k=
=lZB5
-END PGP SIGNATURE-
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: epoch-calendar date(1) wizardry

2005-05-30 Thread Giorgos Keramidas
On 2005-05-30 03:35, markzero [EMAIL PROTECTED] wrote:
 Hello,
 How may one pretty print an epoch timestamp using date(1)? The date
 manual page gives me a headache.

 Essentially, I have the timestamp in a file:

 $ cat t
 1117417465

$ date -j -f '%s' 1117417465 '+%Y/%m/%d %T %z'
2005/05/30 04:44:25 +0300

The -j and -f options, when combined together, can help you convert
practically any format that strptime(3) can read and parse to any time
strftime(3) can print.

___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: epoch-calendar date(1) wizardry

2005-05-30 Thread markzero
On Mon, May 30, 2005 at 01:32:37PM +0300, Giorgos Keramidas wrote:
 On 2005-05-30 03:35, markzero [EMAIL PROTECTED] wrote:
  Hello,
  How may one pretty print an epoch timestamp using date(1)? The date
  manual page gives me a headache.
 
  Essentially, I have the timestamp in a file:
 
  $ cat t
  1117417465
 
   $ date -j -f '%s' 1117417465 '+%Y/%m/%d %T %z'
   2005/05/30 04:44:25 +0300
 
 The -j and -f options, when combined together, can help you convert
 practically any format that strptime(3) can read and parse to any time
 strftime(3) can print.

Sounds good.

I think the main problem was the fact that I had everything upside
down and back to front.

Cheers!
Mark

-- 
pgp: http://www.darklogik.org/pub/pgp/pgp.txt
B776 43DC 8A5D EAF9 2126 9A67 A7DA 390F DEFF 9dD1


pgpHkApMQIvWX.pgp
Description: PGP signature


epoch-calendar date(1) wizardry

2005-05-29 Thread markzero
Hello,

How may one pretty print an epoch timestamp using date(1)? The date
manual page gives me a headache.

Essentially, I have the timestamp in a file:

$ cat t
1117417465

..and I want to print it in a standard UK format, such as:

  +%H:%M:%S %d/%m/%y

Anybody?

(before anybody screams Perl or C, I would rather stick to plain
 old sh for this).

Thanks,
Mark

-- 
PGP: http://www.darklogik.org/pub/pgp/pgp.txt
B776 43DC 8A5D EAF9 2126 9A67 A7DA 390F DEFF 9DD1


pgpeydrM35tIz.pgp
Description: PGP signature


Re: epoch-calendar date(1) wizardry

2005-05-29 Thread Dan Nelson
In the last episode (May 30), markzero said:
 How may one pretty print an epoch timestamp using date(1)? The date
 manual page gives me a headache.
 
 Essentially, I have the timestamp in a file:
 
 $ cat t
 1117417465
 
 ..and I want to print it in a standard UK format, such as:
 
   +%H:%M:%S %d/%m/%y

date -r $(cat t) +%H:%M:%S %d/%m/%y

-- 
Dan Nelson
[EMAIL PROTECTED]
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: epoch-calendar date(1) wizardry

2005-05-29 Thread markzero
  How may one pretty print an epoch timestamp using date(1)? The date
  manual page gives me a headache.
  
  Essentially, I have the timestamp in a file:
  
  $ cat t
  1117417465
  
  ..and I want to print it in a standard UK format, such as:
  
+%H:%M:%S %d/%m/%y
 
 date -r $(cat t) +%H:%M:%S %d/%m/%y

Oh my, it's really that simple? I think I must have tried just about
everything ELSE as my twenty minutes of

  Failed conversion of ``1117417465'' using format ``%H:%M:%S %d/%m/%y''
  date: illegal time format

...suggest.

02:44:25 30/05/05

Thank you!

-- 
PGP: http://www.darklogik.org/pub/pgp/pgp.txt
B776 43DC 8A5D EAF9 2126 9A67 A7DA 390F DEFF 9DD1


pgpMG56Kx6uhV.pgp
Description: PGP signature


Re: webdav and mozilla calendar

2005-02-19 Thread synrat
Could you kindly share your config ? I seem to have webdav loading
but can't figure out how to post calendars. Thanx a lot in advance.
Ean Kingston wrote:
On February 18, 2005 08:45 pm, synrat wrote:
has anyone been able to get mozilla calendar publishing to work with
webdav/apache2 ( freebsd 5.3 )

I got it to work with Webdav/apach1.3 but haven't tried 2.

___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: webdav and mozilla calendar

2005-02-19 Thread Ean Kingston
On February 19, 2005 07:22 am, synrat wrote:
 Could you kindly share your config ? I seem to have webdav loading
 but can't figure out how to post calendars. Thanx a lot in advance.

From httpd.conf:

LoadModule dav_module libexec/apache/libdav.so
AddModule mod_dav.c

Alias /Calendars /path-to-Calendars-dir
Directory /path-to-Calendars-dir
   Options Indexes Multiviews
   DAV On
   Order deny,allow
   Require valid-user
/Directory

Then I just used the export calendar from the Mozilla. Unfortunately, I 
switched to Firefox recently so I haven't got mozilla calendar anymore.

I do still have the DAV server running so I could install mozilla and test it 
out again if you need some more help.


 Ean Kingston wrote:
  On February 18, 2005 08:45 pm, synrat wrote:
 has anyone been able to get mozilla calendar publishing to work with
 webdav/apache2 ( freebsd 5.3 )
 
  I got it to work with Webdav/apach1.3 but haven't tried 2.

 ___
 freebsd-questions@freebsd.org mailing list
 http://lists.freebsd.org/mailman/listinfo/freebsd-questions
 To unsubscribe, send any mail to
 [EMAIL PROTECTED]

-- 
Ean Kingston

E-Mail: ean AT hedron DOT org
URL: http://www.hedron.org/
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


webdav and mozilla calendar

2005-02-18 Thread synrat
has anyone been able to get mozilla calendar publishing to work with 
webdav/apache2 ( freebsd 5.3 )

___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: webdav and mozilla calendar

2005-02-18 Thread Ean Kingston
On February 18, 2005 08:45 pm, synrat wrote:
 has anyone been able to get mozilla calendar publishing to work with
 webdav/apache2 ( freebsd 5.3 )

I got it to work with Webdav/apach1.3 but haven't tried 2.


-- 
Ean Kingston

E-Mail: ean AT hedron DOT org
URL: http://www.hedron.org/
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


local ports (Mozilla Calendar)

2004-12-28 Thread Tom Vilot
I'm attempting a build of the Mozilla Calendar.
One question: When I do a gmake install, I suspect what I install will 
not be understood by the packages system (/var/db/pkg).

Is there a way to quickly make a local port or a local package that 
I can then use to do things like:

make package
make uninstall
pkg_delete
etc?
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: local ports (Mozilla Calendar)

2004-12-28 Thread Joshua Lokken
On Tue, 28 Dec 2004 11:06:30 -0700, Tom Vilot [EMAIL PROTECTED] wrote:
 Is there a way to quickly make a local port or a local package that
 I can then use to do things like:
 
 make package
 make uninstall
 pkg_delete

I don't know if there's a 'quick' way, but you can do
# cd /usr/ports/category/portname

And, if the port is not installed on your system, you can
do:

# make package

and it'll build and install the port on your machine, and
put a binary package in /usr/ports/packages/All.


-- 
Joshua Lokken
Open Source Advocate
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: local ports (Mozilla Calendar)

2004-12-28 Thread Tom Vilot
Joshua Lokken wrote:
And, if the port is not installed on your system, you can
do:
# make package
snip
Well, therein lies the problem. This is not a port. yet.
This is a tarball (or, more accurately, a cvs dump). So I can't *do* a 
make package

___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: local ports (Mozilla Calendar)

2004-12-28 Thread Eric Schuele
Tom Vilot wrote:
Joshua Lokken wrote:
And, if the port is not installed on your system, you can
do:
# make package
snip
Well, therein lies the problem. This is not a port. yet.
The mozilla port in /usr/ports/www/mozilla can be compiled with the 
calendar built in.  I run it.  Its a tad buggy but very usable.

Unless you are referring to Sunbird... which is the stand alone calendar 
project... I do not think there is a port for it yet.  I would prefer it 
to the component running in mozilla... so if that's what your working 
on, please save my address and e-mail me when you have something, I can 
help test.

HTH
This is a tarball (or, more accurately, a cvs dump). So I can't *do* a 
make package

___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to 
[EMAIL PROTECTED]


--
Regards,
Eric
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: local ports (Mozilla Calendar)

2004-12-28 Thread Tom Vilot
Eric Schuele wrote:
Unless you are referring to Sunbird... which is the stand alone 
calendar project... I do not think there is a port for it yet.  I 
would prefer it to the component running in mozilla... so if that's 
what your working on, please save my address and e-mail me when you 
have something, I can help test.

Yep, that's what I'm trying to get to compile ...
If I get it working ... I'll let ya know ... and everyone else here ...
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


RE: web calendar recommendation

2004-12-21 Thread Butterworth, Thaddaeus (Manpower Contract)
I believe Ximian's Evolution would work well for that. It's in the ports
and I've heard that it works very well for shared calendaring and even
has a connector for working with MS Exchange. I haven't had the time to
actually install and configure it myself yet, but I'm planning on doing
it as soon as I can.

Thad


-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Noah
Sent: Monday, December 20, 2004 11:45 PM
To: freebsd-questions@freebsd.org
Subject: web calendar recommendation

FreeBSD-4.9


well I am back to the drawing board here.  webcalendar is not very well
supported, and it does not interface that well with my Palm calendar.  I
cant
appear to upload my calendar to it.

http://www.k5n.us/webcalendar.php

can somebody please send along their recommendations for a calendar
program
that can support multiple user calendars that can then be shared for
scheduling purposes?

Any ideas please?

cheers,

Noah

___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to
[EMAIL PROTECTED]
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: web calendar recommendation

2004-12-21 Thread Steel City Phantom
the palm support is going to be the kicker.  i don't know of anything 
other than act and outlook that palm connects too. 

take that out of the mix and ximian is your best bet.  mozilla Sunbird 
has potential, but group calendaring is a ways away

Butterworth, Thaddaeus (Manpower Contract) wrote:
I believe Ximian's Evolution would work well for that. It's in the ports
and I've heard that it works very well for shared calendaring and even
has a connector for working with MS Exchange. I haven't had the time to
actually install and configure it myself yet, but I'm planning on doing
it as soon as I can.
Thad
-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Noah
Sent: Monday, December 20, 2004 11:45 PM
To: freebsd-questions@freebsd.org
Subject: web calendar recommendation
FreeBSD-4.9
well I am back to the drawing board here.  webcalendar is not very well
supported, and it does not interface that well with my Palm calendar.  I
cant
appear to upload my calendar to it.
http://www.k5n.us/webcalendar.php
can somebody please send along their recommendations for a calendar
program
that can support multiple user calendars that can then be shared for
scheduling purposes?
Any ideas please?
cheers,
Noah
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to
[EMAIL PROTECTED]
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]
 

___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


  1   2   >