Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Check whether a message is an auto reply based on configuration #12

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

larhip
Copy link
Collaborator

@larhip larhip commented Aug 11, 2021

With the new method it is possible to detect auto replies or auto generated mail by their header (see also rfc3834)

This would be pretty useful in order to prevent sending automatic mails in reply to such messages (loop prevention).
See also corresponding PR in itop-standard-email-synchro.

@bastischubert
Copy link

So will auto replies still show up in itop and we can filter on the notification/triggers to prevent mail ping-pongs? Or will these E-Mails never show up in iTop (be suppressed) ?

@larhip
Copy link
Collaborator Author

larhip commented Aug 13, 2021

In detail this PR will just add a new method which will allow to detect auto generated / replied mails.
This new method will be used in PR#5 in itop-standard-email-synchro.
PR#5 on itop-standard-email-synchro is using the method to prevent sending an automatic rejection message in case of unknown caller (so for this special case will not be suppressed but there is no rejection reply).
But basically this method could be used for other features in the future as well (maybe to prevent the creation of a new caller in case of an auto mail, ...)
Currently this logic is not that smart that you can use it to filter actions/trigger.

@piRGoif piRGoif added this to First review needed in Combodo PR dashboard via automation Aug 31, 2021
@Molkobain
Copy link
Member

Hello Lars, I'll check this PR on friday, would you update/rebase you branch on master in the meantime? Thanks

@Molkobain Molkobain self-assigned this May 3, 2022
@Molkobain Molkobain added the enhancement New feature or request label May 3, 2022
@jbostoen
Copy link
Contributor

Might also be worth checking out the open issue on my fork: jbostoen/itop-jb-mail-to-ticket-automation-v2#21

@Molkobain Molkobain moved this from First review needed to Pending technical review in Combodo PR dashboard Mar 7, 2023
Copy link
Member

@Molkobain Molkobain left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Will be reviewed this afternoon

foreach ($aAutoReplyHeaderPatterns as $sHeader => $sPattern) {
if(array_key_exists(strtolower($sHeader), $this->aHeaders))
{
IssueLog::Info("Header \"$sHeader\" exists with the value: \"" . $this->aHeaders[strtolower($sHeader)] . "\"");
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
IssueLog::Info("Header \"$sHeader\" exists with the value: \"" . $this->aHeaders[strtolower($sHeader)] . "\"");
IssueLog::Debug("Header \"$sHeader\" exists with the value: \"" . $this->aHeaders[strtolower($sHeader)] . "\"");

if (preg_match($sPattern, $this->aHeaders[strtolower($sHeader)]))
{
// Current mail is an auto reply
IssueLog::Info("Given mail is an autoreply!");
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
IssueLog::Info("Given mail is an autoreply!");
IssueLog::Debug("Given mail is an autoreply!");

@Molkobain
Copy link
Member

Hello Lars,

We reviewed this PR today, seems like the RFC was updated. We wonder the header value, you only check for "auto-replied", how about "auto-generated"; wasn't it relevant in your use cases?

@Molkobain Molkobain moved this from Pending technical review to Pending functional review in Combodo PR dashboard Mar 7, 2023
@larhip
Copy link
Collaborator Author

larhip commented Mar 8, 2023

Hi Guillaume,

the idea of this PR(s) was to prevent email "ping pong" between iTop and a mail server. "Ping pong" means: iTop is sending a mail (i.e. "Hey you are an unknown caller"), Mail server ist sending an auto-reply (i.e. "Hey this is an auto-reply to your message"), iTop is sending again ("Hey your are an unknown caller"), and so on and so on.

From my point of view this "endless loop" should happen with auto-replies but not auto generated mails, since they are generated not in a reply to a mail from iTop. (correct me if I am wrong).

There might be a good reason to handle some auto generated mails in iTop, or at least handle them different then auto replies.

You could follow my explanation?

@Molkobain
Copy link
Member

Thanks for the feedback, it is kind of how we understood it as well but as we didn't collect much experience on that matter yet, we didn't know if some mail servers would flag an out of office response as "auto-generated" for example. So we wanted to know what you encountered in your experience.

So it's all good for us (technically), the PRs will be functionally reviewed next week. :)

@Molkobain
Copy link
Member

Accepted during functional once the following modification has been made: Empty the default auto_reply_header_patterns parameter value so the default behavior does not change.

We don't have enough experience yet on the headers and their values when it comes to the different mail servers out there (Exchange, GMail, ...).

Anyhhow, the feature will be documented and people will be able to activate it.
Once we collected enough feedbacks from the users, we will add a default value that should match most people expectations.

@Molkobain Molkobain moved this from Pending functional review to Pending contributor update in Combodo PR dashboard Mar 14, 2023
@Hipska
Copy link
Collaborator

Hipska commented Mar 14, 2023

I would suggest to only empty it in the code, but keep in the module. That way it will not change behaviour for existing users, but it will get enabled for new users..

Comment on lines +473 to +475
$aAutoReplyHeaderPatterns = array(
'auto-submitted' => '/^auto-replied.*$/i',
);
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
$aAutoReplyHeaderPatterns = array(
'auto-submitted' => '/^auto-replied.*$/i',
);
$aAutoReplyHeaderPatterns = [];

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
Status: Pending contributor update
Combodo PR dashboard
  
Pending contributor update
5 participants