GNOME Bugzilla – Bug 670944
Option to handle out of office without date range
Last modified: 2012-04-06 13:03:41 UTC
Created attachment 208553 [details] screen shot of out of office in owa Evolution 3.3.91 OWA or Outlook supports out of office in two ways 1) Set out of office for given time period 2) Set out of office without time period EWS doesn't support option 2. That will create problem when user sets out of office in owa because evolution will pick random dates and will stop sending out of office messages after that random period.
Created attachment 208773 [details] [review] Evolution EWS patch Thanks for bug report. Add a check-box widget same as in owa/outlook to specify if user want to set particular duration or not. This patch also include solution to following bugs too: Show a warning if date is in past bug 670935. Show Out of Office in bold bug 670936. Thanks!
*** Bug 670936 has been marked as a duplicate of this bug. ***
*** Bug 670935 has been marked as a duplicate of this bug. ***
Review of attachment 208773 [details] [review]: The rest of the UI changes looks fine. ::: src/server/e-ews-connection.c @@ +675,3 @@ + start = html_text; + end = html_text + haystack_len; + } Is there a better way to parse html text ? :)
I looked for and I couldn't find better way for parsing the only relevant information because we are only interested in Message text and nothing else. I looked in evolution-exchange too and it also uses same approach. Thanks!
Review of attachment 208773 [details] [review]: Patch has been committed to master branch. http://git.gnome.org/browse/evolution-ews/commit/?id=b0ac43f31f8ec2a207d6e6d1715848864364de54 Note: update the parsing method later if we can find a good method.