Konuşmaları birleştirmek için Redemption kitaplığını kullanan kendi makronumu yazmak için diğer yanıt yazısının ve bu makalenin bir kombinasyonunu kullandım .
Bu, geçerli klasörü tarar, herhangi bir jira e-postasını seçer, konu anahtarını konudan çıkarır. Daha önce bu tuşa görmüş değilse, bu sorun anahtarına dayalı bir koleksiyonda konuşma indeksini kazandırıyor ve eğer gelmiştir önceden görmüş, bu kaydedilen konuşma indeksi ile e-posta günceller.
Dim ConversationIndexes As New Collection
Sub GroupJira()
Dim MapiNamespace As Object
Dim RdoSession As Object
Dim Item As Object
Dim RdoItem As Object
Dim ConversationKey As String
Dim ConversationIndex As String
' Get all the required handles
Set MapiNamespace = Outlook.GetNamespace("MAPI")
MapiNamespace.Logon
Set RdoSession = CreateObject("Redemption.RDOSession")
RdoSession.MAPIOBJECT = MapiNamespace.MAPIOBJECT
'Setup some subject patterns to extract the issue key
Dim Matches As MatchCollection
Dim UpdateSubjectPattern As New RegExp
UpdateSubjectPattern.Pattern = "\[JIRA\] \(([A-Z]+-[0-9]+)\) .*"
Dim MentionedSubjectPattern As New RegExp
MentionedSubjectPattern.Pattern = "\[JIRA\] .* mentioned you on ([A-Z]+-[0-9]+) \(JIRA\)"
For Each Item In Outlook.ActiveExplorer.CurrentFolder.Items
If TypeOf Item Is MailItem Then
If Left(Item.Subject, 7) = "[JIRA] " Then
' Get a key for this conversation, opic for now
ConversationKey = Item.ConversationTopic
Set Matches = UpdateSubjectPattern.Execute(Item.Subject)
If Matches.Count >= 1 Then ConversationKey = Matches(0).SubMatches(0)
Set Matches = MentionedSubjectPattern.Execute(Item.Subject)
If Matches.Count >= 1 Then ConversationKey = Matches(0).SubMatches(0)
' Get any saved indexes
ConversationIndex = ""
On Error Resume Next
ConversationIndex = ConversationIndexes.Item(ConversationKey)
On Error GoTo 0
If ConversationIndex = "" Then
' Save this index if not seen yet
ConversationIndexes.Add Item.ConversationIndex, ConversationKey
ElseIf Item.ConversationIndex <> ConversationIndex Then
' Set the item's index if it has
Set RdoItem = RdoSession.GetMessageFromID(Item.EntryID, Item.Parent.StoreID)
RdoItem.ConversationIndex = ConversationIndex
RdoItem.Save
End If
End If
End If
Next Item
End Sub
Bu, aşağıdaki kütüphaneleri gerektirir:
- İleti dizini ayarlamak için gereken tam RDO erişimi için tekliften yararlanma kitaplığı (bu, kaydolmak için yükseklik gerektirmez)
Microsoft VBScript Regular Expressions 5.5
Posta konularından sorun anahtarlarını ayıklamak için kitaplığa başvuru .
Oh, ayrıca çalıştırmak için makro güvenlik ayarlarınızı da yapmanız gerekir.