<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Problem detected on temporary mailbox in Operating System - OpenVMS</title>
    <link>https://community.hpe.com/t5/operating-system-openvms/problem-detected-on-temporary-mailbox/m-p/5322675#M27952</link>
    <description>&lt;P&gt;Saludos,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp; I don't think this is a bug at all. You asked for case sensitivity, you got it.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; SET PROCESS/PARSE=EXTENDED refers to parsing of command lines.&amp;nbsp;When set, case is preserved for (some) unquoted command line parameters, in this case the equivalence name of your logical name.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;There is a different flag to&amp;nbsp;turn on&amp;nbsp;case sensitivity of file name lookups, SET PROCESS/CASE_LOOKUP=SENSITIVE. Your problem is that the $CREMBX service doesn't uppercase the equivalence name of LNM$TEMPORARY_MAILBOX, performs a case sensitive translation to find the table, and fails because it doesn't find a matching table. All correct behaviour.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;Your&amp;nbsp;example using SYS$LOGIN, it's the RMS $PARSE service doing the translation, which does a case blind logical name translation, either because of the process setting of CASE_LOOKUP, or because the device is ODS2. Example:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;$ create SYS$SYSDEVICE:[TCPIP$FTP]testfile.txt
^Z
$ dir/size SYS$SYSDEVICE:[TCPIP$FTP]

Directory SYS$SYSDEVICE:[TCPIP$FTP]

LOGIN.COM;1                1
TCPIP$FTP_RUN.LOG;24
                         102
TCPIP$FTP_RUN.LOG;23
                           0
TCPIP$FTP_RUN.LOG;22
                           2
TCPIP$FTP_RUN.LOG;21
                           0
TCPIP$FTP_RUN.LOG;20
                           1
testfile.txt;1             0

Total of 7 files, 106 blocks.

$ define testlog sys$sysdevice:[tcpip$ftp]
$ show log testlog
"TESTLOG" = "sys$sysdevice:[tcpip$ftp]" (LNM$PROCESS_TABLE)

$ dir testlog
%DIRECT-E-OPENIN, error opening SYS$SYSDEVICE:[tcpip$ftp]*.*;* as input
-RMS-E-DNF, directory not found
-SYSTEM-W-NOSUCHFILE, no such file&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;This shows that RMS does case blind logical name translations, but case sensitive file lookup on ODS5 devices when CASE_LOOKUP=SENSITIVE&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp; Bottom line here is if you're going to have extended parsing enabled, you need to &lt;STRONG&gt;&lt;EM&gt;expect&lt;/EM&gt;&lt;/STRONG&gt; case sensitive behaviour, and therefore make sure you specify the correct case at all times for all parameters.&lt;/P&gt;</description>
    <pubDate>Tue, 06 Sep 2011 04:12:40 GMT</pubDate>
    <dc:creator>John Gillings</dc:creator>
    <dc:date>2011-09-06T04:12:40Z</dc:date>
    <item>
      <title>Problem detected on temporary mailbox</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/problem-detected-on-temporary-mailbox/m-p/5321943#M27934</link>
      <description>&lt;P&gt;Hello all,&lt;/P&gt;&lt;P&gt;We are migrating the application from an alpha machine (OpenVMS V7.3-2﻿) to an Itanium machine (OpenVMS V8.4﻿) and we have detected a mistake when intend to create a temporary mailbox to enable communication between processes in different jobs﻿ and appears this error:&lt;/P&gt;&lt;P&gt;%SYSTEM-F-NOLOGTAB, no logical name table name match﻿&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;When we use this command:&lt;/P&gt;&lt;P&gt;DEFINE/TABLE=LNM$PROCESS_DIRECTORY LNM$TEMPORARY_MAILBOX&amp;nbsp; &lt;STRONG&gt;LNM$group&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;create/mail mailtest&lt;STRONG&gt;﻿&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;on produces the NOLOGTAB error message&lt;/P&gt;&lt;P&gt;But if we use the command:&lt;/P&gt;&lt;P&gt;DEFINE/TABLE=LNM$PROCESS_DIRECTORY LNM$TEMPORARY_MAILBOX&amp;nbsp; &lt;STRONG&gt;LNM$GROUP&lt;/STRONG&gt;﻿&lt;/P&gt;&lt;P&gt;The mailbox creation is successfully.&lt;/P&gt;&lt;P&gt;The command distinguishes between upper and lower cases.﻿&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Is this produced by an error on OpenVMS version distribution?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Saludos.&lt;/P&gt;</description>
      <pubDate>Mon, 05 Sep 2011 09:36:23 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/problem-detected-on-temporary-mailbox/m-p/5321943#M27934</guid>
      <dc:creator>Daniel Fernandez Illan</dc:creator>
      <dc:date>2011-09-05T09:36:23Z</dc:date>
    </item>
    <item>
      <title>Re: Problem detected on temporary mailbox</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/problem-detected-on-temporary-mailbox/m-p/5322013#M27935</link>
      <description>&lt;P&gt;What does SHOW PROCESS/PARSE say?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I suppose the command not working is unexpected, and arguably a bug. Whether logical names are case sensitive or not is up to the individual application.&lt;/P&gt;</description>
      <pubDate>Mon, 05 Sep 2011 10:42:16 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/problem-detected-on-temporary-mailbox/m-p/5322013#M27935</guid>
      <dc:creator>Richard Brodie_1</dc:creator>
      <dc:date>2011-09-05T10:42:16Z</dc:date>
    </item>
    <item>
      <title>Re: Problem detected on temporary mailbox</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/problem-detected-on-temporary-mailbox/m-p/5322281#M27939</link>
      <description>&lt;P&gt;In effect, changing the value of parse to traditional the commando works properly﻿.&lt;/P&gt;&lt;P&gt;But the lis bellow shows the commands and responses associated:&lt;/P&gt;&lt;P&gt;DEFINE/TABLE=LNM$PROCESS_DIRECTORY LNM$TEMPORARY_MAILBOX&amp;nbsp; LNM$group﻿&lt;/P&gt;&lt;P&gt;sho log /TABLE=LNM$PROCESS_DIRECTORY LNM$TEMPORARY_MAILBOX﻿&lt;/P&gt;&lt;P&gt;LNM$TEMPORARY_MAILBOX" = "&lt;STRONG&gt;LNM$GROUP&lt;/STRONG&gt;" (LNM$PROCESS_DIRECTORY)&lt;BR /&gt;1&amp;nbsp; "LNM$GROUP" = "LNM$GROUP_000120" (LNM$PROCESS_DIRECTORY)&lt;BR /&gt;﻿&lt;/P&gt;&lt;P&gt;In all cases shows upercase definitions (expected functionallity)&lt;/P&gt;&lt;P&gt;By other hand (using parse=extended)&lt;/P&gt;&lt;P&gt;define/table=exptbl testlog sys$login﻿&lt;/P&gt;&lt;P&gt;dir testlog:*.*&lt;/P&gt;&lt;P&gt;Directory EXPUSR:[EXPAPLIC]&lt;BR /&gt;&lt;BR /&gt;LOGIN.COM;4&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; LOGIN.COM;3&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; LOGIN.COM;2&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; LOGIN.COM;1&lt;BR /&gt;﻿&lt;/P&gt;&lt;P&gt;define/table=exptbl testlog SYS$login﻿&lt;/P&gt;&lt;P&gt;dir testlog:*.*&lt;BR /&gt;&lt;BR /&gt;Directory EXPUSR:[EXPAPLIC]&lt;BR /&gt;&lt;BR /&gt;LOGIN.COM;4&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; LOGIN.COM;3&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; LOGIN.COM;2&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; LOGIN.COM;1&lt;BR /&gt;﻿&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;In my opinion, it is a bug in $CREMBX﻿ system service.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Saludos.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 05 Sep 2011 13:35:52 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/problem-detected-on-temporary-mailbox/m-p/5322281#M27939</guid>
      <dc:creator>Daniel Fernandez Illan</dc:creator>
      <dc:date>2011-09-05T13:35:52Z</dc:date>
    </item>
    <item>
      <title>Re: Problem detected on temporary mailbox</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/problem-detected-on-temporary-mailbox/m-p/5322313#M27942</link>
      <description>&lt;P&gt;In my opinion there is an incomplete, inconsistent or incorrect documentation of what the parameters for DEFINE are, that is how they are implemented.&amp;nbsp;$CREMBX seems to work as expected.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;VMS was not designed for case sensitivity, so unexpected behavior with parse=extended (and/or case=sensitive) is expected.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The parameter&amp;nbsp;﻿﻿﻿equivalence-name is defined as a file spec:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV&gt;$ search SYS$COMMON:[SYSUPD]DCLINT.CLD "cliroutine define"/wind=(0,3)&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; cliroutine define&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; prefix cli$k_defi_&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; parameter p1,prompt="Log name",value(required,type=$outlog)&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; parameter p2,prompt="Equ name",value(required,type=$old_file,list)&lt;/DIV&gt;&lt;DIV&gt;$&lt;/DIV&gt;&lt;DIV&gt;So it is subject to upcasing, depending on the parse style.&lt;/DIV&gt;&lt;DIV&gt;In your case, the equivalence name &amp;nbsp;LNM$TEMPORARY_MAILBOX﻿ itself is looked up in a logical name table. The matching is (and as far as I know always was) done case sensitive. So LNM$group is not found while LNM$GROUP is.&lt;/DIV&gt;&lt;DIV&gt;At least the documentation in "help define" does not explain the matching and/or the dependence on the parse style.&lt;/DIV&gt;</description>
      <pubDate>Mon, 05 Sep 2011 14:20:36 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/problem-detected-on-temporary-mailbox/m-p/5322313#M27942</guid>
      <dc:creator>H.Becker</dc:creator>
      <dc:date>2011-09-05T14:20:36Z</dc:date>
    </item>
    <item>
      <title>Re: Problem detected on temporary mailbox</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/problem-detected-on-temporary-mailbox/m-p/5322675#M27952</link>
      <description>&lt;P&gt;Saludos,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp; I don't think this is a bug at all. You asked for case sensitivity, you got it.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; SET PROCESS/PARSE=EXTENDED refers to parsing of command lines.&amp;nbsp;When set, case is preserved for (some) unquoted command line parameters, in this case the equivalence name of your logical name.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;There is a different flag to&amp;nbsp;turn on&amp;nbsp;case sensitivity of file name lookups, SET PROCESS/CASE_LOOKUP=SENSITIVE. Your problem is that the $CREMBX service doesn't uppercase the equivalence name of LNM$TEMPORARY_MAILBOX, performs a case sensitive translation to find the table, and fails because it doesn't find a matching table. All correct behaviour.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;Your&amp;nbsp;example using SYS$LOGIN, it's the RMS $PARSE service doing the translation, which does a case blind logical name translation, either because of the process setting of CASE_LOOKUP, or because the device is ODS2. Example:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;$ create SYS$SYSDEVICE:[TCPIP$FTP]testfile.txt
^Z
$ dir/size SYS$SYSDEVICE:[TCPIP$FTP]

Directory SYS$SYSDEVICE:[TCPIP$FTP]

LOGIN.COM;1                1
TCPIP$FTP_RUN.LOG;24
                         102
TCPIP$FTP_RUN.LOG;23
                           0
TCPIP$FTP_RUN.LOG;22
                           2
TCPIP$FTP_RUN.LOG;21
                           0
TCPIP$FTP_RUN.LOG;20
                           1
testfile.txt;1             0

Total of 7 files, 106 blocks.

$ define testlog sys$sysdevice:[tcpip$ftp]
$ show log testlog
"TESTLOG" = "sys$sysdevice:[tcpip$ftp]" (LNM$PROCESS_TABLE)

$ dir testlog
%DIRECT-E-OPENIN, error opening SYS$SYSDEVICE:[tcpip$ftp]*.*;* as input
-RMS-E-DNF, directory not found
-SYSTEM-W-NOSUCHFILE, no such file&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;This shows that RMS does case blind logical name translations, but case sensitive file lookup on ODS5 devices when CASE_LOOKUP=SENSITIVE&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp; Bottom line here is if you're going to have extended parsing enabled, you need to &lt;STRONG&gt;&lt;EM&gt;expect&lt;/EM&gt;&lt;/STRONG&gt; case sensitive behaviour, and therefore make sure you specify the correct case at all times for all parameters.&lt;/P&gt;</description>
      <pubDate>Tue, 06 Sep 2011 04:12:40 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/problem-detected-on-temporary-mailbox/m-p/5322675#M27952</guid>
      <dc:creator>John Gillings</dc:creator>
      <dc:date>2011-09-06T04:12:40Z</dc:date>
    </item>
    <item>
      <title>Re: Problem detected on temporary mailbox</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/problem-detected-on-temporary-mailbox/m-p/5323223#M27956</link>
      <description>&lt;P&gt;If OP asked for case preservation, and not for case sensitivity, then this is a bug. &amp;nbsp;Albeit with an easy work-around.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Had this been an RMS parsing operation, the parsing and the filename matching would have matched irrespective of casing when case-preserving, and the match failed when case-sensitive. &amp;nbsp;These character-matching cases were found all over the place in applications, when RMS switched.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If you want to imagine an even worse case for finding these, consider what would happen with the addition of native UTF-8 filename support and not the current "storage-only" UTF-8 implementation.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;As for what HP classifies this case as, OP will have to ask them.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 06 Sep 2011 12:59:38 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/problem-detected-on-temporary-mailbox/m-p/5323223#M27956</guid>
      <dc:creator>Hoff</dc:creator>
      <dc:date>2011-09-06T12:59:38Z</dc:date>
    </item>
    <item>
      <title>Re: Problem detected on temporary mailbox</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/problem-detected-on-temporary-mailbox/m-p/5323301#M27957</link>
      <description>&lt;P&gt;Hello&lt;/P&gt;&lt;P&gt;I have found a difference in the documentation (OpenVMS DCL dictionary) that it could explain the no expected operation of the command DEFINE﻿&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Version 7.3.2&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT color="003366"&gt;DEFINE&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;BLOCKQUOTE&gt;Associates an equivalence name with a logical name.&lt;/BLOCKQUOTE&gt;&lt;HR /&gt;&lt;P&gt;Format&lt;/P&gt;&lt;BLOCKQUOTE&gt;DEFINE logical-name equivalence-name[,...]&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/BLOCKQUOTE&gt;&lt;HR /&gt;&lt;P&gt;Parameters logical-name&lt;/P&gt;&lt;P&gt;Specifies the logical name string, which is a character string containing from 1 to 255 characters. The following rules apply:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;If the logical name is to be entered into the process or system directory logical name tables (LNM$PROCESS_DIRECTORY, LNM$SYSTEM_DIRECTORY), then the name can only have from 1 to 31 alphanumeric characters, including the dollar sign ($) and underscore (_).&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;And Version 8.4&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT color="maroon"&gt;DEFINE&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;BLOCKQUOTE&gt;Associates an equivalence name with a logical name.&lt;/BLOCKQUOTE&gt;&lt;HR /&gt;&lt;P&gt;Format&lt;/P&gt;&lt;BLOCKQUOTE&gt;DEFINE logical-name equivalence-name[,...]&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/BLOCKQUOTE&gt;&lt;HR /&gt;&lt;P&gt;Parameters logical-name&lt;/P&gt;&lt;P&gt;Specifies the logical name string, which is a character string containing from 1 to 255 characters. The following rules apply:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;If the logical name is to be entered into the process or system directory logical name tables (LNM$PROCESS_DIRECTORY, LNM$SYSTEM_DIRECTORY), then the name can only have from 1 to 31 alphanumeric characters, including the dollar sign ($) and underscore (_). &lt;U&gt;&lt;STRONG&gt;If the logical name translates to a logical name table name, any alphabetic characters in the name should all be uppercase.&lt;/STRONG&gt;&lt;/U&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;In my opinion the unexpected of DEFINE loginal name operation would have to be remarked﻿﻿.&lt;/P&gt;&lt;P&gt;Thanks to all&lt;/P&gt;&lt;P&gt;Saludos.&lt;/P&gt;&lt;P&gt;﻿&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 06 Sep 2011 13:50:42 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/problem-detected-on-temporary-mailbox/m-p/5323301#M27957</guid>
      <dc:creator>Daniel Fernandez Illan</dc:creator>
      <dc:date>2011-09-06T13:50:42Z</dc:date>
    </item>
    <item>
      <title>Re: Problem detected on temporary mailbox</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/problem-detected-on-temporary-mailbox/m-p/5323475#M27958</link>
      <description>&lt;P&gt;So it's a documented bug. &amp;nbsp;OK.&lt;/P&gt;</description>
      <pubDate>Tue, 06 Sep 2011 15:20:28 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/problem-detected-on-temporary-mailbox/m-p/5323475#M27958</guid>
      <dc:creator>Hoff</dc:creator>
      <dc:date>2011-09-06T15:20:28Z</dc:date>
    </item>
    <item>
      <title>Re: Problem detected on temporary mailbox</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/problem-detected-on-temporary-mailbox/m-p/5324157#M27959</link>
      <description>&lt;P&gt;Thanks Hoff&lt;/P&gt;&lt;P&gt;Saludos&lt;/P&gt;</description>
      <pubDate>Wed, 07 Sep 2011 06:55:55 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/problem-detected-on-temporary-mailbox/m-p/5324157#M27959</guid>
      <dc:creator>Daniel Fernandez Illan</dc:creator>
      <dc:date>2011-09-07T06:55:55Z</dc:date>
    </item>
  </channel>
</rss>

