|
Om SMTP verkeer op de Domino server te debuggen zijn er een paar handige parameters om tijdelijk in de notes.ini te plaatsen en zo extra informatie te krijgen.
Voor uitgaande berichten:
Setting the notes.ini parameter SmtpSaveOutboundToFile=1 (0 = Off, 1= On) will result in each outbound SMTP message being copied to a temporary file on the server. These messages will be saved as individual TMP files within the TMP directory specified for the server.
The file names will be STXXXXXX.TMP (where XXXXXX will be 6 numerical digits). The contents of the files will contain the header information and the MIME information.
Using a remote console on the Domino server, issue the following command: set config SmtpSaveOutboundToFile=1
OR
Open the server's notes.ini and add the following parameter within the file: SmtpSaveOutboundToFile=1
Note: Recycle the Domino server for the change in the NOTES.INI to take effect.
Zie het volledige bericht op: http://www-1.ibm.com/support/docview.wss?rs=0&uid=swg21088993
Voor inkomende berichten:
Setting the smtpsaveimporterrors parameter described below and restarting the SMTP listener task will result in each message being copied to a temporary file on the server. These messages will be saved as individual TMP files within the TMP directory specified for the server. The file names will be STXXXXXX.TMP (where XXXXXX will be 6 numerical digits). The contents of the files will contain the header information and the MIME information.
Using a remote console on the Domino server, issue the following command (and then restart the SMTP task): set config smtpsaveimporterrors=x
(where x is 0, 1, 2 or 3, as described below)
OR
Open the server's notes.ini and add the following parameter within the file (and then restart the Domino server): smtpsaveimporterrors=x
(where x is 0, 1, 2 or 3, as described below)
The value of the parameter controls the saving of messages as follows: 0 - Disabled
1 - Save all messages that fail to import (parse/save in mail.box). This setting is useful to trap messages that we fail to accept from other SMTP servers sending mail to this server. It is important to note that only message that result in import errors will be written to a temp file when using this value.
2 - Save all messages that are received at the server.
3 - Save all inbound messages during import, delete all messages that have been successfully received and written into mail.box. Only messages that fail to be imported into mail.box will be saved to a temp file. Because the temporary file is deleted after each successful conversion, the disk space and maintenance required for the temporary files is significantly less than with option 2. The new option is especially useful if troubleshooting a crash scenario where the time between crashes spans days or weeks.
Zie het volledige bericht op: http://www-1.ibm.com/support/docview.wss?rs=203&uid=swg21095102
|