We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents dede58c + 5d4e66f commit afb9c29Copy full SHA for afb9c29
src/ActiveCollab/EmailReplyExtractor.php
@@ -117,6 +117,8 @@ public static function detectMailer(array $headers)
117
return self::ANDROID_MAIL;
118
} else if (strpos($headers['message-id'], 'i.mail.ru') !== false) {
119
return self::MAIL_RU_MAIL;
120
+ } else if (strpos($headers['message-id'], 'B') !== false && strpos($headers['message-id'], 'D.') !== false) {
121
+ return self::THUNDERBIRD_MAIL;
122
}
123
} else if (isset($headers['mime-version']) && strpos($headers['mime-version'], 'Apple Message framework') !== false) {
124
return self::APPLE_MAIL;
0 commit comments