Domino 9 und frühere Versionen > ND8: Administration & Userprobleme
Header einer Mail einsehen
m3:
Deswegen haben ich ja "... Export als "Structured Text" aus der View heraus ..." geschrieben. ;)
@Michael: Die Designer-Hilfe meint dazu:
--- Zitat ---Configuring how Domino converts inbound MIME messages to Notes rich-text
Conversion to Notes rich-text format is necessary when the storage preference for the recipient's mail file is set to Notes rich-text format, or when the route to the destination mail file includes Domino servers earlier than Release 5.
The Domino mail router
When necessary, the Router converts the format of the message. Conversion can occur during message delivery and during message transfer. For example, if a recipient's Person document specifies MIME storage for incoming mail, but the original message was sent in Notes rich text format, the Router converts the message to MIME before delivering it to the local recipient's mail file. To determine whether the receiving server can handle MIME messages, the sending server checks the Server document of the receiving server to find out what version of Domino it's running.
To minimize the number of conversions, Domino servers running Release 5 or later support the transfer of MIME messages over Notes routing. As a result, MIME messages destined for Internet recipients can route through internal servers "as is," regardless of whether the intermediate servers use Notes routing or SMTP.
--- Ende Zitat ---
Wenn der User seien Mails primär via POP3/IMAP4 abruft, würde ich im Personendokument das Feld "Format preference for incoming mail" auf "Prefers MIME" umstellen, dann müssen die Mails nicht, bevor sie via IMAP4 ausgelifert werden, on-the-fly konvertiert werden. Ansonsten fahr ich mit "Keep in senders' format" eigentlich sehr gut.
michael-r:
Danke Martin für die Ausführung :).
Man lernt immer dazu :).
muchubsi:
Hier einen Agenten, den Du sehr leicht einbinden kannst und dann auf Knopfdruck die nötigen HEADER Informationen bekommst:
Sub Initialize
Dim doc As notesdocument
Dim uidb As notesuidatabase
Dim db As notesdatabase
Dim collection As notesdocumentcollection
Dim nSuccess As Integer
Dim uiws As New notesuiworkspace
Set uidb = uiws.currentdatabase
Set db = uidb.database
Set collection = db.UnprocessedDocuments
If collection.count > 0 Then
Set doc = collection.GetNthDocument(1)
nSuccess = uiws.dialogbox("(DDI)",True,True,True,False,False,False,"Detailed Delivery Information",doc,True,True)
End If
End Sub
Navigation
[0] Themen-Index
[*] Vorherige Sete
Zur normalen Ansicht wechseln