Page 1 of 1

MS Outlook integration?

Posted: 06 Dec 2005, 08:06
by hedenstroem
Hi!

Yes we are doing Windows stuff here... How about some Outlook integration? I'd like to click on a issue I feel responsible for, putting itself into my task list. This could be done by providing a special file with the issues data. Interesting?

Posted: 06 Dec 2005, 11:03
by vboctor
Sounds good :) Do you want to provide more details about how this will be implemented?

Regards,
Victor
MantisConnect
http://www.futureware.biz/mantisconnect/

Outlook integration

Posted: 11 Mar 2006, 16:13
by cas
I have this up and running for some time by using the ical format.
Whenever viewing an issue one can copy the issue into their calendar or onto their To Do list within their mail system. The availability of this option depends on settings in config_inc.php.
If the due date functionality is used, that date will be used, in all other cases it will use the
current date.
The ToDo functionality using ical is not supported by Outlook.

Files affected
bug_view_page.php Modified
bug_view_advanced_page.php Modified
bug_ical_event.php New
bug_ical_todo.php New


Required setting(s) within config_inc.php :
$g_show_cal = ON;
$g_show_todo = ON;

If one is interested, just contact me.

Cas

Posted: 12 Mar 2006, 12:55
by vboctor
It would be great if you can report a feature request in http://bugs.mantisbt.org and attach the modified/added files to it. This way people can use it and developers can look at it and see how we can benefit from it.

Regards,
Victor
Mantis to Go?
http://www.futureware.biz/mantisconnect

Posted: 13 Mar 2006, 19:29
by cas
Already posted this on that site under issue 0005007 back in 2004.
I did make some adjustments to it so will upload again.

Cas

Posted: 15 Mar 2006, 12:11
by Diouzshev
Hi!
Posted code contains some bugs:

$duedat = mktime(0,0,0,date("m"),date("d"),date("Y"));
need replace to:
$duedat = date("Ymd");
cause:
Outlook can't open files (Bad file format).

if ( config_get( 'due_date')==ON) {
need replace to:
if ( config_get( 'show_cal')==ON) {
or:
if ( config_get( 'show_todo')==ON) {
cause:
script error

Place in begin of script:
$g_bypass_headers = true; # suppress headers as we will send our own later
cause:
Outlook file open error (I don't fully understand).

Posted: 15 Mar 2006, 21:01
by cas
Thanks for spottings this.

Your first remark :
I will adjust and post later on.

Second remark :
Have to disagree here since that part of the code should not be there anymore at all.
The part between the CN-10 identifiers can be removed since this expects a custom field. This is valid for both scripts (bug_ical_event & bug_ical_todo). Will adjust this for next upload.

Third remark :
Strange, have not seen this but it can be added without any problems.

Cas

Posted: 16 Mar 2006, 07:46
by Diouzshev
:)

About first:
Describe in readme custom field "due_date", else current code don't work propetly.

About second:
Its critical error: current code can't run (config parameter not found)

About thrid:
This flag I found in the file_download.php, survay its code.

Four:
What are you have configuration? (Outlook version? Apache? Server OS?)
My:
OS: Windows 2000 Prof
Apache 1.33
Php 5(?)
Outlook 2000
Browser: MyIE2 0.9

I Can't import todo in Outlook (I don't found possibles in Outlook for it).

Thanks.

Posted: 16 Mar 2006, 18:36
by cas
I have already adjusted the code and uploaded to bugs.mantisbt.org

As for the ToDo function, this does not work in Outlook, a known MS bug.

My config is :
XP/PHP5/outlook2003
Linux/php4.1/outlook2003

Browser IE6/Firefox

cas

Posted: 11 Aug 2006, 15:27
by shark
cas wrote:I have already adjusted the code and uploaded to bugs.mantisbt.org

As for the ToDo function, this does not work in Outlook, a known MS bug.

My config is :
XP/PHP5/outlook2003
Linux/php4.1/outlook2003

Browser IE6/Firefox

cas
So what does this code do then? It will let you put a bug into your outlook Calendar and Task list, or just the calendar?

Posted: 14 Aug 2006, 19:58
by cas
Outlook only supports the calender with Ical not the tasks.

Cas

Re: MS Outlook integration?

Posted: 20 Oct 2009, 17:14
by zlatan24
My friend worked with MS Outlook and after something happened and all files in it were corrupted.And next tool-recovering outlook 2007 pst file,helped for him.This tool I advised to him.Moreover tool executed it for free and software could extract data from corrupted files in *.ost and *.pst format and avoid losing of critical contacts, calendars and messages.

Re: MS Outlook integration?

Posted: 20 Jan 2011, 17:39
by vendeka
so still no way to integrate mantis into Outlook?

Re: MS Outlook integration?

Posted: 21 Jan 2011, 07:33
by atrol
I didn't try, but maybe this plugin is what you want
http://git.mantisforge.org/w/ical.git

Re: MS Outlook integration?

Posted: 26 Jan 2011, 14:21
by cas
That plugin has been created based upon the adjustments to make it work in older versions.
The plugin supports both cal and tasks but still task will not work with Outlook due to the fact that MS is not fully compliant with the ical format.