You are not logged in.
Pages: 1
Hi, I created an notification from contract to send e-mail to mailcollector, but the GLPI are putting this e-mails on blacklist
I already check all rules and test disable then, but e-mails send from contract notification steal appear blacklisted=2 after "Get Email Tickets Now".
How can I track this blacklist and solve my problem?
Offline
Setup > Dropdowns > Blacklisted Mail Content
GLPI Collaborator and Plugin Developer.
My non-English comments are automated translations. Sorry for any confusion that causes.
Mes commentaires non anglais sont des traductions automatiques. Désolé pour toute confusion qui cause.
Mis comentarios que no están en inglés son traducciones automáticas. Perdón por cualquier confusión que cause.
Offline
Thanks, but I already saw, and is empty... no filter added, how can I debug where this is classified as blacklist?
We have another notifications about license, etc and it is not blacklisted
Thank you in advance
Offline
I found the part of code that is blacklisting my notification:
```
if ($this->isMessageSentByGlpi($message)) {
// Message was sent by current instance of GLPI.
// Message is blacklisted to avoid infinite loop (where GLPI creates a ticket from its own notification).
$tkt['_blacklisted'] = true;
return $tkt;
}
```
but sometimes I want an automatic notification turn into a ticket, especially expiration license and contracts
Offline
Pages: 1