George, 

Here's a guess - it looks to me like this section of code is being executed: 
if from_center = center then
      from_default = uid||AtSignC||center"."domain

The variable "domain" has not been assigned a value, so the value is 'DOMAIN' 
and "center" has been assigned the value "PAL6". 

It looks like "center" gets assigned in this section: 
/* ------------------------------------------------------ *
 * Define the Center, or NJE Node, where the SMTP         *
 * Server is running.                                     *
 *                                                        *
 * If the SMTP Server is running in the active Node then  *
 * no change is required as it is dynamically determined. *
 * ------------------------------------------------------ */
 Center      = sysvar('sysnode')
 From_Center = center

The comment directly above it says that this code doesn't need to be modified 
if the SMTP server is running in the active Node.  

So, if these variables have values you are not expecting, it looks like it 
might have to do with the SMTP server.   Anything changed there recently? 

Greg 


-----Original Message-----
From: IBM Mainframe Discussion List [mailto:[email protected]] On Behalf 
Of George Rodriguez
Sent: Wednesday, March 05, 2014 11:53 AM
To: [email protected]
Subject: Re: Problem Using XMITIP

Greg,

Here's what I have fro those values:

/* ----------------------------------------------------- *
 * append_domain                                         *
 *  if not null then used to append to e-mail addresses  *
 *  that are specified without a domain.                 *
 *  Note: do NOT code the @ symbol - it will be added    *
 *        by default.                                    *
 * ----------------------------------------------------- */  append_domain = 
null
/* ------------------------------------------------------ *
 * Define the Center, or NJE Node, where the SMTP         *
 * Server is running.                                     *
 *                                                        *
 * If the SMTP Server is running in the active Node then  *
 * no change is required as it is dynamically determined. *
 * ------------------------------------------------------ */
 Center      = sysvar('sysnode')
 From_Center = center
/* ----------------------------------------------------- *
 * Setup the From Default                                *
 * This section should be customized for each shop       *
 * or at least reviewed.  Interlink users must customize *
 *                                                       *
 * Note: if fromreq is enabled (non-zero) then           *
 *       from_default can be * and will cause the        *
 *       user specified from to be used for the sender   *
 * ----------------------------------------------------- */
   msgid = sysvar("sysicmd")":"
   if length(msgid) = 1 then
      msgid = sysvar("syspcmd")":"
   uid = sysvar('sysuid')
   atsignc = left(atsign,1)
   if from_center = center then
      from_default = uid||AtSignC||center"."domain
   else
      from_default = uid"%"from_center||AtSignC|| ,
          center"."smtp_domain
/* ----------------------------------------------------------- *
 * FromReq used to require a FROM e-mail address in the XMITIP *
 * command.                                                    *
 *                                                             *
 * Values:   0 - not required                                  *
 *           1 - required                                      *
 *           "[email protected]"    - code in quotes to avoid      *
 *                                translation to upper case    *
 *                                                             *
 * If an address then an e-mail is sent to that address for    *
 * logging purposes.                                           *
 * ----------------------------------------------------------- *  FromReq = 0
 /* FromReq = "[email protected]" */
/* ----------------------------------------------- *
 * Restrict_Domain                                 *
 *    If null then no action.                      *
 *    If set then all e-mails sent must end with   *
 *       the specified domain.                     *
 * ----------------------------------------------- */  restrict_domain = null
 /* restrict_domain = "host.com"  */

It doesn't explain why the DOMAIN name is not changing...


 *George Rodriguez*

----------------------------------------------------------------------
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to [email protected] with the message: INFO IBM-MAIN

Reply via email to