Clearing deleted users from the iCal Server proxy database


 
Thread Tools Search this Thread
Operating Systems OS X (Apple) OS X Support RSS Clearing deleted users from the iCal Server proxy database
# 1  
Old 10-11-2008
Clearing deleted users from the iCal Server proxy database

Users are not cleared from the iCal proxy database if they are deleted from Workgroup Manager. This can cause reduced performance on the server and for iCal clients. You can clear the deleted users from the proxy database by using the instructions below.

More from Apple OS X Support ...
Login or Register to Ask a Question

Previous Thread | Next Thread

8 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Files not deleted in source server

I have connected to the source server by ftp command. when I tried to delete the file I am getting the permission error. delete file1.txt 450 No permission to delete /today1/file1.txt the files have below permission 150 File status okay; about to open data connection. drwx------ 0 ... (3 Replies)
Discussion started by: ramkumar15
3 Replies

2. Web Development

Apache users from MySQL database

Hi team, How can I implement a users in MySQL database for Apache users, assuming that I'm using RHEL6. That is to say, how can I design this database and how let's Apache server know those user in this database. Thanks in advance.. (3 Replies)
Discussion started by: leo_ultra_leo
3 Replies

3. UNIX for Dummies Questions & Answers

Clearing memory cache on Linux server

i wish to clear memory cache on a production box and i was wondering what is the worst that can happen if i do? i already tested this on a backup server and everything seemed fine. but i need to know from you experts what are the worst things that can happen when i run it on a real server: ... (5 Replies)
Discussion started by: SkySmart
5 Replies

4. Shell Programming and Scripting

Help with script to create users from database query

#!/bin/bash user=`mysql userList -uuserlist -puserlistpassword -s -N -e "SELECT userName FROM users WHERE activated='n'"` for i in $user; do useradd "$i" -m doneThis is what I have done so far. But obviously it still does not work. I'm trying to create users based on information stored in a... (5 Replies)
Discussion started by: bucketuk
5 Replies

5. UNIX for Dummies Questions & Answers

enable all operations to use a proxy server , redhat server

Hi, i would like to enable all operations/connections to use a proxy server in a redhat server , witch file should i config to get this for all conections .... Thanks (0 Replies)
Discussion started by: prpkrk
0 Replies

6. IP Networking

Software/tool to route an IP packet to proxy server and capture the Proxy reply as an

Hi, I am involved in a project on Debian. One of my requirement is to route an IP packet in my application to a proxy server and receive the reply from the proxy server as an IP packet. My application handles data at the IP frame level. My application creates an IP packet(with all the necessary... (0 Replies)
Discussion started by: Rajesh_BK
0 Replies

7. Linux

how to get IP for proxy server

i have installed a proxy server on my linux box . how to get the IP for that proxy . cheers (3 Replies)
Discussion started by: ppass
3 Replies

8. UNIX for Dummies Questions & Answers

unix server behind MS proxy server

I'm trying to get a Unix server on the internet (mostly for DNS requests) but this server is on a network behind a Proxy server. How can I configure my unix server that he will pass the proxy server for internet requests? (2 Replies)
Discussion started by: RSlegers
2 Replies
Login or Register to Ask a Question
DateTime::Format::ICal(3pm)				User Contributed Perl Documentation			       DateTime::Format::ICal(3pm)

NAME
DateTime::Format::ICal - Parse and format iCal datetime and duration strings SYNOPSIS
use DateTime::Format::ICal; my $dt = DateTime::Format::ICal->parse_datetime( '20030117T032900Z' ); my $dur = DateTime::Format::ICal->parse_duration( '+P3WT4H55S' ); # 20030117T032900Z DateTime::Format::ICal->format_datetime($dt); # +P3WT4H55S DateTime::Format::ICal->format_duration($dur); DESCRIPTION
This module understands the ICal date/time and duration formats, as defined in RFC 2445. It can be used to parse these formats in order to create the appropriate objects. METHODS
This class offers the following methods. o parse_datetime($string) Given an iCal datetime string, this method will return a new "DateTime" object. If given an improperly formatted string, this method may die. o parse_duration($string) Given an iCal duration string, this method will return a new "DateTime::Duration" object. If given an improperly formatted string, this method may die. o parse_period($string) Given an iCal period string, this method will return a new "DateTime::Span" object. If given an improperly formatted string, this method may die. o parse_recurrence( recurrence => $string, ... ) Given an iCal recurrence description, this method uses "DateTime::Event::ICal" to create a "DateTime::Set" object representing that recurrence. Any parameters given to this method beside "recurrence" will be passed directly to the "DateTime::Event::ICal->recur" method. If given an improperly formatted string, this method may die. This method accepts optional parameters "dtstart" and "dtend". These parameters must be "DateTime" objects. The iCal spec requires that "dtstart" always be included in the recurrence set, unless this is an "exrule" statement. Since we don't know what kind of statement is being parsed, we do not include "dtstart" in the recurrence set. o format_datetime($datetime) Given a "DateTime" object, this methods returns an iCal datetime string. The iCal spec requires that datetimes be formatted either as floating times (no time zone), UTC (with a 'Z' suffix) or with a time zone id at the beginning ('TZID=America/Chicago;...'). If this method is asked to format a "DateTime" object that has an offset-only time zone, then the object will be converted to the UTC time zone internally before formatting. For example, this code: my $dt = DateTime->new( year => 1900, hour => 15, time_zone => '-0100' ); print $ical->format_datetime($dt); will print the string "19000101T160000Z". o format_duration($duration) Given a "DateTime::Duration" object, this methods returns an iCal duration string. The iCal standard does not allow for months or years in a duration, so if a duration for which "delta_months()" is not zero is given, then this method will die. o format_period($span) Given a "DateTime::Span" object, this methods returns an iCal period string, using the format "DateTime/DateTime". o format_period_with_duration($span) Given a "DateTime::Span" object, this methods returns an iCal period string, using the format "DateTime/Duration". o format_recurrence($arg [,$arg...] ) This method returns a list of strings containing ICal statements. In scalar context it returns a single string which may contain embedded newlines. The argument can be a "DateTime" list, a "DateTime::Span" list, a "DateTime::Set", or a "DateTime::SpanSet". ICal "DATE" values are not supported. Whenever a date value is found, a "DATE-TIME" is generated. If a recurrence has an associated "DTSTART" or "DTEND", those values must be formatted using "format_datetime()". The "format_recurrence()" method will not do this for you. If a "union" or "complement" of recurrences is being formatted, they are assumed to have the same "DTSTART" value. Only "union" and "complement" operations are supported for recurrences. This is a limitation of the ICal specification. If given a set it cannot format, this method may die. Only "DateTime::Set::ICal" objects are formattable. A set may change class after some set operations: $recurrence = $recurrence->union( $dt_set ); # Ok - $recurrence still is a DT::Set::ICal $recurrence = $dt_set->union( $recurrence ); # Not Ok! - $recurrence is a DT::Set now The only unbounded recurrences currently supported are the ones generated by the "DateTime::Event::ICal" module. You can add ICal formatting support to a custom recurrence by using the "DateTime::Set::ICal" module: $custom_recurrence = DateTime::Set::ICal->from_recurrence ( recurrence => sub { $_[0]->truncate( to => 'month' )->add( months => 1 ) } ); $custom_recurrence->set_ical( include => [ 'FREQ=MONTHLY' ] ); SUPPORT
Support for this module is provided via the datetime@perl.org email list. See http://lists.perl.org/ for more details. AUTHORS
Dave Rolsky <autarch@urth.org> and Flavio Soibelmann Glock <fglock@pucrs.br> Some of the code in this module comes from Rich Bowen's "Date::ICal" module. COPYRIGHT
Copyright (c) 2003 David Rolsky. All rights reserved. This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself. The full text of the license can be found in the LICENSE file included with this module. SEE ALSO
datetime@perl.org mailing list http://datetime.perl.org/ perl v5.10.0 2009-05-24 DateTime::Format::ICal(3pm)