[Search for users]
[Overall Top Noters]
[List of all Conferences]
[Download this site]
| Title: | *OLD* ALL-IN-1 (tm) Support Conference | 
| Notice: | Closed - See Note 4331.l to move to IOSG::ALL-IN-1 | 
| Moderator: | IOSG::PYE | 
|  | 
| Created: | Thu Jan 30 1992 | 
| Last Modified: | Tue Jan 23 1996 | 
| Last Successful Update: | Fri Jun 06 1997 | 
| Number of topics: | 4343 | 
| Total number of notes: | 18308 | 
2287.0. "Mail forward/nosend & Mail send." by BALZAC::KUOCH () Thu Feb 18 1993 13:47
Hi,
    There is a problem with  MAIL FORWARD/NOSEND & MAIL SEND  :
          Under WP screen (form EMC), I have a created document.
    	  I execute the following script (<do test.scp) :
    			! test.scp
    			mail initialize
    			mail forward /nosend
    			mail send "sys$login:test.txt"
    			get oa$display="-" oa$status "-"
    			.exit
    	  The content of test.txt is :
    			TO: Cheu Kuoch                           ( KUOCH )
    			Subject: TEST
    			ABCDEF
    	  While executing the command "mail forward /nosend", the following
    	  question is asked :
    		Do you wish to add a cover note? [Y/N]
    	  If I answer "Y" and create a cover note, empty or not,
                          ok, I receive the mail.
    	  If I answer "N" , ALL-IN-1 V3.0 crash while executing "mail send"
%SYSTEM-F-ACCVIO, access violation, reason mask=05, virtual address=20202020, PC
=001B53CE, PSL=03C00000
  Improperly handled condition, image exit forced.
        Signal arguments              Stack contents
        Number = 00000005                0000000A
        Name   = 0000000C                34455241
                 00000005                0088F458
                 20202020                00000000
                 001B53CE                2FFC0000
                 03C00000                7FEEB248
                                         7FEEB20C
                                         001B64D4
                                         00000009
                                         0031E178
        Register dump
        R0 = 0000000C  R1 = 7FEEB18C  R2 = 00000000  R3 = 0088F462
        R4 = 00000000  R5 = 00000000  R6 = 003BC538  R7 = 0000FFFF
        R8 = 003BC558  R9 = 0088F458  R10= 00000000  R11= 000768D8
        AP = 7FEEB150  FP = 7FEEB110  SP = 7FEEB18C  PC = 001B53CE
        PSL= 03C00000
 
    Note : "virtual address=20202020" means that there is an addressing error
           hexadecimal 20 is a space, it corresponds to a 4 spaces string 
    	   variable, not an address.
    The problem is produced with English and French version :
    ALL-IN-1 IOS Server for VMS V3.0 PBL123A  (US) ENGLISH 21-MAR-1992,
    ALL-IN-1 IOS Server for VMS V3.0 PBL123A FRENCH 2-AUG-1992
Thank in advance for helps.
Cheu.
    
| T.R | Title | User | Personal Name
 | Date | Lines | 
|---|
| 2287.1 | Please SPR this | IOSG::MAURICE | Because of the architect the building fell down | Thu Feb 18 1993 17:47 | 12 | 
|  |     Hi,
    
    You've hit upon a bug in MAIL FORWARD which normally doesn't matter,
    but does impact any subsequent MAIL SEND with a filename parameter. (It
    has forgotten to clear a vital global symbol - oa$gt_emd_mail_dsab). 
    
    Unfortunately I can't see any obvious workround. Sorry this isn't much
    help.
    
    Cheers
    
    Stuart
 | 
| 2287.2 | A temporary solution. | BALZAC::KUOCH |  | Fri Feb 19 1993 17:11 | 22 | 
|  |     A temporary solution is to create,close and delete a temporary message
    before "mail send". That is :
    
    
            ! test.scp
            mail initialize
            mail forward /nosend
    
            mail push_curmes
            mail create/open/nosend
            mail close_message
            mail delete/noprompt
            mail pop_curmes
       
            mail send "sys$login:test.txt"
            get oa$display="-" oa$status "-"
            .exit
    
    
    Regards.
    Cheu.
          
 |