Bug 107567 - Schedule menu does not work
Summary: Schedule menu does not work
Status: RESOLVED UNMAINTAINED
Alias: None
Product: korganizer
Classification: Applications
Component: general (show other bugs)
Version: unspecified
Platform: unspecified Linux
: NOR normal
Target Milestone: ---
Assignee: kdepim bugs
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2005-06-17 01:51 UTC by Carlos Woelz
Modified: 2017-01-07 21:54 UTC (History)
0 users

See Also:
Latest Commit:
Version Fixed In:


Attachments
Report in PDF (29.08 KB, application/octet-stream)
2005-06-17 01:53 UTC, Carlos Woelz
Details

Note You need to log in before you can comment on or make changes to this bug.
Description Carlos Woelz 2005-06-17 01:51:38 UTC
Version:           unknown (using KDE 3.4.89 (>= 20050508), compiled sources)
Compiler:          gcc version 3.4.3 (Mandrakelinux 10.2 3.4.3-7mdk)
OS:                Linux (i686) release 2.6.11-6mdk-i686-up-4GB

While documenting the groupware functionality, I noticed that the schedule menu is totally broken on head. I tested all menu items. The only function that does something is publishing, but it does not allow you to select the recipients.

Also, it appears that few people is missing this functionality anyway: there were very few complains (none at bugs.kde.org). The reason is that with "Groupware communication" enabled in the configuration, you hardly need to use any of the menu items (with the exception of publishing, and that could go to "actions", maybe), because you send the messages automatically.

As KOrg currently shows a menu that does nothing, the options are:
- Fix the menu items and show it always.
- Fix the menu items, but show it only when "Groupware communication" is unchecked (as messages are automatic). Keep publish somewhere.
- Remove the menu, with exception of Publish.

In the first cases, the names of the menu items should be reviewed: they are not very straightforward: they technical names  taken from the RFC 2446 / 2447.  The functionality report, with suggestions for the names and what they should is attached.

Just to have some of the contents of the report here:

Menu item name:
From		To
Publish...	Forward incident...
Request	Send invitation to attendees
Refresh	Request update
Cancel	Send cancellation to attendees
Reply	Send status update...
Counter	Request change...

And order:

To:
Forward incident...
Send invitation to attendees
Send cancellation to attendees
Send status update...
Request incident update
Request change...

(Replace "incident" with "to-do" or "event" depending on the selected item.)
		 			
About sending and asking for free/busy info by e-mail manually: does anyone does that? Isn't it easier to simply ask? The Mail free/busy currently does nothing (even if it lets you select the mail addresses), and upload free/busy works.
Comment 1 Carlos Woelz 2005-06-17 01:53:02 UTC
Created attachment 11482 [details]
Report in PDF

The report table, with suggestions for the menu names and functionality
Comment 2 Reinhold Kainhofer 2005-08-07 20:00:58 UTC
SVN commit 443880 by kainhofe:

Finally fix the group scheduling menu in KOrganizer...

BUG:107567


 M  +33 -35    calendarview.cpp  


--- branches/KDE/3.5/kdepim/korganizer/calendarview.cpp #443879:443880
@@ -1280,7 +1280,6 @@
                               "PublishNoEventSelected" );
     return;
   }
-  // RK FIXME: Implement this using the new groupware code
 
   PublishDialog *publishdlg = new PublishDialog();
   if (incidence->attendeeCount()>0) {
@@ -1290,19 +1289,19 @@
       publishdlg->addAttendee( *it );
     }
   }
-  bool send = true;
-  if ( KOPrefs::instance()->mMailClient == KOPrefs::MailClientSendmail ) {
-    if ( publishdlg->exec() != QDialog::Accepted )
-      send = false;
-  }
-  if ( send ) {
+  if ( publishdlg->exec() == QDialog::Accepted ) {
     Incidence *inc = incidence->clone();
     inc->registerObserver( 0 );
     inc->clearAttendees();
 
     // Send the mail
     KCal::MailScheduler scheduler( mCalendar );
-    scheduler.publish( incidence, publishdlg->addresses() );
+    if ( scheduler.publish( incidence, publishdlg->addresses() ) ) {
+      KMessageBox::information( this, i18n("The item information was successfully sent."),
+                                i18n("Publishing"), "IncidencePublishSuccess" );
+    } else {
+      KMessageBox::error( this, i18n("Unable to publish the item '%1'").arg( incidence->summary() ) );
+    }
   }
   delete publishdlg;
 }
@@ -1344,7 +1343,6 @@
 
 void CalendarView::mailFreeBusy( int daysToPublish )
 {
-// RK FIXME: Implement this using the new groupware methods
   QDateTime start = QDateTime::currentDateTime();
   QDateTime end = start.addDays(daysToPublish);
 
@@ -1358,11 +1356,16 @@
 
   PublishDialog *publishdlg = new PublishDialog();
   if ( publishdlg->exec() == QDialog::Accepted ) {
-/*    OutgoingDialog *dlg = mDialogManager->outgoingDialog();
-    if (!dlg->addMessage(freebusy,Scheduler::Publish,publishdlg->addresses())) {
-         delete(freebusy);
-    }*/
+    // Send the mail
+    KCal::MailScheduler scheduler( mCalendar );
+    if ( scheduler.publish( freebusy, publishdlg->addresses() ) ) {
+      KMessageBox::information( this, i18n("The free/busy information was successfully sent."),
+                                i18n("Sending Free/Busy"), "FreeBusyPublishSuccess" );
+    } else {
+      KMessageBox::error( this, i18n("Unable to publish the free/busy data.") );
+    }
   }
+  delete freebusy;
   delete publishdlg;
 }
 
@@ -1390,30 +1393,25 @@
   }
 
   Incidence *inc = incidence->clone();
+  inc->registerObserver( 0 );
+  inc->clearAttendees();
 
-  if ( method == Scheduler::Reply || method == Scheduler::Refresh ) {
-    Attendee *me = incidence->attendeeByMails(KOPrefs::instance()->allEmails());
-    if ( !me ) {
-      KMessageBox::sorry(this,i18n("Could not find your attendee entry. Please check the emails."));
-      return;
-    }
-    if (me->status()==Attendee::NeedsAction && me->RSVP() && method==Scheduler::Reply) {
-      StatusDialog *statdlg = new StatusDialog(this);
-      if (!statdlg->exec()==QDialog::Accepted) return;
-      me->setStatus( statdlg->status() );
-      delete(statdlg);
-    }
-    Attendee *menew = new Attendee(*me);
-    if ( inc ) {
-      inc->clearAttendees();
-      inc->addAttendee( menew, false );
-    }
+  // Send the mail
+  KCal::MailScheduler scheduler( mCalendar );
+  if ( !scheduler.performTransaction( incidence, method ) ) {
+    KMessageBox::information( this, i18n("The groupware message for item '%1'"
+                                "was successfully sent.\nMethod: %2")
+                                .arg( incidence->summary() )
+                                .arg( Scheduler::methodName( method ) ),
+                              i18n("Sending Free/Busy"),
+                              "FreeBusyPublishSuccess" );
+  } else {
+    KMessageBox::error( this, i18n("Groupware message sending failed. "
+                        "%2 is request/reply/add/cancel/counter/etc.",
+                        "Unable to send the item '%1'.\nMethod: %2")
+                        .arg( incidence->summary() )
+                        .arg( Scheduler::methodName( method ) ) );
   }
-// RK FIXME: Use the new groupware methods
-/*  OutgoingDialog *dlg = mDialogManager->outgoingDialog();
-  if (inc ) {
-    if ( !dlg->addMessage( inc, method ) ) delete(inc);
-  }*/
 }
 
 void CalendarView::openAddressbook()
Comment 3 Carlos Woelz 2005-08-08 05:40:03 UTC
I still can find some bugs here. Want the report now, or are you still working on it?
Comment 4 Reinhold Kainhofer 2005-08-08 10:50:09 UTC
Yes, please tell me what doesn't work like you think it should. And reopen the bug report in that case.

Cheers,
Reinhold
Comment 5 Carlos Woelz 2005-08-22 05:01:55 UTC
Test Report:

Method: I created one event as organizer in KOrg, and sent the invitation
to an evolution client. I did the same the other way around, resulting in
one event in KOrg as organizer, and another as attendee.

Menu item:
1- "Publish item information"

Seems to work OK.

About the name: I agree that my suggestion, "Forward incident..." was bad,
especially when people recommended not to use "incident". But "Publish"
does not make clear for the user what it does. You can publish it as
a web page, as plain text, automatically with the groupware server,
whatever.

What about "Mail item as iCalendar..." or "Forwad item as iCalendar..."?
From these names, it is clear what the menu item does.

Menu item:
2- "Send invitation to attendees"

An dialog box appeard saying:
<quote>
Unable to send item "I am the organizer"
Method: Request
</quote>

However, it did send the request, and it worked correctly with Evolution.
Weird.

Menu item:
3- "Send Status Update"

An dialog box appeard saying:
<quote>
Unable to send item "I am the organizer"
Method: Reply
</quote>

However, it did send the reply, but wrongly: it did not matter what status
I selected in KOrg, it always went as "accepted" in Evolution.

About the menu entry name: I was thinking, and I believe that 
"Send attendance status" is clearer than "Send status update" 

Here is one example message:

<message>
From carloswoelz@imap-mail.com Sun Aug 21 23:21:14 2005
Delivered-To: korgtest@osite.com.br
Return-Path: <carloswoelz@imap-mail.com>
Received: from mx02.skyonline.com.br ([::ffff:192.168.9.122]) by
	smtp.skyonline.com.br with esmtp; Sun, 21 Aug 2005 23:21:14 -0300 id
	00001F44.4309369A.0000716A
Received: from out3.smtp.messagingengine.com (out3.smtp.messagingengine.com
	[66.111.4.27]) by mx02.skyonline.com.br (Postfix) with ESMTP id B5B6F6EF41
	for <korgtest@osite.com.br>; Sun, 21 Aug 2005 23:21:13 -0300 (BRT)
Received: from frontend2.messagingengine.com (frontend2.internal
	[10.202.2.151]) by frontend1.messagingengine.com (Postfix) with ESMTP id
	7C2EACCA0F3 for <korgtest@osite.com.br>; Sun, 21 Aug 2005 22:21:11 -0400
	(EDT)
X-Sasl-enc: DP2B3npoPG3lbpM4yS6jmhq49KRzRfDK0RimohdL2TLL 1124677267
Received: from 201008095054.user.veloxzone.com.br
	(201008095054.user.veloxzone.com.br [201.8.95.54]) by
	frontend2.messagingengine.com (Postfix) with ESMTP id 07C2C570326 for
	<korgtest@osite.com.br>; Sun, 21 Aug 2005 22:21:07 -0400 (EDT)
From: Carlos Leonhard Woelz <carloswoelz@imap-mail.com>
To: Carlos e Jana <korgtest@osite.com.br>
Subject: I am the attendee :)
Date: Sun, 21 Aug 2005 23:20:24 -0300
User-Agent: KMail/1.8.90
MIME-Version: 1.0
Content-Type: text/calendar; method=reply; charset="utf-8"
Content-Transfer-Encoding: 7bit
Content-Disposition: inline
Message-Id: <200508212320.24725.carloswoelz@imap-mail.com>
X-Evolution-Source: pop://korgtest;auth=LOGIN@pop.osite.com.br/

BEGIN:VCALENDAR
PRODID:-//K Desktop Environment//NONSGML libkcal 3.5//EN
VERSION:2.0
METHOD:REPLY
BEGIN:VEVENT
DTSTAMP:20050822T022024Z
ORGANIZER;CN=Carlos e Jana:MAILTO:korgtest@osite.com.br
ATTENDEE;CN=Carlos e Jana;RSVP=TRUE;PARTSTAT=ACCEPTED;
 ROLE=REQ-PARTICIPANT:mailto:korgtest@osite.com.br
ATTENDEE;CN=Carlos Woelz;RSVP=TRUE;PARTSTAT=NEEDS-ACTION;
 ROLE=REQ-PARTICIPANT:mailto:carlos.woelz@kdemail.net
CREATED:20050822T042144Z
UID:20050822T012135Z-21604-501-1-0@localhost
SEQUENCE:3
LAST-MODIFIED:20050822T021918Z
DESCRIPTION:This is a test event created in evolotion
SUMMARY:I am the attendee :)
CLASS:PUBLIC
PRIORITY:5
DTSTART:20050920T143000Z
DTEND:20050920T153000Z
TRANSP:OPAQUE
REQUEST-STATUS:2.0;Success.
END:VEVENT

END:VCALENDAR

</message>

Menu item:
4- "Send cancellation to attendees"

An dialog box appeard saying:
<quote>
Unable to send item "I am the organizer"
Method: Cancel
</quote>

However, it did send the cancelation, and it worked correctly with
Evolution.

Since the event was cancelled, shouldn't the event be deleted, or
the user asked if the event should be deleted?
Or, at least, the attendees should be removed from the event...

And BTW, this should be menu item number 3, to separate the organizer
and attendee menu entries in the shedule menu.

Menu item:
5- "Request Update"

An dialog box appeard saying:
<quote>
Unable to send item "I am the organizer"
Method: Refresh
</quote>

However, it did send the refresh request, and it worked correctly with
Evolution (in fact, evolution refused to sent the refresh, but I guess
that's evolution's problem, since the request iCalender seemed to be OK
to my untrained eyes.


Menu item:
6- "Request Change"

An dialog box appeard saying:
<quote>
Unable to send item "I am the organizer"
Method: Counter
</quote>

However, it did send the conter request, but it did not work correctly
with Evolution. I am not sure who's fault it is, so here is the message
it created:

<message>
From carloswoelz@imap-mail.com Sun Aug 21 23:39:54 2005
Delivered-To: korgtest@osite.com.br
Return-Path: <carloswoelz@imap-mail.com>
Received: from mx01.skyonline.com.br ([::ffff:200.105.9.54]) by
	smtp.skyonline.com.br with esmtp; Sun, 21 Aug 2005 23:39:54 -0300 id
	00001EDC.43093AFA.0000203D
Received: from out3.smtp.messagingengine.com (out3.smtp.messagingengine.com
	[66.111.4.27]) by mx01.skyonline.com.br (Postfix) with ESMTP id 4C989DFB6
	for <korgtest@osite.com.br>; Sun, 21 Aug 2005 23:42:50 -0300 (BRT)
Received: from frontend2.messagingengine.com (frontend2.internal
	[10.202.2.151]) by frontend1.messagingengine.com (Postfix) with ESMTP id
	05892CC9EA1 for <korgtest@osite.com.br>; Sun, 21 Aug 2005 22:39:52 -0400
	(EDT)
X-Sasl-enc: AXUODE9QeBpxe+QPyPuRQf6E206wfctEwGFxRadS6J3A 1124678387
Received: from 201008095054.user.veloxzone.com.br
	(201008095054.user.veloxzone.com.br [201.8.95.54]) by
	frontend2.messagingengine.com (Postfix) with ESMTP id 97D51570326 for
	<korgtest@osite.com.br>; Sun, 21 Aug 2005 22:39:47 -0400 (EDT)
From: Carlos Leonhard Woelz <carloswoelz@imap-mail.com>
To: Carlos e Jana <korgtest@osite.com.br>
Subject: I am the attendee :)
Date: Sun, 21 Aug 2005 23:39:06 -0300
User-Agent: KMail/1.8.90
MIME-Version: 1.0
Content-Type: text/calendar; method=counter; charset="utf-8"
Content-Transfer-Encoding: 7bit
Content-Disposition: inline
Message-Id: <200508212339.06175.carloswoelz@imap-mail.com>
X-Evolution-Source: pop://korgtest;auth=LOGIN@pop.osite.com.br/

BEGIN:VCALENDAR
PRODID:-//K Desktop Environment//NONSGML libkcal 3.5//EN
VERSION:2.0
METHOD:COUNTER
BEGIN:VEVENT
DTSTAMP:20050822T023905Z
ORGANIZER;CN=Carlos e Jana:MAILTO:korgtest@osite.com.br
ATTENDEE;CN=Carlos e Jana;RSVP=TRUE;PARTSTAT=ACCEPTED;
 ROLE=REQ-PARTICIPANT:mailto:korgtest@osite.com.br
ATTENDEE;CN=Carlos Woelz;RSVP=TRUE;PARTSTAT=ACCEPTED;ROLE=REQ-PARTICIPANT:
 mailto:carlos.woelz@kdemail.net
CREATED:20050822T042144Z
UID:20050822T012135Z-21604-501-1-0@localhost
SEQUENCE:7
LAST-MODIFIED:20050822T023830Z
DESCRIPTION:This is a test event created in evolution. This is after the 
 update.
SUMMARY:I am the attendee :)
CLASS:PUBLIC
PRIORITY:5
DTSTART:20050920T144500Z
DTEND:20050920T154500Z
TRANSP:OPAQUE
END:VEVENT

END:VCALENDAR
</message>

or, with iCalendar file attached instead of inline:

<message>
From carloswoelz@imap-mail.com Sun Aug 21 23:43:57 2005
Delivered-To: korgtest@osite.com.br
Return-Path: <carloswoelz@imap-mail.com>
Received: from mx01.skyonline.com.br ([::ffff:200.105.9.54]) by
	smtp.skyonline.com.br with esmtp; Sun, 21 Aug 2005 23:43:57 -0300 id
	00001F3E.43093BED.00002720
Received: from out3.smtp.messagingengine.com (out3.smtp.messagingengine.com
	[66.111.4.27]) by mx01.skyonline.com.br (Postfix) with ESMTP id 4A464DFF5
	for <korgtest@osite.com.br>; Sun, 21 Aug 2005 23:46:52 -0300 (BRT)
Received: from frontend3.messagingengine.com (frontend3.internal
	[10.202.2.152]) by frontend1.messagingengine.com (Postfix) with ESMTP id
	BAD55CC98AB for <korgtest@osite.com.br>; Sun, 21 Aug 2005 22:43:54 -0400
	(EDT)
X-Sasl-enc: +1j4gqDeXHWlc8oHp8v2TLZzAays+ezoUOgnXR0LKd6C 1124678634
Received: from 201008095054.user.veloxzone.com.br
	(201008095054.user.veloxzone.com.br [201.8.95.54]) by
	frontend3.messagingengine.com (Postfix) with ESMTP id AF8C31DA for
	<korgtest@osite.com.br>; Sun, 21 Aug 2005 22:43:54 -0400 (EDT)
From: Carlos Leonhard Woelz <carloswoelz@imap-mail.com>
To: Carlos e Jana <korgtest@osite.com.br>
Subject: I am the attendee :)
Date: Sun, 21 Aug 2005 23:43:08 -0300
User-Agent: KMail/1.8.90
MIME-Version: 1.0
Content-Type: Multipart/Mixed; boundary="Boundary-00=_8uTCD0nfoGPCumF"
Message-Id: <200508212343.08840.carloswoelz@imap-mail.com>
X-Evolution-Source: pop://korgtest;auth=LOGIN@pop.osite.com.br/


--Boundary-00=_8uTCD0nfoGPCumF
Content-Type: text/plain; charset="us-ascii"
Content-Transfer-Encoding: 7bit
Content-Disposition: inline

Summary: I am the attendee :)
Organizer: Carlos e Jana <korgtest@osite.com.br>
Start Date: 2005-09-20
Start Time: 11:45
End Date: 2005-09-20
End Time: 12:45
Details:
This is a test event created in evolution. This is after the update.

--Boundary-00=_8uTCD0nfoGPCumF
Content-Type: text/calendar; charset="utf-8"; name="cal.ics"; method="counter"
Content-Transfer-Encoding: 7bit
Content-Disposition: attachment

BEGIN:VCALENDAR
PRODID:-//K Desktop Environment//NONSGML libkcal 3.5//EN
VERSION:2.0
METHOD:COUNTER
BEGIN:VEVENT
DTSTAMP:20050822T024308Z
ORGANIZER;CN=Carlos e Jana:MAILTO:korgtest@osite.com.br
ATTENDEE;CN=Carlos e Jana;RSVP=TRUE;PARTSTAT=ACCEPTED;
 ROLE=REQ-PARTICIPANT:mailto:korgtest@osite.com.br
ATTENDEE;CN=Carlos Woelz;RSVP=TRUE;PARTSTAT=ACCEPTED;ROLE=REQ-PARTICIPANT:
 mailto:carlos.woelz@kdemail.net
CREATED:20050822T042144Z
UID:20050822T012135Z-21604-501-1-0@localhost
SEQUENCE:7
LAST-MODIFIED:20050822T023830Z
DESCRIPTION:This is a test event created in evolution. This is after the 
 update.
SUMMARY:I am the attendee :)
CLASS:PUBLIC
PRIORITY:5
DTSTART:20050920T144500Z
DTEND:20050920T154500Z
TRANSP:OPAQUE
END:VEVENT

END:VCALENDAR


--Boundary-00=_8uTCD0nfoGPCumF--
</message>

Menu items:
7- Mail Free Busy Information, and
8- Update Free Busy Information

Seemed to work all right. Here is the mail message:

<message>
From carloswoelz@imap-mail.com Sun Aug 21 23:47:30 2005
Delivered-To: korgtest@osite.com.br
Return-Path: <carloswoelz@imap-mail.com>
Received: from mx01.skyonline.com.br ([::ffff:200.105.9.54]) by
	smtp.skyonline.com.br with esmtp; Sun, 21 Aug 2005 23:47:30 -0300 id
	00001EDC.43093CC2.00002D14
Received: from out3.smtp.messagingengine.com (out3.smtp.messagingengine.com
	[66.111.4.27]) by mx01.skyonline.com.br (Postfix) with ESMTP id 18E60DFEE
	for <korgtest@osite.com.br>; Sun, 21 Aug 2005 23:50:25 -0300 (BRT)
Received: from frontend2.messagingengine.com (frontend2.internal
	[10.202.2.151]) by frontend1.messagingengine.com (Postfix) with ESMTP id
	49D61CC9870 for <korgtest@osite.com.br>; Sun, 21 Aug 2005 22:47:27 -0400
	(EDT)
X-Sasl-enc: e0GSlQ6JnhnO4uCi2I4OEDyqeoDge+bEBinfX3i3S0vv 1124678842
Received: from 201008095054.user.veloxzone.com.br
	(201008095054.user.veloxzone.com.br [201.8.95.54]) by
	frontend2.messagingengine.com (Postfix) with ESMTP id 9E1BC570147 for
	<korgtest@osite.com.br>; Sun, 21 Aug 2005 22:47:22 -0400 (EDT)
From: Carlos Leonhard Woelz <carloswoelz@imap-mail.com>
To: korgtest@osite.com.br
Subject: Free Busy Message
Date: Sun, 21 Aug 2005 23:46:40 -0300
User-Agent: KMail/1.8.90
MIME-Version: 1.0
Content-Type: text/calendar; method=publish; charset="utf-8"
Content-Transfer-Encoding: 7bit
Content-Disposition: inline
Message-Id: <200508212346.40503.carloswoelz@imap-mail.com>
X-Evolution-Source: pop://korgtest;auth=LOGIN@pop.osite.com.br/

BEGIN:VCALENDAR
PRODID:-//K Desktop Environment//NONSGML libkcal 3.5//EN
VERSION:2.0
METHOD:PUBLISH
BEGIN:VFREEBUSY
DTSTAMP:20050822T024640Z
ORGANIZER;CN=Carlos Leonhard Woelz:MAILTO:carloswoelz@imap-mail.com
DTSTART:20050822T024632Z
DTEND:20050921T024632Z
FREEBUSY:20050827T030000Z/20050829T025959Z
FREEBUSY:20050827T070000Z/20050827T073000Z
FREEBUSY:20050827T073000Z/20050827T083000Z
FREEBUSY:20050827T083000Z/20050827T093000Z
FREEBUSY:20050827T083000Z/20050827T093000Z
FREEBUSY:20050827T100000Z/20050827T110000Z
FREEBUSY:20050827T100000Z/20050827T110000Z
FREEBUSY:20050827T130000Z/20050827T140000Z
FREEBUSY:20050827T140000Z/20050827T150000Z
FREEBUSY:20050827T140000Z/20050827T150000Z
FREEBUSY:20050827T150000Z/20050827T160000Z
FREEBUSY:20050827T150000Z/20050827T160000Z
FREEBUSY:20050828T080000Z/20050828T090000Z
FREEBUSY:20050828T090000Z/20050828T100000Z
FREEBUSY:20050828T103000Z/20050828T113000Z
FREEBUSY:20050828T130000Z/20050828T140000Z
FREEBUSY:20050828T140000Z/20050828T150000Z
FREEBUSY:20050828T153000Z/20050828T163000Z
FREEBUSY:20050828T153000Z/20050828T163000Z
FREEBUSY:20050829T030000Z/20050831T025959Z
FREEBUSY:20050829T070000Z/20050829T080000Z
FREEBUSY:20050829T080000Z/20050829T090000Z
FREEBUSY:20050829T080000Z/20050829T090000Z
FREEBUSY:20050829T093000Z/20050829T103000Z
FREEBUSY:20050829T093000Z/20050829T103000Z
FREEBUSY:20050829T103000Z/20050829T113000Z
FREEBUSY:20050829T103000Z/20050829T113000Z
FREEBUSY:20050829T130000Z/20050829T140000Z
FREEBUSY:20050829T130000Z/20050829T140000Z
FREEBUSY:20050829T140000Z/20050829T150000Z
FREEBUSY:20050829T140000Z/20050829T150000Z
FREEBUSY:20050829T153000Z/20050829T163000Z
FREEBUSY:20050829T153000Z/20050829T163000Z
FREEBUSY:20050829T163000Z/20050829T180000Z
FREEBUSY:20050829T163000Z/20050829T180000Z
FREEBUSY:20050830T070000Z/20050830T080000Z
FREEBUSY:20050830T070000Z/20050830T080000Z
FREEBUSY:20050830T080000Z/20050830T090000Z
FREEBUSY:20050830T080000Z/20050830T090000Z
FREEBUSY:20050830T093000Z/20050830T103000Z
FREEBUSY:20050830T093000Z/20050830T103000Z
FREEBUSY:20050830T123000Z/20050830T143000Z
FREEBUSY:20050830T123000Z/20050830T133000Z
FREEBUSY:20050830T133000Z/20050830T143000Z
FREEBUSY:20050830T150000Z/20050830T160000Z
FREEBUSY:20050830T150000Z/20050830T163000Z
FREEBUSY:20050831T030000Z/20050905T025959Z
FREEBUSY:20050831T070000Z/20050831T110000Z
FREEBUSY:20050831T070000Z/20050831T110000Z
FREEBUSY:20050831T140000Z/20050831T170000Z
FREEBUSY:20050901T070000Z/20050901T110000Z
FREEBUSY:20050920T144500Z/20050920T154500Z
END:VFREEBUSY

END:VCALENDAR

</message>
Comment 6 Carlos Woelz 2005-08-22 05:05:51 UTC
One lase addition: the Request Update message:

<message>
From carloswoelz@imap-mail.com Sun Aug 21 23:31:23 2005
Delivered-To: korgtest@osite.com.br
Return-Path: <carloswoelz@imap-mail.com>
Received: from mx02.skyonline.com.br ([::ffff:192.168.9.122]) by
	smtp.skyonline.com.br with esmtp; Sun, 21 Aug 2005 23:31:23 -0300 id
	00001E38.430938FB.0000117C
Received: from out3.smtp.messagingengine.com (out3.smtp.messagingengine.com
	[66.111.4.27]) by mx02.skyonline.com.br (Postfix) with ESMTP id B18836EE4A
	for <korgtest@osite.com.br>; Sun, 21 Aug 2005 23:31:22 -0300 (BRT)
Received: from frontend2.messagingengine.com (frontend2.internal
	[10.202.2.151]) by frontend1.messagingengine.com (Postfix) with ESMTP id
	9B00DCC996F for <korgtest@osite.com.br>; Sun, 21 Aug 2005 22:31:19 -0400
	(EDT)
X-Sasl-enc: G4tq4IVMdAwu/MyFqj8I+2cJgBGZ5ifEY2TFgZZnF+dh 1124677875
Received: from 201008095054.user.veloxzone.com.br
	(201008095054.user.veloxzone.com.br [201.8.95.54]) by
	frontend2.messagingengine.com (Postfix) with ESMTP id 3AC4056F785 for
	<korgtest@osite.com.br>; Sun, 21 Aug 2005 22:31:15 -0400 (EDT)
From: Carlos Leonhard Woelz <carloswoelz@imap-mail.com>
To: Carlos e Jana <korgtest@osite.com.br>
Subject: I am the attendee :)
Date: Sun, 21 Aug 2005 23:30:33 -0300
User-Agent: KMail/1.8.90
MIME-Version: 1.0
Content-Type: text/calendar; method=refresh; charset="utf-8"
Content-Transfer-Encoding: 7bit
Content-Disposition: inline
Message-Id: <200508212330.33339.carloswoelz@imap-mail.com>
X-Evolution-Source: pop://korgtest;auth=LOGIN@pop.osite.com.br/

BEGIN:VCALENDAR
PRODID:-//K Desktop Environment//NONSGML libkcal 3.5//EN
VERSION:2.0
METHOD:REFRESH
BEGIN:VEVENT
DTSTAMP:20050822T023033Z
ORGANIZER;CN=Carlos e Jana:MAILTO:korgtest@osite.com.br
ATTENDEE;CN=Carlos e Jana;RSVP=TRUE;PARTSTAT=ACCEPTED;
 ROLE=REQ-PARTICIPANT:mailto:korgtest@osite.com.br
ATTENDEE;CN=Carlos Woelz;RSVP=TRUE;PARTSTAT=NEEDS-ACTION;
 ROLE=REQ-PARTICIPANT:mailto:carlos.woelz@kdemail.net
CREATED:20050822T042144Z
UID:20050822T012135Z-21604-501-1-0@localhost
SEQUENCE:3
LAST-MODIFIED:20050822T021918Z
DESCRIPTION:This is a test event created in evolotion
SUMMARY:I am the attendee :)
CLASS:PUBLIC
PRIORITY:5
DTSTART:20050920T143000Z
DTEND:20050920T153000Z
TRANSP:OPAQUE
END:VEVENT

END:VCALENDAR

</message>
Comment 7 Carlos Woelz 2005-08-22 05:09:39 UTC
And BTW, do you think that a KOrg <-> KOrg test would be more helpful? I selected a KOrg <-> Evolution test thinking it would be a stronger rfc compliance test... Maybe I can do the nesxt round of tests with KOrg <-> KOrg checks.

Cheers,

Carlos Woelz
Comment 8 Reinhold Kainhofer 2006-11-02 19:17:41 UTC
Reassigning all KOrganizer bug reports and wishes to the newly created 
korganizer-devel mailing list.
Comment 9 Denis Kurz 2016-09-24 18:50:34 UTC
This bug has only been reported for versions before 4.14, which have been unsupported for at least two years now. Can anyone tell if this bug still present?

If noone confirms this bug for a Framework-based version of korganizer (version 5.0 or later, as part of KDE Applications 15.08 or later), it gets closed in about three months.
Comment 10 Denis Kurz 2017-01-07 21:54:18 UTC
Just as announced in my last comment, I close this bug. If you encounter it again in a recent version (at least 5.0 aka 15.08), please open a new one unless it already exists. Thank you for all your input.