You are not logged in.
Pages: 1
I am ussing the Installation Plugin in with my GLPI implementation, every day I receibe a mail in frech like this:
subject: Une tche was outdated
message:
Name : xxxxx
Installation manager :
Usuario : xxxxx yyyyy
Grupo : xxxxx
Name of task : Reinstallation of this computer
Task manager : xxxxx yyyyy
Supplier responsible of the task : xxxxx
Affected user : xxxxx yyyyyy
Task carried out : No
Descripción :
This equipment is now reinstalled and ready to be used.
Planification :
Begin date : 20-02-2008 08:33
End date : 20-02-2008 08:48
Duración : 15 Minutes
In my view over plugins I see the Delivery date envisaged field in red.
My question, How I can close this installation? or what are the correct form to use this plugin?
Thank you for your help.
Offline
this is a task which is outdated not an install.
+
There is a bug in the mailing.
For no receive emails :
In the task -> you set it to installed.
and in plugin_install_alerting() in inc/plugin_install.functions_display.php
you modify row 41 :
$query.= " glpi_plugin_install_tasks.end_date <= '".$date."' AND glpi_plugin_install.is_template='0' AND glpi_plugin_install.deleted = '0' AND glpi_plugin_install_tasks.deleted='0'";
to
$query.= " glpi_plugin_install_tasks.end_date <= '".$date."' AND glpi_plugin_install_tasks.installed='0' AND glpi_plugin_install.is_template='0' AND glpi_plugin_install.deleted = '0' AND glpi_plugin_install_tasks.deleted='0'";
Xavier Caillaud
Blog GLPI Infotel
Offline
Thanks for your help, I add a new task but I can set to installed, I add a new task with the Task carried out in Yes, and see the that the task is in green, but the principal viewe is in red.
Offline
with this, if your task are carried out, do you don't receive mails.
Xavier Caillaud
Blog GLPI Infotel
Offline
Pages: 1